-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprovidersettings.json
More file actions
39 lines (39 loc) · 1.32 KB
/
providersettings.json
File metadata and controls
39 lines (39 loc) · 1.32 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"providerProfiles": {
"azure-openai-gpt35": {
"apiKey": "${env:AZURE_OPENAI_KEY}",
"apiBase": "${env:AZURE_OPENAI_ENDPOINT}",
"apiType": "azure",
"apiVersion": "2023-05-15",
"deployment": "${env:AZURE_OPENAI_DEPLOYMENT_GPT35}"
},
"azure-openai-modelrouter": {
"apiKey": "${env:AZURE_OPENAI_KEY}",
"apiBase": "${env:AZURE_OPENAI_ENDPOINT}",
"apiType": "azure",
"apiVersion": "2023-05-15",
"deployment": "${env:AZURE_OPENAI_DEPLOYMENT_ROUTER}"
},
"azure-openai-gpt4o": {
"apiKey": "${env:AZURE_OPENAI_KEY_SAF}",
"apiBase": "${env:AZURE_OPENAI_ENDPOINT_SAF}",
"apiType": "azure",
"apiVersion": "2023-05-15",
"deployment": "${env:AZURE_OPENAI_DEPLOYMENT_4O}"
},
"azure-openai-gpt41": {
"apiKey": "${env:AZURE_OPENAI_KEY_SAF}",
"apiBase": "${env:AZURE_OPENAI_ENDPOINT_SAF}",
"apiType": "azure",
"apiVersion": "2023-05-15",
"deployment": "${env:AZURE_OPENAI_DEPLOYMENT_GPT41}"
},
"azure-openai-embeddings": {
"apiKey": "${env:AZURE_OPENAI_KEY_SAF}",
"apiBase": "${env:AZURE_OPENAI_ENDPOINT_SAF}",
"apiType": "azure",
"apiVersion": "2023-05-15",
"deployment": "${env:AZURE_OPENAI_DEPLOYMENT_EMBEDDINGS}"
}
}
}