Great tutorial! I am just curious to know how can we do the data collection in steps, like a questionnaire. It may get difficult for users to understand that they have to type name, email, kilowatt requirements together.
@OnyxStudiosInteractive6 ай бұрын
You can always use a form to get the information and then pass the data to the flowise API. Check out the product recommendation engine video
@GilbertMizrahi Жыл бұрын
For the calc estimate tool, you could add the JS in the tool itself without having to send the data to a webhook where the calculation is done.
@OnyxStudiosInteractive Жыл бұрын
Thanks for commenting. You're right, you could totally add the javascript directly in the tool itself. Although it is more fun to have the option of sending the data to a webhook and potentially making it accessible to other agents or adding some additional automation to it.
@khalidkifayat11 ай бұрын
nice explanation. few questions 1. how/where to find clients 2. what should be the rough charge of this chatbot (excluding other expenses). Thanks in advance.
@OnyxStudiosInteractive11 ай бұрын
For finding clients, you'll need to do daily prospecting and talking to people, presenting demos etc. As for expenses, token costs for Mistral are pretty inexpensive....input tokens cost 14 cents/ million while output tokens are 42 cents per million for the Mistral tiny model.
@khalidkifayat11 ай бұрын
@@OnyxStudiosInteractiveappreciated
@bruceb857 ай бұрын
@@OnyxStudiosInteractive there are dozens of already made tools out there already, like zapier ai chat, what would make this different? thanks
@martg011 ай бұрын
Great video! Do you host this in a docker and use the widget chat?
@OnyxStudiosInteractive11 ай бұрын
Glad you enjoyed it! I am using docker to run the container for Flowise. The widget chat is pretty good. Although you can also use other widgets like VoiceFlow's chat widget for more interactive chatflows.
@ayomidewilfred18645 ай бұрын
Amazing tutorial.. Can I use my custom API to send those data to instead of using Zapier or n8n?
@RolandoLopezNieto6 ай бұрын
I was wondering how to setup an agent that supported a vector database + memory + custom tools. Thank you very much
@OnyxStudiosInteractive6 ай бұрын
To do that you should use the tool agent combined with the retriever tool in Flowsie
@RolandoLopezNieto6 ай бұрын
@@OnyxStudiosInteractive thanks, I'll try that today.
@gbrbreenecommerce7 ай бұрын
Thanks for the great work. I really enjoyed the tutorial. Sorry or my question but I am new to integrating Flowise with N8N. I have an ec2 instance on aws that has n8n installed and I was trying n8n webhook with Flowise. Re the webhook method, if I use "POST", I get this error message ""This webhook is not registered for POST requests. Did you mean to make a GET request?""...... even I tried to use "GET".....but nothing works and it doesn't receive anything from the Flowise chatbot...... Can you help please?
@Japaxd1234 ай бұрын
When do the tools start working and how?
@AITransformers Жыл бұрын
Do we have to talk in keywords like calc requirements etc or can it process queries like "How much will it cost?"
@OnyxStudiosInteractive11 ай бұрын
You use both however when it comes to calculations I prefer a custom function rather than rely on the LLM to do calculations. That way the results are more consistent.
@lalamax3d8 ай бұрын
what to do if latest flowise Conversational Retrieval Agent is depriciated now...any ideas.??
@OnyxStudiosInteractive6 ай бұрын
Well there's still the Conversational Agent that you can use. I think the only reason the Conversational Retrieval Agent is being deprecated is because it's basically the same as the Conversational Agent.
@eatchocolate11 ай бұрын
Why wouldn't you do the calculation right in flowise's JavaScript in the tool?
@OnyxStudiosInteractive10 ай бұрын
You can definitely do that. Although I guess it depends on what you want to do. Outside of Flowise you can run automation workflows and so its helpful to be able to do calculations inside and outside of Flowise.
@amrpyt10 ай бұрын
Can i use any other chatbot instead of openai ?
@OnyxStudiosInteractive9 ай бұрын
You can use other models. A lot of models support the OpenAI API or can also be found on OpenRouter. I use Mistral myself in a lot of my Chatflows. The only catch is that until recently OpenAI was the only LLM that did function calling. I think Mistral Large can do function calling now and maybe Claude as well.