forked from microsoft/ai-sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ai-sentry-config.json
34 lines (34 loc) · 1.47 KB
/
ai-sentry-config.json
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
{
"pools": [
{
"name": "pool1",
"description": "pool1 description",
"endpoints": [
{
"url": "https://<your-open-ai-instance>.openai.azure.com/openai",
"api-key": null, //If you simply set "api-Key": null the facade layer will leverage aks workload identity to connect to openAi backends.,
"x-ratelimit-remaining-requests": 1000,
"x-ratelimit-remaining-tokens": 1000
}
]
},
{
"name": "pool2",
"description": "pool2 description",
"endpoints": [
{
"url": "https://<your-open-ai-instance>.openai.azure.com/openai",
"api-key": "your-api-key", //If you simply set "api-Key": null the facade layer will leverage aks workload identity to connect to openAi backends.
"x-ratelimit-remaining-requests": 1000,
"x-ratelimit-remaining-tokens": 1000
},
{
"url": "https://<your-open-ai-instance>.openai.azure.com/openai",
"api-key": "your-api-key",//If you simply set "api-Key": null the facade layer will leverage aks workload identity to connect to openAi backends.
"x-ratelimit-remaining-requests": 1000,
"x-ratelimit-remaining-tokens": 1000
}
]
}
]
}