I will definitely give this workflow a try on my developer WordPress. Thanks Futur, Great Video!
@FuturMinds13 күн бұрын
Glad it was helpful!
@HarshSharma-vm3nm13 күн бұрын
Thanks for this. It gave a fresh new perspective on how to use this. And bro I'll suggest. Make videos in ur own voice as inthis for other vids as well.
@FuturMinds13 күн бұрын
@HarshSharma-vm3nm I'm glad you liked it. Thanks for the suggestion :)
@Falalfel9 күн бұрын
this is great. I'm going to use , but what would you recommend for a quick test without wordpress or domain?
@FuturMinds9 күн бұрын
@Falalfel You can use replit and convert that plugin code to equivalent python code. That's another way.
@Falalfel9 күн бұрын
@FuturMinds I was thinking telegram or WhatsApp bot would be better for businesses
@FuturMinds8 күн бұрын
@Falalfel I guess you must have already checkout out this video, showing how to create whatsapp AI agent: kzbin.info/www/bejne/j5-rZISVZruCgLs You can update it to accept voice message and return voice response.
@vinod_chauhan7Күн бұрын
Can we call this webhook from JS and do you have code available? After using the code I am getting The item has no binary field 'data' [item 0] on transcribing the audio.
@FuturMindsКүн бұрын
@vinod_chauhan7 Yes, we can call it from JS code. You can find the code here: github.com/futurminds/voice-ai-assistant-wordpress-plugin/blob/main/js/voice-chat.js#L157
@ramp201113 күн бұрын
Thank you for the video. Excellent. I am curious why not user whisper API to convert audio to text and use openAI APIs to do the response for this specific usecase? Thank you
@FuturMinds13 күн бұрын
@ramp2011 Yes that's what OpenAI node is doing behind the scenes for transcribing the audio. We need an agent here instead of a simple openAI API call because we want to use additional tools and chat memory to prepare the final response.
@ramp201111 күн бұрын
@@FuturMinds Thank you so much for your response. That makes sense
@shillowcollins63926 күн бұрын
I heard you cannot use the https: , as such, google drive, in the locally hosted n8n, how true is that Sir??
@FuturMinds6 күн бұрын
@shillowcollins6392 I didn't really understood the question. Can you elaborate?
@arijhajlaoui521910 күн бұрын
thank youu can you create an apointment setter in n8n ?
@FuturMinds10 күн бұрын
@arijhajlaoui5219 Can you share more details on what kind of setter you are looking for? I'll create just that.
@arijhajlaoui52199 күн бұрын
@@FuturMinds an appointment setter that book meetings
@FuturMinds8 күн бұрын
@arijhajlaoui5219 I have added this to my list. Stay tuned.
@SoloJetMan13 күн бұрын
well done! how do you setup a flow where the user's input is the source of the knowledgebase?
@FuturMinds13 күн бұрын
@SoloJetMan You could create another workflow (or update existing one to route to different flow) that would either create embeddings to vector store instantly, or you could write the user inputs somewhere (e.g google sheet) and have a cron running that checks for new entries every few min or hours and creates embedding out of them. Hope this answers your question.
@b.err.3401Күн бұрын
Hey. Thanks for this tutorial. How much cost for OpenAI transcribe service ? Specially for this kind of use. Is there any other alternatives ?
@FuturMindsКүн бұрын
@b.err.3401 Pricing is per token, details here (Audio models): openai.com/api/pricing/ Yes there a number of other ways to create Voice AI Agent. Will cover them in the upcoming videos.
@KarthickKalidoss12 күн бұрын
If I have to use a database (like available appointments) to read and write, is there a plugin to connect?
@FuturMinds12 күн бұрын
@KarthickKalidoss Can you elaborate the use case? If you want to use database for better responses, you can use SQL Agent (if you have sql db)
@KarthickKalidoss12 күн бұрын
@@FuturMinds Lets say i have a db of appointment and timings. And, if someone asks if an appointment is available in 4-430pm slot. I should be able to read from db and tell them a slot is availble and collect details and book his details against the slot.
@FuturMinds8 күн бұрын
@KarthickKalidoss Yes, you can do that with with existing n8n db nodes or via http nodes. It depends on which DB are you using. Best way to organize appointment is on google calendar. You can then use google colander node and check if slot is available. It becomes simplified.
@takimdigital342113 күн бұрын
Great ❤can you share the workflow json ,
@FuturMinds13 күн бұрын
@takimdigital3421 Added in the description.
@takimdigital342113 күн бұрын
@ you are the best thank you
@takimdigital34217 күн бұрын
@@FuturMinds i can not find the link 😊
@FuturMinds7 күн бұрын
@@takimdigital3421 It's the first link in the description. drive.google.com/drive/folders/1MjV7BvJESX5oZmbc4X1azrD2xzTA5CKj
@Falalfel12 күн бұрын
can n8n do everything voiceflow does?
@FuturMinds12 күн бұрын
Yeah theoretically n8n enables us to do almost everything voiceflow offers and much more. It may just require more number of nodes/steps and other services. Voiceflow is a managed service that enables you to create important and common agents easily and faster. If your use case and budget aligns with voiceflow, you should consider it in favor of avoiding headache to manage your own server and a number of services.
@Falalfel12 күн бұрын
@FuturMinds I know n8n and I host my stuff. No rush either. So my question is if I I know n8n would I really need voiceflow?
@Falalfel12 күн бұрын
I guess not but I was told otherwise
@FuturMinds8 күн бұрын
You can of course implement features provided by voiceflow in n8n. Though it may require more tooling and complex workflows. You can evaluate if that suits your requirements.