-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
18 lines (14 loc) · 1.01 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
ROARR_LOG=true
### reference: https://learn.microsoft.com/en-us/azure/ai-services/openai/reference
# GPT4, latest api-version: 2023-12-01-preview
GPT4_URL=https://{resource-name}.openai.azure.com/openai/deployments/{deployment-name}/chat/completions?api-version={api-version}
GPT4_APIKEY={api-key}
# GPT4-Turbo (not stable due to heavy traffic, not recommended. encountering too many empty responses), latest api-version: 2023-09-01-preview
GPT4_T_URL=https://{resource-name}.openai.azure.com/openai/deployments/{deployment-name}/chat/completions?api-version={api-version}
GPT4_T_APIKEY={api-key}
# GPT3.5-Turbo, latest api-version: 2023-12-01-preview
GPT3_5_URL=https://{resource-name}.openai.azure.com/openai/deployments/{deployment-name}/chat/completions?api-version={api-version}
GPT3_5_APIKEY={api-key}
# GPT3.5-Turbo-Instruct, latest api-version: 2023-09-01-preview
GPT3_5_I_APIKEY={api-key}
GPT3_5_I_URL=https://{resource-name}.openai.azure.com/openai/deployments/{deployment-name}/completions?api-version={api-version}