-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can i create conversation based on pre-define flow to capture inputs from the user #9
Comments
hmm... If you're looking for something to drive the flow, the memory APIs will not do this (neither will the RAG processor - that's more of a search/research tool, although maybe you could prompt it into doing this). The memory APIs will also not structure the user's response in any way. So for example the user may enter their address (or even something completely tangential) in any number of formats. We just write down what the user wrote - any validation should be done by the service. |
okay thats what i wonder. This use case is not even possible with langchain or lamaindex. I thought conversation search will store the conversation id and interaction id. I am new to all this tool ... wondering where is AI in all this.... Just last que... what you mean by Is this is something can be done with your tool. Thanks for your response again |
Honestly, I probably wouldn't use AI at all in this. You seem to be describing a system that asks very specific questions trying to get very specific information from the user. I'd probably just hard-code the questions and focus on making sure that the user's inputs are useful (e.g. real address, real phone number, real payment info etc.). The one place I can see a chatbot being useful, is perhaps you can use it to rephrase your hardcoded questions in the context of the previous answers - but ultimately this would just make the interaction a little more dynamic and a lot slower, so I'm not sure it's worth it.
The search/research thing - RAG is a wrapper around search (take your top search results and use them to answer the user's question). That style of interaction doesn't really make sense in this context, since the flow is pre-defined. |
okay. Thanks for your reply. Then i think the old age school tool like RASA will be helpful here. |
Hi
I am trying to create a mini bot where the bot will ask question with the user like
Can we achieve the above use case with the flow where bot is guiding the user to create a Order as complete sales order flow.
Please let me know if such conversation is possible with conversational CRUD APIs
The text was updated successfully, but these errors were encountered: