add vertex embeddings endpoints

This commit is contained in:
Ishaan Jaff 2024-08-03 17:26:49 -07:00
parent beb7f1b2c6
commit 01cd07fa75
2 changed files with 41 additions and 1 deletions

View file

@ -272,7 +272,8 @@ class VertexFineTuningAPI(VertexLLM):
url = f"https://{vertex_location}-aiplatform.googleapis.com/v1/projects/{vertex_project}/locations/{vertex_location}/tuningJobs{request_route}"
elif "generateContent" in request_route:
url = f"https://{vertex_location}-aiplatform.googleapis.com/v1/projects/{vertex_project}/locations/{vertex_location}{request_route}"
elif "predict" in request_route:
url = f"https://{vertex_location}-aiplatform.googleapis.com/v1/projects/{vertex_project}/locations/{vertex_location}{request_route}"
if self.async_handler is None:
raise ValueError("VertexAI Fine Tuning - async_handler is not initialized")