From bd4f1f96fb57f19faafbc816fd78e5d095c2d207 Mon Sep 17 00:00:00 2001 From: Peter Morton Date: Thu, 29 May 2025 16:42:24 -0500 Subject: [PATCH] Update CQA_Retriever/_studio_dependencies/README.md --- CQA_Retriever/_studio_dependencies/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CQA_Retriever/_studio_dependencies/README.md b/CQA_Retriever/_studio_dependencies/README.md index 051a643..69fc7cc 100644 --- a/CQA_Retriever/_studio_dependencies/README.md +++ b/CQA_Retriever/_studio_dependencies/README.md @@ -64,7 +64,7 @@ A global variable function which handles the logic and API calls used to retriev 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, +> NOTE: This example exits via continue to next block. If you need it to exit via the pin, then change the ```next()``` to ```next(0)``` on the second to last line, ```javascript (async () => { @@ -85,6 +85,6 @@ This is included in the Example Conversation Flow if you have imported that. If }; }) .finally(() => { - next(0); + next(); }); ```