Build Your OWN RAG AI Voice Agent with n8n | Complete Step-by-Step Tutorial

  Рет қаралды 3,141

FuturMinds

FuturMinds

Күн бұрын

Пікірлер: 37
@WillWehi
@WillWehi 13 күн бұрын
I will definitely give this workflow a try on my developer WordPress. Thanks Futur, Great Video!
@FuturMinds
@FuturMinds 13 күн бұрын
Glad it was helpful!
@HarshSharma-vm3nm
@HarshSharma-vm3nm 13 күн бұрын
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.
@FuturMinds
@FuturMinds 13 күн бұрын
@HarshSharma-vm3nm I'm glad you liked it. Thanks for the suggestion :)
@Falalfel
@Falalfel 9 күн бұрын
this is great. I'm going to use , but what would you recommend for a quick test without wordpress or domain?
@FuturMinds
@FuturMinds 9 күн бұрын
@Falalfel You can use replit and convert that plugin code to equivalent python code. That's another way.
@Falalfel
@Falalfel 9 күн бұрын
@FuturMinds I was thinking telegram or WhatsApp bot would be better for businesses
@FuturMinds
@FuturMinds 8 күн бұрын
@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
@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
@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
@ramp2011
@ramp2011 13 күн бұрын
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
@FuturMinds
@FuturMinds 13 күн бұрын
@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.
@ramp2011
@ramp2011 11 күн бұрын
@@FuturMinds Thank you so much for your response. That makes sense
@shillowcollins6392
@shillowcollins6392 6 күн бұрын
I heard you cannot use the https: , as such, google drive, in the locally hosted n8n, how true is that Sir??
@FuturMinds
@FuturMinds 6 күн бұрын
@shillowcollins6392 I didn't really understood the question. Can you elaborate?
@arijhajlaoui5219
@arijhajlaoui5219 10 күн бұрын
thank youu can you create an apointment setter in n8n ?
@FuturMinds
@FuturMinds 10 күн бұрын
@arijhajlaoui5219 Can you share more details on what kind of setter you are looking for? I'll create just that.
@arijhajlaoui5219
@arijhajlaoui5219 9 күн бұрын
@@FuturMinds an appointment setter that book meetings
@FuturMinds
@FuturMinds 8 күн бұрын
@arijhajlaoui5219 I have added this to my list. Stay tuned.
@SoloJetMan
@SoloJetMan 13 күн бұрын
well done! how do you setup a flow where the user's input is the source of the knowledgebase?
@FuturMinds
@FuturMinds 13 күн бұрын
@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
@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
@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.
@KarthickKalidoss
@KarthickKalidoss 12 күн бұрын
If I have to use a database (like available appointments) to read and write, is there a plugin to connect?
@FuturMinds
@FuturMinds 12 күн бұрын
@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)
@KarthickKalidoss
@KarthickKalidoss 12 күн бұрын
@@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.
@FuturMinds
@FuturMinds 8 күн бұрын
@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.
@takimdigital3421
@takimdigital3421 13 күн бұрын
Great ❤can you share the workflow json ,
@FuturMinds
@FuturMinds 13 күн бұрын
@takimdigital3421 Added in the description.
@takimdigital3421
@takimdigital3421 13 күн бұрын
@ you are the best thank you
@takimdigital3421
@takimdigital3421 7 күн бұрын
@@FuturMinds i can not find the link 😊
@FuturMinds
@FuturMinds 7 күн бұрын
@@takimdigital3421 It's the first link in the description. drive.google.com/drive/folders/1MjV7BvJESX5oZmbc4X1azrD2xzTA5CKj
@Falalfel
@Falalfel 12 күн бұрын
can n8n do everything voiceflow does?
@FuturMinds
@FuturMinds 12 күн бұрын
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.
@Falalfel
@Falalfel 12 күн бұрын
@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?
@Falalfel
@Falalfel 12 күн бұрын
I guess not but I was told otherwise
@FuturMinds
@FuturMinds 8 күн бұрын
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.
黑天使被操控了#short #angel #clown
00:40
Super Beauty team
Рет қаралды 55 МЛН
Chain Game Strong ⛓️
00:21
Anwar Jibawi
Рет қаралды 36 МЛН
Что-что Мурсдей говорит? 💭 #симбочка #симба #мурсдей
00:19
1% vs 100% #beatbox #tiktok
01:10
BeatboxJCOP
Рет қаралды 24 МЛН
How to use AI to build your SaaS startup (Lovable, Supabase)
49:43
Greg Isenberg
Рет қаралды 37 М.
We've Been Building AI Agents WRONG Until Now
19:51
Cole Medin
Рет қаралды 32 М.
Build a $15K AI RAG Agent for Just $5! (BEGINNER FRIENDLY)
14:07
Phil M - Elevate AI - Automating the World
Рет қаралды 1,5 М.
This RAG AI Agent with n8n + Supabase is the Real Deal
16:27
Cole Medin
Рет қаралды 86 М.
The Best RAG System On YouTube (Steal This!)
18:36
Nate Herk | AI Automation
Рет қаралды 7 М.
AI is not Designed for You
8:29
No Boilerplate
Рет қаралды 182 М.
10 n8n Tips in 10 Minutes to 10x Your AI Automations
11:10
Cole Medin
Рет қаралды 18 М.
黑天使被操控了#short #angel #clown
00:40
Super Beauty team
Рет қаралды 55 МЛН