diff --git a/litellm/proxy/example_config_yaml/oai_misc_config.yaml b/litellm/proxy/example_config_yaml/oai_misc_config.yaml index 872ddb071c..1191e054ef 100644 --- a/litellm/proxy/example_config_yaml/oai_misc_config.yaml +++ b/litellm/proxy/example_config_yaml/oai_misc_config.yaml @@ -43,23 +43,20 @@ litellm_settings: # For /fine_tuning/jobs endpoints finetune_settings: - custom_llm_provider: azure - api_base: https://exampleopenaiendpoint-production.up.railway.app/ - api_key: fake - api_version: "2023-03-15-preview" + api_base: os.environ/AZURE_API_BASE + api_key: os.environ/AZURE_API_KEY + api_version: "2024-05-01-preview" - custom_llm_provider: openai - api_key: fake - api_base: https://exampleopenaiendpoint-production.up.railway.app/ + api_key: os.environ/OPENAI_API_KEY # for /files endpoints files_settings: - custom_llm_provider: azure - api_base: https://exampleopenaiendpoint-production.up.railway.app/ - api_key: fake - api_version: "2023-03-15-preview" + api_base: os.environ/AZURE_API_BASE + api_key: os.environ/AZURE_API_KEY + api_version: "2024-05-01-preview" - custom_llm_provider: openai - api_key: fake - api_base: https://exampleopenaiendpoint-production.up.railway.app/ - + api_key: os.environ/OPENAI_API_KEY general_settings: master_key: sk-1234 # [OPTIONAL] Use to enforce auth on proxy. See - https://docs.litellm.ai/docs/proxy/virtual_keys \ No newline at end of file