ZoneFive Version 4 (Updated)
2:55
Пікірлер
@user-uv3nv2bc6v
@user-uv3nv2bc6v 4 күн бұрын
Wow, its a great video Thomas. 👍
@OnyxStudiosInteractive
@OnyxStudiosInteractive 4 күн бұрын
@user-uv3nv2bc6v Thanks! I'm glad you enjoyed it.
@qqlelesmbo3612
@qqlelesmbo3612 16 күн бұрын
great video & content is awesome
@AIOverlords-my3qi
@AIOverlords-my3qi 18 күн бұрын
Hey Thomas, I purchased your code and already had it running in a few hours. I connected it to MS SQL instead of Postgres and modified it for my use case no problems. When I embed it on the site and it worked except it does not render the HTML. The shared link from Flowise does render the HTML fine. Did you encounter that? Cheers Peter
@OnyxStudiosInteractive
@OnyxStudiosInteractive 18 күн бұрын
Hey Peter, I'm glad your enjoying the agent and that it's working for you. The Flowise embed widget currently does not support HTML rendering for some reason. You have to use another embed widget such as VoiceFlow's embed widget to render HTML. That's the one I'm using in the video. It turns out you can export Voiceflow templates, what I'll do is add the Voiceflow file to the code download later this week. You'll need a Voiceflow account although they come with 2 chat embeds before you have to upgrade to a paid account. You don't have to wait for the template though, you can signup for Voiceflow and use the Flowise api to connect to your Voiceflow widget. That's how I was able to render HTML.
@AIOverlords-my3qi
@AIOverlords-my3qi 16 күн бұрын
Thanks. I found that if I embed the flowise share chatbot link in an it also works Cheers
@samuelmacaluso3367
@samuelmacaluso3367 21 күн бұрын
Shouldn't you be using State and then conditionals to pass the info to the approriate agent? Would help with hallucinations and getting responses from agents even when you dont need them.
@sitedev
@sitedev 23 күн бұрын
This is pretty cool. One question: why didn’t you build the entire project using n8n alone? What value does Flowise bring for the main agent orchestration versus n8n?
@OnyxStudiosInteractive
@OnyxStudiosInteractive 23 күн бұрын
That's a good question. Both Flowise and N8N each have their own unique strengths. When it comes to designing AI workflows, Flowise has more AI focused tools as well as a better chat interface. As far as agent orchestration, Flowise also has more options than N8N since it's built from the ground up for AI. For this build though you could also do it in N8N since it's pretty straightforward. I just tend to use Flowise though for designing AI Agentflows because its interface is more intuitive in the same way that N8N's interface is more intuitive when creating automations. They work pretty well together as a team.
@sitedev
@sitedev 23 күн бұрын
@ That’s interesting and thanks for the speedy reply. I recently created a Competitor Analysis tool using a n8n workflow where I used a Flowise workflow as a tool for a LLM tasked with research. The Flowise workflow contained an agentic rag flow using the LlamaIndex nodes to interact with 15 company knowledge bases while the n8n workflow took care of constructing the final reports. Dead easy to setup and super satisfying to see it working.
@patrykpilat
@patrykpilat 23 күн бұрын
Great and valuable content!
@tarekmahran9575
@tarekmahran9575 24 күн бұрын
Good video as usual. Is it possible to use these vision models to extract information from passports image or financial statement images? If yes, we need a video for that.
@OnyxStudiosInteractive
@OnyxStudiosInteractive 24 күн бұрын
You could extract data from any identification as long the text is visible. It's pretty similar to the part in the video where I extracted data from an image of a table of survey data. You would just need to adjust your prompt and if necessary use structured JSON outputs.
@tarekmahran9575
@tarekmahran9575 24 күн бұрын
@OnyxStudiosInteractive Most of LLMs are sensored and personal information in any Identification images are not alloweded to be extracted.
@OnyxStudiosInteractive
@OnyxStudiosInteractive 24 күн бұрын
@ I can understand that, they don't want their models to be used to collect sensitive and personal data without user permission.
@chrisogonas
@chrisogonas 25 күн бұрын
Incredible changes! Love it😎😎
@tomimartins9208
@tomimartins9208 Ай бұрын
I wish I could purchase this course 😂
@AneeshaRao100
@AneeshaRao100 Ай бұрын
hi. can we use custom JS functions after using an agent? If an agent gives a response, i want to use that and write some JS code and that output to be passed to the next agent?
@OnyxStudiosInteractive
@OnyxStudiosInteractive Ай бұрын
@@AneeshaRao100 Sure you can do that with an LLM chain. Just connect the output of the LLM Chain module to the input variable of the Custom JS Function module. Alternatively you can also use an agent like the tool agent....you just connect two different Custom JS Functions..one calls the tool agent via API and then passes the output to another Custom JS Function node.
@sleepless-nite
@sleepless-nite Ай бұрын
Any reason why you are using N8B and FlowWise? why not just use N8N?
@maniecronje
@maniecronje Ай бұрын
Hey Thomas, I absolutely love your content! It’s so great to see another FW video from you. Your style and the way you explain everything in such detail is just amazing. Thank you so much for putting in all the effort to create this-it’s truly appreciated!
@AbdulrahmanHariri
@AbdulrahmanHariri Ай бұрын
Thanks for sharing this. As a no coder, I am trying to find an effective way to implement such a RAG within n8n without much coding. As my app backend is on Xano, their somewhat recently released Ai capabilities seems good. They can allow you search and rank results pulled from the DB. What’s also great is that you can create row-level triggers to create an embedding for any fields you want. I am still experimenting but I am trying to find a way to use Xano as a vector database but it is not an available integration. I was wondering if you have experiences using an API within n8n to retrieve embeddings for an agent or using the workflow retrieval to something like this?
@OnyxStudiosInteractive
@OnyxStudiosInteractive Ай бұрын
That cool to hear about Xano...there are so many new tools being developed right now and integrated with existing plaforms. There's a lot of options for vector databases that are pretty solid and easy to implement into your application. You can even use the Flowise API to embed documents programmatically into a vector store. As far as using API's in N8N, you can use nodes like the HTTP node in N8N to retreive data using a HTTP Curl request. That's what I did for the Brave Search API in the video. You just need to have the right parameters for the API request. If you'd like to talk more about you project let me know and we can schedule a call.
@AbdulrahmanHariri
@AbdulrahmanHariri Ай бұрын
@@OnyxStudiosInteractiveThanks a lot! I am testing a few things as I build the n8n flow and ingestion flow. Your video already gave me some ideas to test 👍🏻 But will surely come back if I am stuck. Thank you!
@AbdulrahmanHariri
@AbdulrahmanHariri Ай бұрын
Thanks. This is useful, but it should say Flowize in the title, not n8n 👍🏻 I am exploring options to do the same within n8n as well.
@OnyxStudiosInteractive
@OnyxStudiosInteractive Ай бұрын
Thanks a lot. Your right, Part 1 is more about Flowise and an intro to the N8N tutorial in Part 2. Let me know if you have any questions. Once you get the ranking workflow up it becomes possible to go beyond and even add features not found in the Langchain and enterprise rerankers.
@myworld342
@myworld342 2 ай бұрын
Thanks Thomas, this is a really useful video. Is there a reason why you are using SQL rather than json for the database/product list?
@OnyxStudiosInteractive
@OnyxStudiosInteractive Ай бұрын
I'm glad you enjoyed the video. We're using SQL because we need a database to store and retrieve the product information. JSON is simply a data format. SQL also gives us an easy way to query the database using AI and automation.
@myworld342
@myworld342 Ай бұрын
@@OnyxStudiosInteractive Thank you Thomas for the clarification!
@SomiaKumari-e6h
@SomiaKumari-e6h 2 ай бұрын
Could you please share that javascript code with functions as i am getting some issue in accessing function through prompt template.
@n8n-io
@n8n-io 2 ай бұрын
Hey Thomas, just a quick thank you note for your n8n videos on KZbin. We appreciate it!
@yacahumax1431
@yacahumax1431 3 ай бұрын
how can you do prompt chaining and vector reading? I cant find a way to have both
@St_Phoenix
@St_Phoenix 3 ай бұрын
I'm confused, where does the Agent come in? This looks like the normal SQL Prompt template from the market place with some nice backend automation but not an agent flow...
@OnyxStudiosInteractive
@OnyxStudiosInteractive 3 ай бұрын
This is essentially a single agent flow. In this case the agent uses a variety of tools and training to turn your request into an SQL query and then filter the results to recommend products based on what you're looking for. That's why it's an agentflow. It's not a multi-agent or a sequential agentflow where multiple agents are working together. You could do that but it would be more complicated and potentially take longer. As far as the SQL Prompt template, I used it as a starting point but the template is intended to be more of a concept. It is not plug and play and takes a lot of work and customization for a specific use case.
@dantshisungu395
@dantshisungu395 23 күн бұрын
​@OnyxStudiosInteractive Great video However, one could argue this is a simple RAG system as well. Converting the query into embedding, converting products or their descriptions into embeddings and saving them in a database. Perform a similarity search between the query embedding and the products embeddings, extract most relevant products and recommend them to the client. There is no thinking in this flow, thus no need for an agent.
@OnyxStudiosInteractive
@OnyxStudiosInteractive 23 күн бұрын
@@dantshisungu395 I've tried that before and it doesn't scale very well. The issue is that large ecom product databases are constantly changing with inventory updates and you can't really rely on simple embeddings and similarity search when you have potentially thousands of products. It's much more reliable to search the database first and then choose from the products that are currently available.
@dantshisungu395
@dantshisungu395 23 күн бұрын
​@OnyxStudiosInteractive Thanks a lot for the feedback, I will try to implement it and see how it works. However, note that it is not a matter of quantity here, rather how to effectively embed products' descriptions into the right multidimensional space. Maybe trying out different embedding models and see which one performs better
@OnyxStudiosInteractive
@OnyxStudiosInteractive 23 күн бұрын
@@dantshisungu395 Sure thing let me know how it works for you. You could also try graph vector databases like neo4j as well however the real challenge is always going to be updating your embeddings and syncing it with your entire product inventory database. That's why SQL query language is so powerful.
@OnyxStudiosInteractive
@OnyxStudiosInteractive 3 ай бұрын
👍Download/Clone This AgentFlow: onyxstudiosinteractive.com/ecom-agents-download 👍Get Our New Training - Flowise Core Essentials: onyxstudiosinteractive.com/flowise-core-essentials
@OnyxStudiosInteractive
@OnyxStudiosInteractive 3 ай бұрын
👍Download/Clone This AgentFlow: onyxstudiosinteractive.com/ecom-agents-download 👍Get Our New Training - Flowise Core Essentials: onyxstudiosinteractive.com/flowise-core-essentials
@Introdigitalarts
@Introdigitalarts 3 ай бұрын
Thanks Thomas. Really a good video. I have shared your video to my team here in Dubai. We would appreciate if you show us simple and complex examples of how to leverage flowise with Zapier
@Obinna-ai
@Obinna-ai 4 ай бұрын
Great content! I built a flow that's basically Supabase -> OpenAI LLM, and you upsert a PDF/Word doc with tables, charts, etc, and I'd say the responses are 70-80% correct. Would LlamaIndex be more suitable for this? Would it yield better results? Response accuracy is very important in my application, as I use it for analyzing court cases, sales reports, and such. Thanks, keep up the good work.
@brauliolima5802
@brauliolima5802 4 ай бұрын
Part 1 link, please.
@musumo1908
@musumo1908 4 ай бұрын
Hey nice..where’s the details on connecting to FW in flutterflow?…can’t see it anywhere
@healthadvice3091
@healthadvice3091 5 ай бұрын
hi thomas, is flowise is still free and has the same function even if you dont use the cloud version?
@OnyxStudiosInteractive
@OnyxStudiosInteractive 5 ай бұрын
@@healthadvice3091 That's right Flowise is Open source and you can deploy on your own computer, server or a service like Railway. Although the cloud version has a few additional features like storage and database backup that you have to provide yourself in the self hosted option.
@healthadvice3091
@healthadvice3091 5 ай бұрын
@@OnyxStudiosInteractive wow i like it as i am from 3rd world country (im a broke tech guy) i just need to find a cheaper alternative hosting
@Cloudways-AI
@Cloudways-AI 5 ай бұрын
I have clients looking for tutorials on Flowise. Do you have an affiliate program, or could I run through before I recommend it.
@OnyxStudiosInteractive
@OnyxStudiosInteractive 5 ай бұрын
Hi there, that sounds interesting...We may be able to setup a referral program for you. Send me your email and we can discuss it.
@OnyxStudiosInteractive
@OnyxStudiosInteractive 5 ай бұрын
👍Download/Clone This AgentFlow: onyxstudiosinteractive.com/flight-booking-agent-download 👍Get Our New Training - Flowise Core Essentials: onyxstudiosinteractive.com/flowise-core-essentials
@OnyxStudiosInteractive
@OnyxStudiosInteractive 5 ай бұрын
👍Download/Clone This AgentFlow: onyxstudiosinteractive.com/flight-booking-agent-download 👍Get Our New Training - Flowise Core Essentials: onyxstudiosinteractive.com/flowise-core-essentials
@DesignDesigns
@DesignDesigns 5 ай бұрын
Thank you so much...
@OnyxStudiosInteractive
@OnyxStudiosInteractive 5 ай бұрын
You're welcome. Sequential agents are pretty awesome.
@Bill-ai
@Bill-ai 5 ай бұрын
Hi. When was the course produced and released?
@OnyxStudiosInteractive
@OnyxStudiosInteractive 5 ай бұрын
Hi Bill. Thanks for your interest. The course is brand new. We produced and released it in August so it's current with the latest version of Flowise. However it will also be updated as new features and versions of Flowise are introduced.
@Bill-ai
@Bill-ai 5 ай бұрын
@@OnyxStudiosInteractive Great so it was produced using v2? Do the sample projects in the course include multi or sequential agents or doesn't it go that deep? Thanks.
@OnyxStudiosInteractive
@OnyxStudiosInteractive 5 ай бұрын
​@@Bill-ai That's right, it was produced with Flowise version 2. There's actually a project in the course that includes an AgentFlows team along with an N8N integration for downloading KZbin transcripts and web search to research and create different types of content. I wanted to keep it easy to follow while also including some of the latest Flowise features from v2.
@sirishkumar-m5z
@sirishkumar-m5z 5 ай бұрын
Sequential agents are disruptive innovators! Remember to look at other AI technologies that can help your projects develop even better. #Innovation #SequentialAgents #AI
@OnyxStudiosInteractive
@OnyxStudiosInteractive 5 ай бұрын
You're definitely right about that. It's amazing that we're on the cutting edge of AI development and we haven't even gotten started.😅
@dlamotte21
@dlamotte21 5 ай бұрын
fix the orthograph in the formation titles = Ecommerce . Great Video
@OnyxStudiosInteractive
@OnyxStudiosInteractive 5 ай бұрын
Thanks for watching!
@CharliTech
@CharliTech 5 ай бұрын
That looks cool!
@OnyxStudiosInteractive
@OnyxStudiosInteractive 5 ай бұрын
Thanks! I'm glad you liked it. haha need to make an animation next time😅
@Speedon19
@Speedon19 5 ай бұрын
There is a way to send a personalized Session Id, for example from another system I send the id, flowise does not create an id, but I want to do it in Create Sequential Agents
@OnyxStudiosInteractive
@OnyxStudiosInteractive 5 ай бұрын
I don't think Agentflows supports custom Session Ids since they're stll pretty new at the moment. You may want to ask in the Discord group.
@uxaiagency
@uxaiagency 5 ай бұрын
Hey man, only a few minutes in but it's already a great video. Thank you!
@OnyxStudiosInteractive
@OnyxStudiosInteractive 5 ай бұрын
Thank you! I'm glad you enjoyed it!
@LDNCallout
@LDNCallout 5 ай бұрын
Agentflows and Sequential Agents are pointless at the moment, the output on the embed is poorly formatted and confusing, there are no options to display the output like its presented inside the test chat in Flowise, with separate agent displays nicely formatted and with avatars in an easy to read output, then when it comes to calling them through API the entire response of the supervisor and workers comes out in one block of text. Neither of which can be used in production or even chatbot embed for a client for instance the output is just too badly formatted.
@OnyxStudiosInteractive
@OnyxStudiosInteractive 5 ай бұрын
They are still pretty new and will go through more development over time. What's most exciting is giving them the ability to add a human in the loop input at any point in the agent flow as well as displaying the text output in the frontend chat window. Amazing to think that we're still in the early days of AI development with the best yet to come!😅
@marsninehwangyou
@marsninehwangyou 4 ай бұрын
@@OnyxStudiosInteractive
@ricardofernandez2286
@ricardofernandez2286 5 ай бұрын
Hi Thomas, great video! Thank you! So far the most complex flow Ive seen. Very exciting. Would you be so kind to share the Flow so we can work ourselves on it and experiment a little bit? Thank you!
@OnyxStudiosInteractive
@OnyxStudiosInteractive 5 ай бұрын
Thanks! I'm glad you enjoyed it. As far as sharing the code, I'm actually going to be doing more of that and making the workflows available for download since it can really save people time and help them develop their own agentflows. The flow for this Agentflow is now available in the store on my website: onyxstudiosinteractive.com/flight-booking-agent-download
@ramonmatias19
@ramonmatias19 6 ай бұрын
When do the tools start working and how?
@ayomidewilfred1864
@ayomidewilfred1864 6 ай бұрын
Amazing tutorial.. Can I use my custom API to send those data to instead of using Zapier or n8n?
@Karnadagan
@Karnadagan 7 ай бұрын
Very much needed video. Flowise and flutterflow is a great combination and much needed. request you to make a video of flowise openai assistant streaming on flutterflow front end pls
@omkamath
@omkamath 7 ай бұрын
Hey could you please share the final JS functions with us? I am having issues returning the JS function output in chat when using as ending node.
@Techiteasy.france
@Techiteasy.france 7 ай бұрын
Love the tutorial! Thanks
@DresElMagnifico
@DresElMagnifico 8 ай бұрын
Great tutorial. Thanks for sharing
@PrinceSingh-z9v4i
@PrinceSingh-z9v4i 8 ай бұрын
Brother, This is awesome series, I learn a lot, can you make a voice note taking app, where people will took notes just using voice command just like iron man movie, when user say a keyword like jarvis voice, App will active and took notes automatically,.
@krissihoffmann5155
@krissihoffmann5155 8 ай бұрын
Wow, amazing! Thank you for sharing this with us! One question: do you still Need flowise? Couldn‘t you have it all done in n8n?
@OnyxStudiosInteractive
@OnyxStudiosInteractive 8 ай бұрын
You're welcome! That's a great question...you can probably recreate most chatflows in N8N as long as you have Langchain modules. However I think Flowise has a much more intuitive user experience. N8N is primarily an automation tool though so it's more designed to work with Flowise rather than replace it.
@toi500
@toi500 8 ай бұрын
This is outstanding, thank you for sharing it.
@OnyxStudiosInteractive
@OnyxStudiosInteractive 8 ай бұрын
I'm glad you enjoyed it!
@tarekmahran9575
@tarekmahran9575 8 ай бұрын
Hi Thomas, Thanks for your great topics and videos about flowise and how to use it with the business. Is it possible to share flows that you use in your video so we can use it as a guidance? I have an account in N8N also and need to try your great demos. thanks in advance
@tarekmahran9575
@tarekmahran9575 8 ай бұрын
I am still waiting your reply. just say yes or no.
@OnyxStudiosInteractive
@OnyxStudiosInteractive 8 ай бұрын
Hey Thanks! I'm glad you enjoyed the videos! While there are some things I'm unfortunately not able to share, I am working on a membership site where I'll be able to share some of the flows and assets from the episodes. Hopefully it will be finished this month.
@RolandoLopezNieto
@RolandoLopezNieto 8 ай бұрын
I was wondering how to setup an agent that supported a vector database + memory + custom tools. Thank you very much
@OnyxStudiosInteractive
@OnyxStudiosInteractive 8 ай бұрын
To do that you should use the tool agent combined with the retriever tool in Flowsie
@RolandoLopezNieto
@RolandoLopezNieto 8 ай бұрын
@@OnyxStudiosInteractive thanks, I'll try that today.