add vertex ai ft on proxy

This commit is contained in:
Ishaan Jaff 2024-08-02 18:26:36 -07:00
parent 40430dde10
commit 4fc27e87c5
2 changed files with 5 additions and 1 deletions

View file

@ -34,6 +34,10 @@ finetune_settings:
api_version: "2023-03-15-preview"
- custom_llm_provider: openai
api_key: os.environ/OPENAI_API_KEY
- custom_llm_provider: "vertex_ai"
vertex_project: "adroit-crow-413218"
vertex_location: "us-central1"
vertex_credentials: "/Users/ishaanjaffer/Downloads/adroit-crow-413218-a956eef1a2a8.json"
# for /files endpoints
files_settings:

View file

@ -506,4 +506,4 @@ class FineTuningJobCreate(BaseModel):
class LiteLLMFineTuningJobCreate(FineTuningJobCreate):
custom_llm_provider: Literal["openai", "azure"]
custom_llm_provider: Literal["openai", "azure", "vertex_ai"]