Update CQA_Retriever/_studio_dependencies/README.md

This commit is contained in:
Peter Morton 2025-05-29 16:42:24 -05:00
parent f15ef5d51f
commit bd4f1f96fb

View File

@ -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}``` 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 ```javascript
(async () => { (async () => {
@ -85,6 +85,6 @@ This is included in the Example Conversation Flow if you have imported that. If
}; };
}) })
.finally(() => { .finally(() => {
next(0); next();
}); });
``` ```