File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -183,6 +183,8 @@ param useSpeechInputBrowser bool = false
183
183
param useSpeechOutputBrowser bool = false
184
184
@description ('Use Azure speech service for reading out text' )
185
185
param useSpeechOutputAzure bool = false
186
+ @description ('Use chat history feature in browser' )
187
+ param useChatHistoryBrowser bool = false
186
188
@description ('Show options to use vector embeddings for searching in the app UI' )
187
189
param useVectors bool = false
188
190
@description ('Use Built-in integrated Vectorization feature of AI Search to vectorize and ingest documents' )
@@ -314,6 +316,7 @@ var appEnvVariables = {
314
316
USE_SPEECH_INPUT_BROWSER : useSpeechInputBrowser
315
317
USE_SPEECH_OUTPUT_BROWSER : useSpeechOutputBrowser
316
318
USE_SPEECH_OUTPUT_AZURE : useSpeechOutputAzure
319
+ USE_CHAT_HISTORY_BROWSER : useChatHistoryBrowser
317
320
// Shared by all OpenAI deployments
318
321
OPENAI_HOST : openAiHost
319
322
AZURE_OPENAI_EMB_MODEL_NAME : embedding .modelName
Original file line number Diff line number Diff line change 164
164
"useSpeechOutputAzure" : {
165
165
"value" : " ${USE_SPEECH_OUTPUT_AZURE=false}"
166
166
},
167
+ "useChatHistoryBrowser" : {
168
+ "value" : " ${USE_CHAT_HISTORY_BROWSER=false}"
169
+ },
167
170
"speechServiceName" : {
168
171
"value" : " ${AZURE_SPEECH_SERVICE}"
169
172
},
You can’t perform that action at this time.
0 commit comments