-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathmain.parameters.json
81 lines (81 loc) · 2.98 KB
/
main.parameters.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"skipVnet": {
"value": "${SKIP_VNET}=true"
},
"environmentName": {
"value": "${AZURE_ENV_NAME}"
},
"location": {
"value": "${AZURE_LOCATION}"
},
"principalId": {
"value": "${AZURE_PRINCIPAL_ID}"
},
"openAiSkuName": {
"value": "S0"
},
"openAiServiceName": {
"value": "${AZURE_OPENAI_SERVICE}"
},
"openAiHost": {
"value": "${OPENAI_HOST=azure}"
},
"openAiResourceGroupName": {
"value": "${AZURE_OPENAI_RESOURCE_GROUP}"
},
"openAiApiVersion": {
"value": "${OPENAI_API_VERSION=2023-05-15}"
},
"chatGptDeploymentName": {
"value": "${AZURE_OPENAI_CHATGPT_DEPLOYMENT=chat}"
},
"chatGptDeploymentCapacity":{
"value": "${AZURE_OPENAI_CHATGPT_DEPLOYMENT_CAPACITY}"
},
"chatGptDeploymentVersion":{
"value": "${AZURE_OPENAI_CHATGPT_DEPLOYMENT_VERSION}"
},
"chatGptModelName":{
"value": "${AZURE_OPENAI_CHATGPT_MODEL=gpt-35-turbo}"
},
"embeddingDeploymentName": {
"value": "${AZURE_OPENAI_EMB_DEPLOYMENT=embedding}"
},
"embeddingModelName":{
"value": "${AZURE_OPENAI_EMB_MODEL_NAME=text-embedding-3-small}"
},
"embeddingDeploymentVersion":{
"value": "${AZURE_OPENAI_EMB_DEPLOYMENT_VERSION}"
},
"embeddingDeploymentCapacity":{
"value": "${AZURE_OPENAI_EMB_DEPLOYMENT_CAPACITY}"
},
"searchServiceName": {
"value": "${AZURE_SEARCH_SERVICE}"
},
"searchServiceResourceGroupName": {
"value": "${AZURE_SEARCH_SERVICE_RESOURCE_GROUP}"
},
"searchServiceIndexName": {
"value": "${AZURE_SEARCH_INDEX=openai-index}"
},
"searchServiceSkuName": {
"value": "${AZURE_SEARCH_SERVICE_SKU=standard}"
},
"storageAccountName": {
"value": "${AZURE_STORAGE_ACCOUNT}"
},
"storageResourceGroupName": {
"value": "${AZURE_STORAGE_RESOURCE_GROUP}"
},
"azFunctionHostingPlanType": {
"value": "flexconsumption"
},
"systemPrompt": {
"value": "${SYSTEM_PROMPT}=You are a helpful assistant. You are responding to requests from a user about internal emails and documents. You can and should refer to the internal documents to help respond to requests. If a user makes a request thats not covered by the documents provided in the query, you must say that you do not have access to the information and not try and get information from other places besides the documents provided. The following is a list of documents that you can refer to when answering questions. The documents are in the format [filename]: [text] and are separated by newlines. If you answer a question by referencing any of the documents, please cite the document in your answer. For example, if you answer a question by referencing info.txt, you should add \"Reference: info.txt\" to the end of your answer on a separate line."
}
}
}