From 2cd8111f4c76adbf1dbcc392a3848f08fa4632b0 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Sat, 15 Feb 2025 15:28:18 -0800 Subject: [PATCH] Revert "test fix use mock endpoints for e2e files and ft tests" This reverts commit c921d8dd81495d4b4c59566358f3afbb6389bd8d. --- .../example_config_yaml/oai_misc_config.yaml | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) 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