From 07b7cee3b11a7fa70176c8031df62860ac851472 Mon Sep 17 00:00:00 2001 From: "Peter.Morton" Date: Wed, 28 May 2025 11:19:12 -0500 Subject: [PATCH] updated install instructions and added warnings --- CQA_Retriever/_studio_dependencies/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CQA_Retriever/_studio_dependencies/README.md b/CQA_Retriever/_studio_dependencies/README.md index 526b2a4..0c85a82 100644 --- a/CQA_Retriever/_studio_dependencies/README.md +++ b/CQA_Retriever/_studio_dependencies/README.md @@ -60,7 +60,7 @@ A global variable function which handles the logic and API calls used to retriev ### Example code block that should be using in your Conversation Flows -This is included in the Example Conversation Flow if you have imported that. If you want to use this on the global flow as a catch all for input that dont provides an answer, then change ```${conversationData.cqa_question}``` to ```${recognizedObject.input}``` +This is included in the Example Conversation Flow if you have imported that. If you want to use this on the global flow as a catch all for inputs that do not provide an answer, then change ```${conversationData.cqa_question}``` to ```${recognizedObject.input}``` > NOTE: This example exits via the output pin '0'. If you need it to continue to the next block, then change the ```next(0)``` to ```next()``` on the second to last line,