updated install instructions and added warnings

This commit is contained in:
Peter Morton 2025-05-28 11:19:12 -05:00
parent d8057d767f
commit 07b7cee3b1

View File

@ -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,