forked from ushakrishnan/SearchWithOpenAI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.template
18 lines (16 loc) · 1004 Bytes
/
.env.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# The API version you want to use: COMP = completion models like davinci-003; GPT model GPT-35-turbo or such models
AOAI_OPENAI_API_COMP_VERSION="<version here>"
AOAI_OPENAI_API_GPT_VERSION="<version here>"
AOAI_OPENAI_API_COMP_MODEL="<model here>"
AOAI_OPENAI_API_GPT_MODEL="<model here>"
# The base URL for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource.
AOAI_OPENAI_API_BASE="https://your-resource-name.openai.azure.com"
# The API key for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource.
AOAI_OPENAI_API_KEY="<your Azure OpenAI API key>"
BING_SUBSCRIPTION_KEY="<your bing API key>"
BING_SEARCH_URL="https://api.bing.microsoft.com/v7.0/search"
AZURE_COGNITIVE_SEARCH_API_KEY="<your cog search api key here>"
AZURE_COGNITIVE_SEARCH_INDEX_NAME="<search index name here>"
AZURE_COGNITIVE_SEARCH_SERVICE_NAME="<cog service name>"
OPENAI_API_KEY="<your OpenAI key here>"
TOKENIZERS_PARALLELISM=false