-
-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy path.env.example
32 lines (22 loc) · 957 Bytes
/
.env.example
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
###################
# Common Settings #
###################
# Use environment variables or not. `yes` or `no`
NUXT_PUBLIC_USE_ENV=yes
# The API type. `openai` or `azure`
NUXT_PUBLIC_API_TYPE=openai
# The API key used for authentication with OpenAI or Azure OpenAI Service.
NUXT_API_KEY=YOUR_API_KEY
# Higher values will make the output more random, while lower values will make it more focused and deterministic. `0.0` - `2.0`
NUXT_PUBLIC_DEFAULT_TEMPERATURE=1
#################################
# Azure OpenAI Service Settings #
#################################
# The endpoint of the Azure OpenAI Service.
NUXT_API_HOST=https://YOUR_RESOURCE_NAME.openai.azure.com
# API version of the Azure OpenAI Service.
NUXT_AZURE_API_VERSION=2023-06-01-preview
# Deployment name of the GPT-3.5 model on the Azure OpenAI Service.
NUXT_AZURE_GPT35_DEPLOYMENT_ID=
# Deployment name of the GPT-4 model on the Azure OpenAI Service.
NUXT_AZURE_GPT4_DEPLOYMENT_ID=