From 1b078b42bab611c657981ebc7444a8298879dbbb Mon Sep 17 00:00:00 2001 From: "Priyanka Singhal (Persistent Systems Inc)" Date: Thu, 19 Dec 2024 16:50:57 +0530 Subject: [PATCH] add conversation flow in environment variable for adminweb app --- infra/main.bicep | 2 ++ 1 file changed, 2 insertions(+) diff --git a/infra/main.bicep b/infra/main.bicep index 0333927d8..431c84db4 100644 --- a/infra/main.bicep +++ b/infra/main.bicep @@ -869,6 +869,7 @@ module adminweb './app/adminweb.bicep' = if (hostingModel == 'code') { DOCUMENT_PROCESSING_QUEUE_NAME: queueName FUNCTION_KEY: clientKey ORCHESTRATION_STRATEGY: orchestrationStrategy + CONVERSATION_FLOW: conversationFlow LOGLEVEL: logLevel DATABASE_TYPE: databaseType }, @@ -960,6 +961,7 @@ module adminweb_docker './app/adminweb.bicep' = if (hostingModel == 'container') DOCUMENT_PROCESSING_QUEUE_NAME: queueName FUNCTION_KEY: clientKey ORCHESTRATION_STRATEGY: orchestrationStrategy + CONVERSATION_FLOW: conversationFlow LOGLEVEL: logLevel DATABASE_TYPE: databaseType },