File size: 833 Bytes
395201c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
model_list:
- model_name: "azure-model"
litellm_params:
model: "azure/gpt-35-turbo"
api_key: "os.environ/AZURE_EUROPE_API_KEY"
api_base: "https://my-endpoint-europe-berri-992.openai.azure.com/"
- model_name: "azure-model"
litellm_params:
model: "azure/gpt-35-turbo"
api_key: "os.environ/AZURE_CANADA_API_KEY"
api_base: "https://my-endpoint-canada-berri992.openai.azure.com"
- model_name: "azure-model"
litellm_params:
model: "azure/gpt-turbo"
api_key: "os.environ/AZURE_FRANCE_API_KEY"
api_base: "https://openai-france-1234.openai.azure.com"
litellm_settings:
drop_params: True
set_verbose: True
general_settings:
master_key: "os.environ/PROXY_MASTER_KEY"
database_url: "os.environ/PROXY_DATABASE_URL" # [OPTIONAL] use for token-based auth to proxy
|