Effortless RAG in n8n - Use ALL Your Files (PDFs, Excel, and More)

Поділитися
Вставка
  • Опубліковано 1 лют 2025

КОМЕНТАРІ • 218

  • @BuddhaMedam
    @BuddhaMedam 3 місяці тому +16

    Keep feeding awesome n8n content buddy. This tool has immense potential and I believe you can be the the right person to show that ;-))

    • @ColeMedin
      @ColeMedin  3 місяці тому +1

      Thank you very much - that means a lot!! And I certainly will be putting out more n8n content!

    • @PatentFinance
      @PatentFinance 3 місяці тому +1

      @@ColeMedin woot!

    • @JoeCryptola-b1m
      @JoeCryptola-b1m Місяць тому

      You own n8n don't you

  • @jonathanbarber3004
    @jonathanbarber3004 3 місяці тому +2

    Another first class tutorial. Very generous of you to share your knowledge with us all. Im sure you have a big list of turorials that you have planned, but thought id ask whether you were going to explore vision? It would be fantastic to upload images to a RAG system. It would also be amazing to upload videos to then question and retreive sections from... great tool for teaching others with extractions from videos. Again, thank you so much. You tutorials are accessible by so many and you'll be hitting millions of subscribers in no time!

    • @ColeMedin
      @ColeMedin  3 місяці тому

      Thank you so much Jonathan, I appreciate the kind words a lot!
      I love your suggestion too and vision is definitely something I need to be covering for my content as well. I am planning on creating content around multi-modal RAG and things like that in the future!

  • @ckdixon3629
    @ckdixon3629 5 годин тому

    I love your videos, as always a big THANK YOU! Two things… 1) What if I upload 5 documents to my source drive at the exact same time. When it runs every minute won’t it only grab 1 document or will it recognize multiple new docs and run multiple times? 2) Dark mode on that n8n workflow would make my eyes happier for my midnight UA-cam watching! 😂

  • @jarad4621
    @jarad4621 3 місяці тому +2

    Thanks cole awesome stuff
    One of my favorite channels, I realized to myself what makes a great channel you watch every video from? On that focuses on one very specific great thing of value, note to self.
    It seems like how the different file type or complex ones like excel or sheets is ingested is really important based on output results you want?
    Would love to see a video on that for sheet or xlsx specifically, to understand the different ways to process these and reasons and how to be thinking about this based on your goals.
    Honestly rag is still really confusing based on it's limitations and when and how to use it or not specifically for files like sheets like if I wanted to later extract and process a larger Excel and multiple rows at once based on a column filter for example perhaps to do an overall sheet analysis how that would work.
    More complex sheets rag workflows would be really interesting as it has a lot of value to many people who use sheets so how to ensure the best results for maybe a bigger complex queries.
    Thanks appreciate you.

    • @ColeMedin
      @ColeMedin  3 місяці тому

      Thank you very much Jarad, that means a lot!
      I love your thoughts here! This is exactly what I was getting at in the video when I said there are a million ways to handle CSVs/Excels especially and that I'll be covering that in a later video.
      What you mentioned about wanting to process a whole file based on a column filter to do overall sheet analysis is definitely something RAG wouldn't be good at since it does smaller lookups, not analysis over many chunks at once. But what you can do is have RAG combined with other tools (usually with Python code generation) to do this kind of thing to make a powerhouse of an agent! That's what I'll be making a video on in the future.

  • @alvaroaraujo7945
    @alvaroaraujo7945 3 місяці тому +3

    This is golden! Btw, I vote for a follow-up video on a front-end recommendation to go with this workflow

    • @ColeMedin
      @ColeMedin  3 місяці тому +2

      Thank you man! And I appreciate the suggestion a lot! I have a video on my channel that goes over frontends for n8n agents but I can certainly put out more content on it.
      ua-cam.com/video/JyolNYRbAcs/v-deo.html

  • @user-uv3nv2bc6v
    @user-uv3nv2bc6v 3 місяці тому +5

    Yes please, more n8n and AI => you explain all perfect Cole!

    • @ColeMedin
      @ColeMedin  3 місяці тому +1

      Thank you very much! I'll be doing a lot more with n8n and AI!

  • @nicholasburdick6086
    @nicholasburdick6086 3 місяці тому +4

    Awesome video! I would love to see the video specifically on csv and excel files, or even hooking into sql databases…. That is something I have been struggling with. Keep up the awesome content!

    • @ColeMedin
      @ColeMedin  3 місяці тому +3

      Thank you very much and yeah it's pretty clear to me I have to make a follow up for CSVs/Excels for RAG - I certainly will!

    • @BirdManPhil
      @BirdManPhil 3 місяці тому

      @ColeMedin what about using sql to drive the accuracy up when searching your documents, to make the ai follow directions basically, then having pinecone for few shot vectors for the conversational part

    • @ColeMedin
      @ColeMedin  3 місяці тому

      @@BirdManPhil I like where your head is at with this! That is certainly possible depending on the use case!
      One use case I am working on right now actually involves having the agent write SQL to perform calculations across a large amount of records that wouldn't work well with RAG. But the table structure is also simple enough where I know the agent won't mess up on the SQL generation.

  • @rodillo
    @rodillo 2 місяці тому

    Hi Cole, great video! I’d like to know how you could process Excel files so that each row in an Excel file gets converted into plain text with the column fields, and embed it. The issue is that when Excel files are processed into plain text, sometimes the data ends up split between two embeddings, causing problems when retrieving the data. A video explaining how to handle Excel files would be really interesting. Great job!

    • @ColeMedin
      @ColeMedin  2 місяці тому

      Yes I'm actually going to be making more content soon on RAG specifically with Excel files covering this kind of thing! But in n8n you can split the Excel file into separate items for each row and then ingest them one at a time into the vector DB, our batch multiple together if you want to have let's say 10 rows per chunk.
      Thanks!

  • @mharding27
    @mharding27 3 місяці тому +6

    Hello Cole, thank you for keeping up on these rag videos. I am trying to do something similar for my work. But we have a lot of files on local shares and SharePoint.
    I am wondering if you know that this would work for local files instead of cloud serivces like Google drive or SharePoint?

    • @ColeMedin
      @ColeMedin  3 місяці тому +1

      Of course! And fantastic question!
      This would indeed work for local files. You can trigger the workflow when files are created or updated locally just like with Google Drive, and then processing them would be exactly the same. Check this n8n documentation out!
      docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.localfiletrigger/

    • @mharding27
      @mharding27 3 місяці тому

      @@ColeMedin Hello Cole, thank you and I get pdf, excel and text working. But I have not found a way to get doc or docx extracted. Do you know how this can be done

    • @naveenkumar-fn7zg
      @naveenkumar-fn7zg 15 днів тому

      Hey, I am trying to access local folders from n8n docker containers to feed into the vector database. Could you help her by telling how you loaded local files into the n8n?

  • @SergeyNeskhodovskiy
    @SergeyNeskhodovskiy 3 місяці тому +2

    Thank Cole, always learning something from you! How would you handle this challenge: having a google spreadsheet (not excel), feed it to the agent and ask it questions that depend on the data, like what is the sum of the hours worked etc. I guess since LLMs are awful as calculator, you'd have it convert the spreadsheet to an SQL database and make the AI write and execute the query, but I'd appreciate if you could show the exact steps. Thanks!

    • @ColeMedin
      @ColeMedin  3 місяці тому +2

      Thanks Sergey, I'm really glad to hear that!
      I appreciate this question a lot because you're definitely hitting on one of the limitations of RAG. Since RAG is meant more for specific lookups, it doesn't handle larger file analysis well like determining averages, sums, maximums, minimums, etc. over a large CSV/Excel file.
      However, you can create a BEAST of an agent by combining RAG with other tools (like Python code generation or SQL generation if you table is in a database like you mentioned) in an agent so it can handle both lookups and calculating values across your files.
      I will be making a video on exactly that in the near future!

  • @willyandressoto9704
    @willyandressoto9704 5 днів тому +1

    Excelente, me funcionó perfecto

  • @charlleskleber9771
    @charlleskleber9771 3 місяці тому +2

    Thanks for this, you are awesome!
    Do you know any content in the web that follows up on pdf analysis agents? The results are very bad for big documents with tables, like financial statements

    • @ColeMedin
      @ColeMedin  3 місяці тому +1

      Of course, thank you very much!
      I will be making more content specifically on processing PDFs (and Excel docs) in the future. But off the top of my head what I can think of is there are tools out there like AWS Textract that are meant for working with a lot of complicated data in PDFs. I would check that out to start!

  • @jamesturner246
    @jamesturner246 3 місяці тому +2

    Amazing video, if I may ask, on the previous version of this you used Qdrant but on this version you use Supabase, is there a reason ?

    • @ColeMedin
      @ColeMedin  3 місяці тому

      Thank you and good question! Both are great, I just used Qdrant in one of my other videos because it was a part of the local AI starter kit so I wanted to leverage it for RAG to use the whole package.
      I'm a big fan of Supabase since I can use it both for the SQL DB for conversation history and for RAG, so it's a double wammy. But again, Qdrant is great for RAG too!

    • @nightmarenarratives-rus
      @nightmarenarratives-rus 2 місяці тому

      @@ColeMedin Hi Cole, for Supabase? Did you just install it into the self-hosted-ai-starter-kit container in Docker?

  • @flowAitecnologia
    @flowAitecnologia 24 дні тому +1

    Thank you for the content, I'm already using a RAG AI Agent thanks to you my friend! I'm helping real business with automation and LLM.
    May I ask a question? You are using a single table in Supabase, table documents, to store those vectors. Now, what should I do if I need to store multiple vectors from multiple AI agents? do I need a table for each AI agent? do you think I can keep all in the same table but use metadata? I would like to keep vectors of different companies' docs and pdfs.

    • @ColeMedin
      @ColeMedin  23 дні тому +1

      You are so welcome! I love it!
      You hit the nail on the head with metadata - that's what I'd recommend just so you aren't managing a ton of tables in your database. Just make sure you have a good unique identifier for each agent/company and that you're always using that in both your vector inserts and lookups!

  • @frascenzo
    @frascenzo 3 місяці тому +1

    Before anything, thanks for the video, it helped me a lot! I would like to ask two questions:
    1. When I delete a file from the folder, the it keeps existing on supabase, and is that supposed to happen?
    2. I'm getting "Error inserting: unsupported Unicode escape sequence 400 Bad Request", when uploading docx files, do you have any insight about it?
    Again, thank you for the video, you explain things very well.

    • @ColeMedin
      @ColeMedin  3 місяці тому +1

      You are so welcome! Thank you for the kind words!
      1. Yes, right now there isn't a way in n8n to remove a file from the knowledgebase when it is removed from Google Drive. You would have to set up a custom API integration with Google Drive to watch for file deletions.
      2. You might have to convert docx files to txt files, either before uploading them or within the N8N workflow.

  • @danielaymerichllombart348
    @danielaymerichllombart348 18 днів тому +2

    Thank you for this amazing content, Cole! I followed your steps and realised that it only processes my first drive. It neglects subsequent files I add to the google drive. Is this correct? How would you do it to process all files (and not just one) in a folder? Thank you

    • @ColeMedin
      @ColeMedin  16 днів тому

      You are so welcome! Are you saying when you upload multiple docs at once it only handles the first one? When you upload multiple at the same time the n8n workflow is only triggered once but all of the documents are given to that one workflow execution. So you just have to add the "loop" node to loop over all the documents in the workflow and add them to the knowledgebase one at a time as I'm already doing in the video!

  • @VB_Guron1299
    @VB_Guron1299 3 місяці тому +3

    Hi! I just discovered n8n due to great interest in self hosting. May I ask is there a way to connect n8n to a front-end? Like I don't need to go to n8n to access that chat and do things wit in but instead have a front end while my n8n will be the back end if that makes sense? If possible, is there such a thing that is already build and I just need to debloy?
    Thank you!! Super fun to learn about it and thanks to Cole for the majority on n8n! Looking forward for more!

    • @NishanthA32
      @NishanthA32 3 місяці тому +1

      If you want to just use the chat feature, n8n gives the option to embed the chat widget on any website or use the chat directly on a publicly available url too

    • @NishanthA32
      @NishanthA32 3 місяці тому

      when you open the chat node, it gives you the chat url that you can access on the browser directly

    • @ColeMedin
      @ColeMedin  3 місяці тому

      Thank you very much and that is a great question!
      As @NishanthA32 pointed out, n8n gives you the ability to embed the chat widget on your website. Not the most customization but for basic use cases it works well.
      Otherwise, I made a video on my channel recently for how to use an n8n agent as an API endpoint for a frontend built with something like Streamlit or Next.js!
      ua-cam.com/video/JyolNYRbAcs/v-deo.html

  • @johnsaxxon
    @johnsaxxon 3 місяці тому +2

    Thank you so much! I was banging my head against the wall from some other tutorials and your video helped me get my first bot up and running. RAG, Asana, Atlassian Confluence, oh my! I'd love to see a slack video where you hook n8n up directly to slack without runbear. Or is that a terrible idea? :)

    • @ColeMedin
      @ColeMedin  3 місяці тому

      I'm so glad I could help!! My pleasure :)
      I am going to be doing more Slack integrations in the future! Runbear is great but there is always a time and place for custom implementations so I'll certainly cover that still.

  • @johnfreddyvalencia
    @johnfreddyvalencia 3 місяці тому +2

    Gracias desde Colombia. Great Job

    • @ColeMedin
      @ColeMedin  3 місяці тому

      Thank you very much!!

  • @clarkzara15
    @clarkzara15 3 місяці тому +2

    Thanks for the great video! I'm considering switching to Pinecone for the vector store to see if it improves similarity search accuracy, while keeping Supabase for PostgreSQL to manage chat memory. I’m also encountering out-of-memory errors on my self-hosted n8n whenever I try inserting large PDF files into Supabase’s vector store. Any thoughts or tips would be much appreciated!

    • @ColeMedin
      @ColeMedin  3 місяці тому +1

      Yeah that is certainly worth a try, especially if your knowledgebase is huge. Pinecone is fantastic, though PGVector should work just as well as long as you don't have millions of records.
      Out of memory errors probably means you'll need to upgrade your instance that is hosting n8n! How large are your PDFs?

    • @clarkzara15
      @clarkzara15 3 місяці тому +2

      @@ColeMedin Thanks for the insight! The PDFs I’m uploading to the vector DB are legal documents and agreements, typically around 3.5MB each. I ran into out-of-memory issues trying to handle everything on my self-hosted n8n instance, so as a workaround, I split the workflows: one instance on Render purely for chat functions, and another on my local PC for inserting PDFs into the vector store. This approach has helped manage the load better, but I'm always open to new ideas if you have any other tips. Thanks again!

    • @ColeMedin
      @ColeMedin  3 місяці тому +1

      That's definitely a good approach! Nice!

  • @martintaborda_uy
    @martintaborda_uy Місяць тому

    Excellent tutorial, here's a question for you: Where is the collection name defined when you're inserting a file into Qdrant? I don't understand where that definition is. How could I later search for that collection if I have multiple Qdrant vector stores for different agents?
    Super thanks in advance!

  • @choijungho1
    @choijungho1 3 місяці тому +2

    Perfect!❤

  • @digitalmole8236
    @digitalmole8236 3 місяці тому +1

    Awesome tut. Can you clarify if the extract text from pdf node is using any kind or ocr or just extracting text? Is there a way to use an ocr tool for pdfs that aren't just text?

    • @ColeMedin
      @ColeMedin  2 місяці тому

      I believe it is actually just extracting text but I'm not totally sure since those implementation details I haven't looked into for that node. You could always use the HTTP node with an OCR API if you want to extract with something more custom!

  • @Strupido
    @Strupido Місяць тому +1

    Great tutorial! Thanks a lot Cole.
    Is there any way for the Assistant to additionally return links to the files it got the information from? Maybe material for another video :)

    • @ColeMedin
      @ColeMedin  Місяць тому

      Thank you! Yes you can, though that is a more custom approach than using the built in vector DB nodes from n8n. Certainly would make another good video!

  • @kitlee888
    @kitlee888 3 місяці тому +1

    Amazing tutorial...really helpful...thanks thanks thanks

    • @ColeMedin
      @ColeMedin  3 місяці тому

      Glad you found it helpful - my pleasure! 😃

  • @LePsyclone
    @LePsyclone 3 місяці тому +1

    Great content. Can you create a tutorial to ingest detailed sales data excel sheets ? That is a common real world need! Sales by period, by source ...

    • @ColeMedin
      @ColeMedin  3 місяці тому

      Thank you and I appreciate the suggestion! I will be doing advanced RAG tutorials in the future where I will cover these kind of documents!

  • @nightmarenarratives-rus
    @nightmarenarratives-rus Місяць тому +1

    @colemedin really awesome video. Your channel is super informative. A really great add-on to this might be to show how/if documents in other languages could be translated to English before being inserted into the vector database. As an example a Word document or PDF that is written in French is loaded into Google Drive, the file should be downloaded, the text extracted, the text converted into English, and then the information gets inserted into the vector database. Thoughts?

    • @ColeMedin
      @ColeMedin  Місяць тому

      Yeah I'd love to add that in the future. Translation is a really great idea and it would make this so much more useful!

  • @alvaroaraujo7945
    @alvaroaraujo7945 3 місяці тому +3

    Interestingly, I got accurate/complete results with less hallucination (AND saved prompts) after setting the Supabase Vector Store node to 'Get Many' instead of Retrieve Documents (thus having to switch agent to 'conversational agent')
    Wondering if that's because the task I hand to the Agent is quite complex (had to to split it into more than one agent and token usage was skyrocketingwhile output quality plummeted)

    • @ColeMedin
      @ColeMedin  3 місяці тому +2

      Wow that is super interesting... thanks for sharing!! That's definitely counterintuitive that making that switch would help, but I'm glad it worked for you!
      Did you do anything custom with the prompt for the 'Get Many' node? Maybe something you did to set it up more custom (since the Retrieve Documents gives less control and 'Get Many' gives more) made the results better for your more complex use case.

    • @alvaroaraujo7945
      @alvaroaraujo7945 3 місяці тому

      @@ColeMedin Just "search for the docs on, or most related to this query: {{ $json.chatInput }}
      I wish I knew why Get Many is performing better lol... Since we're here: do you happen to know how can we 'filter' queries? I wish to add similar data but with different contexts inside the same supabase table

  • @itsdubc8550
    @itsdubc8550 2 місяці тому

    Great video! I always seem to have reliability issues w/ Google Drive triggers that watch for File Created tho. With the workflow activated and polling every minute, uploading a PDF rarely triggers the File Created event for me. Have you experienced similar issues?

    • @ColeMedin
      @ColeMedin  2 місяці тому +1

      Thanks! I have actually noticed this myself before, it seems to happen randomly once and a while where it doesn't trigger. But that's pretty rare. If you upload multiple files at once it'll actually only trigger the workflow once but with multiple items, keep that in mind!

  • @DanielBowne
    @DanielBowne 3 місяці тому +1

    Would love to see this done with the new pgvector node.

    • @ColeMedin
      @ColeMedin  3 місяці тому

      That's news to me - I will definitely look into this!!

  • @jaumerrr
    @jaumerrr Місяць тому

    Thanks for this tutorial !!!
    Would there be a way that it can process files if you Bulk add to the Drive folder?
    Also would there be a way so if a file is deleted from the Drive folder its also delted from the vectors database?
    Thanks !!!

  • @PrakashBhat-w7t
    @PrakashBhat-w7t Місяць тому +1

    Hi, Thanks for the video, I have one question, how do I use data in my local drive instead of google drive ?

    • @ColeMedin
      @ColeMedin  Місяць тому

      You are welcome and great question! Take a look at the "Local file trigger" in n8n, that will get you started!

  • @TheLlamalover101
    @TheLlamalover101 9 днів тому +1

    I cant find his video for initially creating the base workflow before the expansion, wanted it for learning purposes

    • @ColeMedin
      @ColeMedin  8 днів тому

      Right here!
      ua-cam.com/video/PEI_ePNNfJQ/v-deo.html

    • @TheLlamalover101
      @TheLlamalover101 8 днів тому +1

      @ thank you, I ended up finding it yesterday and then reworked it to use local files and qdrant

  • @djagryn
    @djagryn 3 місяці тому +1

    nice job !

  • @MrAiAgents
    @MrAiAgents 3 місяці тому +1

    Great job!
    Can you make a video of an CRM agent that can manage clients. e.g update status, search records and get information, assign task based on criteria.
    That would be amazing 😊

    • @ColeMedin
      @ColeMedin  3 місяці тому

      Thank you and I love the suggestion! I've got it added to my list of content ideas :)

  • @jackmermigas9465
    @jackmermigas9465 3 місяці тому +1

    ah this is what I was stuck on last time was the different file types in the data loader thanks so much for clarifying that! About pdf's, let's say we are putting through appointment or meeting reminders, is it better to summarize with an ai and convert to text or can it handle just dumping the whole pdf in there in this way you're showing on video?

    • @ColeMedin
      @ColeMedin  3 місяці тому +1

      You're so welcome! The point of RAG is to make it possible to dump huge documents and still make it possible to look up specific pieces of information within the documents. So to answer your question I would just put the whole PDF in the vector DB instead of summarizing it first!

    • @jackmermigas9465
      @jackmermigas9465 3 місяці тому +1

      @@ColeMedin brilliant thanks!

    • @ColeMedin
      @ColeMedin  3 місяці тому

      You bet!

  • @nusquama
    @nusquama 3 місяці тому +1

    this is great ! but vector wiht xls files is always difficult ! Do you have better way to vector xls ?

    • @ColeMedin
      @ColeMedin  3 місяці тому +1

      Thanks and I have a video coming out for this next month!

    • @nusquama
      @nusquama 3 місяці тому +1

      @@ColeMedin this guy on youtube like your video GucciDGIxOption !!!

  • @thomasstavrotheodoros255
    @thomasstavrotheodoros255 2 місяці тому

    great video! How much does querying this model cost per month?

    • @ColeMedin
      @ColeMedin  2 місяці тому

      Thanks! This is using GPT-4o-mini, so the pricing is $0.150 / 1M input tokens and
      $0.600 / 1M output tokens

  • @photize
    @photize 3 місяці тому

    Great vid. The pdf scanner does it extract the txt from flattened PDF files as that was always the difficulty. In flattened the text being embedded in an image so some OCR is involved . Thx

    • @ColeMedin
      @ColeMedin  3 місяці тому

      Thanks and yeah that makes sense! It's always nice to have a simpler solution than using OCR to extract text from PDFs.

  • @hajduadam
    @hajduadam 3 місяці тому

    This is great, I could build a POC with this. Can you make a video, 9if you haven't yet) who to built in the Chat window in a live website? (hosting N8N locally?)

    • @ColeMedin
      @ColeMedin  3 місяці тому

      Thanks! I have a video on using N8N within a website on my channel (using Streamlit)!
      ua-cam.com/video/JyolNYRbAcs/v-deo.html

  • @McAko
    @McAko 3 місяці тому +1

    which LLM did you use in this example? in previous videos you said that Llama 3.1 8B was not good enough for RAG 🤔

    • @ColeMedin
      @ColeMedin  3 місяці тому +1

      Fantastic question! I'm using Claude 3.5 Sonnet in this video (not sticking to local in this case). Llama 3.1 8b doesn't do well with RAG specifically in n8n I should mention, since n8n does RAG as a tool and Llama 3.1 8b doesn't handle tool calling well.

  • @navindergill3207
    @navindergill3207 3 місяці тому +2

    How to create a multimodal RAG system meaning not just limited to pdfs and excels but even images etc

    • @ColeMedin
      @ColeMedin  3 місяці тому +2

      Great question! I don't think n8n supports images for RAG by default, but there are multimodal vector DBs like Chroma you could look into using!

  • @carsonwach9373
    @carsonwach9373 7 днів тому

    @colemedin do you do one on one training?

    • @ColeMedin
      @ColeMedin  4 дні тому

      I do once and a while! Feel free to shoot me an email at cole@dynamous.ai

  • @MUCIDA_WEB3
    @MUCIDA_WEB3 3 дні тому

    Hello my friend!
    I downloaded your project, setup everything, its up and running. I checked the Postgres and supabase, all the information are there. But when I ask something to the agent, it gives veeeeery poor (and wrong) answers. I mean, If I had asked the question to a pure ChatGPT, it would give me a good answer, even if it doesn't know for sure the content, but the agent is hallucinating. What can I do?

    • @ColeMedin
      @ColeMedin  2 дні тому

      Which model are you using? A lot of times it comes down to the model versus something in the workflow (though it could be that too). Also I'd check the output of the RAG node and see if it is returning the right chunks.

  • @agsvk-com
    @agsvk-com 3 місяці тому +1

    Thanks, Cole. Really great videos that you do! 😊 @16:00 you mentioned about ingesting documents with Excel or Google sheets in different ways of doing it. Do you have a video on it yet? God bless you

    • @ColeMedin
      @ColeMedin  3 місяці тому

      Thank you very much - my pleasure :)
      I do not yet but I am planning to do this video pretty soon! Lot of experimentation I am doing behind the scenes for this actually!

  • @BirdManPhil
    @BirdManPhil 3 місяці тому +1

    does this allow multiple users to use this chat at once? ie a small team or even a large customer base?

    • @ColeMedin
      @ColeMedin  3 місяці тому

      Great question - it sure does! You just have to make sure the instance you are hosting n8n on is powerful enough to handle the number of concurrent requests you are looking for. But it doesn't take that much compute power so you should be good regardless.

    • @BirdManPhil
      @BirdManPhil 3 місяці тому

      @ColeMedin would you be available to help me with a chatbot I'm building if I pay you

    • @ColeMedin
      @ColeMedin  3 місяці тому +1

      @@BirdManPhil Yes I am! Feel free to reach out to cole@dynamous.ai

    • @BirdManPhil
      @BirdManPhil 3 місяці тому

      @ColeMedin I'm ended up spinning up a 3 node kubernetes cluster with a node balancer and persistent volumes. It's not the best at all but it will scale and that's what matters. I've got treafik and let's encrypt all set up woth postgresql and pgvector for hybrid semantic search, n8n is in que mode with the main node set to 2 replicas for now, a dedicated worker node that can spawn up to 5 replicas, and a webhook node that can spawn 2 with redis handking all the it er njde cimmunication cache and queueing . So all that works perfectly, but I can't figure out now how get other tools to properly ingress and I still need at least flowise and langflow and a purple monitoring services working before I can really dive in. It's hard I'm barely ok with docker, and kubernetes is like docker on steroids from thanos

  • @jaggyjut
    @jaggyjut 3 місяці тому

    Great video. Any chance to create a tutorial with open source framework like langchain. Thank you

    • @ColeMedin
      @ColeMedin  3 місяці тому +1

      Thank you! n8n is indeed open source itself, but yes I have a lot of content on my channel for LangChain already and will continue to put out more!
      As an example, I created a video recently for how to use LangChain and n8n together to create some really neat agents:
      ua-cam.com/video/8hAMASB-RpM/v-deo.html

  • @FarisandFarida
    @FarisandFarida 3 місяці тому +2

    Thanks you so much for this ❤. Question, how would you work with this if you are using something like a notion database?
    And, if for instance, you are running a company and have multiple departments with different knowledge bases. Are you adding all in the same table? or can you add them in different tables in supabase? will adding them in the same table mess with the quality of retrieval?

    • @clementgirard2045
      @clementgirard2045 3 місяці тому

      +1 Thanks for this questions and thanks to Cole for his tutorials ❤.
      I would love to be able to use the same RAG Agent, but from a Notion database with the ability to be able to update properties AND content blocks within database pages, all in sync with Supabase. I tried to create this workflow from Cole's previous tutorial, but it's much more complicated with Notion than with Google Docs.

    • @ColeMedin
      @ColeMedin  3 місяці тому

      My pleasure and great questions!
      To your first question, Notion has triggers in n8n for when a page is added or updated. So it should be very similar to Google Drive! I haven't used Notion much before so I'm not sure how exactly you would extract the text from a page to put it into Supabase, but I believe you could use the "Get Many Child Blocks" node to break the created/updated page into blocks and insert each of those into the vector database in a loop.
      For your second question - when you have multiple companies/departments you want to manage knowledge for, one easy solution is to use a separate table for each. That doesn't scale very well though. The better option that I typically go with is to set a piece of metadata on each record for the company/department the record is tied to. Then, when I query the knowledge base (assuming I know the company/department) I can do a metadata filter on that first and then only query on the subset of documents! So I would just take a dive into metadata filtering in general for this kind of use case!

    • @ColeMedin
      @ColeMedin  3 місяці тому

      My pleasure @clementgirand2045!
      I'm really curious! What were the challenges that you ran into when trying to set this up to work with Notion?

    • @FarisandFarida
      @FarisandFarida 3 місяці тому

      @@ColeMedin Thank you for this response. i am not sure i get the answer though lol on the supabase one😆. i will add you response to clause to get more clarification

    • @ColeMedin
      @ColeMedin  3 місяці тому

      @@FarisandFarida Of course and I'm sorry! Hopefully Claude can help haha but yeah lmk if you want more clarification! I'd ask Claude about metadata filtering and it could give a really good breakdown for you!

  • @yhojraj
    @yhojraj 3 місяці тому +1

    Msword files getting all Gibberish when extract. Only extension .doc work a little but still have a lot gibberish words. Can you check this with some proper document file please?

    • @ColeMedin
      @ColeMedin  3 місяці тому +2

      This setup just works with Google Doc files right now! For MSWord you might need a custom extract step to parse the format for those files specifically.

  • @hajduadam
    @hajduadam 3 місяці тому +1

    Can you continue this wideo with finishing the chat node? I activated it but the hosted and embedded ones are responding in JSON instead of plain text in the chat window something like:
    { "response": { "text": "The emergency contact is Jack Daniels." } }
    In the ChatModel node I have the response set up as text. Would be nice to see a tutorial how to get rid off this "bug" and embed it in a website. THANKS

    • @ColeMedin
      @ColeMedin  2 місяці тому

      That's weird! Which LLM are you using? My guess is it is getting confused with the N8N prompting under the hood.

    • @hajduadam
      @hajduadam 2 місяці тому +1

      ​@@ColeMedin it is. Using your workflow as a base but with Pinecone and cant find out the reason.

  • @robgonda3467
    @robgonda3467 3 місяці тому

    @Cole, it seems like the workflow breaks when you upload multiple files to the google drive. It can only pull one at a time.

    • @ColeMedin
      @ColeMedin  3 місяці тому

      Interesting... it has worked for me before but I know once and a while it can have issues! Could be some sort of limitation with the Google Drive API as well or a short term rate limit being hit.

  • @T33KS
    @T33KS 3 місяці тому

    I would love to know your opinion about something I've been researching.
    What do you consider is the best tool for the production stage when it comes to n8n automation flows. In other words, what would be the best approach to "orchestrating" (publishing/cloning/managing/monetizing) n8n flows that you create for clients.
    BTW thanks for putting out one of the top channels for straight forward and hands on training in this field.

    • @ColeMedin
      @ColeMedin  3 місяці тому

      Thanks for the kind words! And great question!
      I've been thinking about this myself actually and I'm planning on just creating something custom to manage all of my n8n workflows for production. Just some sort of frontend that I can build really fast with tools like Bolt.new/Claude dev/v0 and then managing the orchestration of n8n workflows with FastAPI endpoints.

    • @T33KS
      @T33KS 3 місяці тому

      @@ColeMedin that's a good approach. It's weird how no one is building an all-in-one solution. I mean that's a pain point for many AI devs.
      Good luck in that project. And thanks for the great content.

    • @ColeMedin
      @ColeMedin  3 місяці тому

      I'm glad it sounds good to you! I've been putting a lot of thought recently into how to make it work super well. An end to end solution is definitely a big pain point for a lot of devs right now!
      Thank you and my pleasure!

  • @otikaID
    @otikaID Місяць тому +1

    why my excel became 3 item records in supabase?

    • @ColeMedin
      @ColeMedin  Місяць тому +1

      That's because it split the document into chunks so that the LLM doesn't get too much information at once!

    • @otikaID
      @otikaID Місяць тому +1

      @@ColeMedin can i change chunks to 4000?

    • @ColeMedin
      @ColeMedin  28 днів тому +1

      Yeah you certainly can!

  • @funnydogfargo1026
    @funnydogfargo1026 3 місяці тому

    Hi Cole, another great video! You just solved my biggest struggle of the last 3 days. But now I have a new problem. How can I upload files from a specific folder in bulk? I have a folder in Drive with 122 PDF files. The current automation only allows me to upload one file at a time, and it's the same file every time. What I'm missing?

    • @ColeMedin
      @ColeMedin  3 місяці тому

      Thank you very much - I'm glad I could help!
      If you want to upload an entire folder for RAG at once, you would want to create a separate folder for that. This workflow is meant to ingest files that are created/updated after the workflow is made active, not to go retroactively through a folder.
      You can create a workflow that uses the Google Drive "List files and folders" to get your list of your 122 PDF files and then loop through each one to extract the text and add into the RAG knowledge base similar to what I do in my workflow.

    • @robgonda3467
      @robgonda3467 3 місяці тому +1

      @@ColeMedin the workflow breaks when uploading multiple files - says it gets confused about which ID to use

    • @robgonda3467
      @robgonda3467 3 місяці тому +1

      BTW, doesn't seem to be working with folders either, only files at the top level

  • @mohamedabdulla8097
    @mohamedabdulla8097 2 місяці тому

    Hey it's awesome. I've a quick question, i have csv file, each row has title, summary, and link. I need to return link Based on the question. Is it possible? I'm New to n8n. Appreciate ur help

    • @ColeMedin
      @ColeMedin  2 місяці тому +1

      Thanks! Yes you could set this up but it would take a good amount of customization!

    • @mohamedabdulla8097
      @mohamedabdulla8097 2 місяці тому

      @ColeMedin can u suggest any doc or make a video about it? It would be really helpful. If you can help, can i have ur email?

    • @ColeMedin
      @ColeMedin  2 місяці тому +1

      You know I'm pretty at capacity with everything going on now, but what I will say is I am building out a community for N8N soon and this would be a fantastic thing for you to post about!

  • @MustRunTonyo
    @MustRunTonyo 3 місяці тому

    Supabase vs Postgres vs Qdrant: what's best used in these ai apps?

    • @ColeMedin
      @ColeMedin  3 місяці тому +1

      Great question!! I assume you meant Pinecone instead of Postgres since we are talking about vector DBs. Supabase with PGVector is the simplest and will perform just as well as Pinecone and Qdrant until you get to millions of records. Once your vector DB is absolutely massive, that's when it makes sense to go with a dedicated vector datastore like Pinecone or Qdrant. I'd choose Pinecone if you want something set up fast and Qdrant if you want to self-host since it is open source!

    • @MustRunTonyo
      @MustRunTonyo 3 місяці тому +1

      @@ColeMedin thanks for the explanation!!

    • @ColeMedin
      @ColeMedin  3 місяці тому

      Of course, glad to help!!

  • @gtrusler
    @gtrusler 3 місяці тому

    Do you have any issues with the Google Drive trigger having trouble when you add a lot of documents to the watched folder at once? I find that it sometime submits the same file that was triggered earlier or it misses a lot of them. I see this trigger used in tutorials all over youtube so I'm either doing something wrong or most people only feed it a small number of documents at once. I'm curious if you've notice anything similar.

    • @ColeMedin
      @ColeMedin  3 місяці тому +2

      I have had some issues in the past!
      I believe what it comes down to is if you upload many documents at once, the workflow will only trigger once but with multiple items going through the workflow at once. So you just have to modify what I have here to handle items in a loop within the workflow.
      Otherwise, if you're actually seeing the workflow entirely miss a trigger, it could potentially be an issue with rate limits for the actual Google Drive API and not because of n8n.

  • @GrecoFPV
    @GrecoFPV 3 місяці тому

    will it work with images also ? and be able to use openai api to analyze context of it ?

    • @ColeMedin
      @ColeMedin  3 місяці тому +1

      Good questions! I believe RAG with n8n doesn't support images by default without creating a more custom workflow to do something like extract text from an image and then store that. You could certainly do that though! Multi-modal RAG is something I'd have to look into more with n8n.
      Yes, you can use the OpenAI API in n8n!

  • @Minotaurus007
    @Minotaurus007 3 місяці тому

    I cannot find the field "file_type" to drag it into the set file id node. I only see mimetype. Is this equivalent or changed N8N the functionality?
    I also cannot open your linked workflow: "not a json file". Helping hint would be appreciated.

    • @ColeMedin
      @ColeMedin  3 місяці тому

      You can use mimeType, it is equivalent! Make sure when you import the JSON file you do import from file not URL! I checked and it is a valid JSON file I can import!

  • @docdailey
    @docdailey Місяць тому

    Is there a difference between an image PDF and a tax PDF?

    • @ColeMedin
      @ColeMedin  Місяць тому

      This n8n workflow extracts text from PDFs so it won't get images from PDFs if that is what you are asking

    • @docdailey
      @docdailey Місяць тому +1

      @@ColeMedin yeah.. the ocr part is my point. THe frontier models tend to do pretty well even compared to tesseract.

  • @parthchandak02
    @parthchandak02 2 місяці тому

    How do you deal with multiple google drive files uploaded at once?

    • @ColeMedin
      @ColeMedin  2 місяці тому

      Great question! They'll be combined together in a single workflow execution (so multiple input items in a list), so you just have to loop through each one of them and the rest of the workflow can be the same.

  • @hajduadam
    @hajduadam 3 місяці тому

    It was working great at the bigining and started to test it with modifying the files or adding pdf. and now getting error from the Supabase Vector Store node :Error searching for documents: 57014 canceling statement due to statement timeout null
    Error searching for documents: 57014 canceling statement due to statement timeout null
    In supabase I can see the uploaded file and all the rest of the flow shows the files. Also the chat says has no access to specific files.

    • @ColeMedin
      @ColeMedin  3 місяці тому +1

      I actually have not seen this before... it might be a memory issue if you are hosting N8N on a smaller instance.

  • @edyzakaria9522
    @edyzakaria9522 3 місяці тому

    Hi just want to check, what happen if i simply upload 2 (or more) files simultaneously, will the workflow will loop per file?

    • @ColeMedin
      @ColeMedin  3 місяці тому

      Good question! There will be a separate execution of the workflow for each file!

  • @5capeg0at
    @5capeg0at 3 місяці тому

    Why is installing Supabase so hard though? So many different parts, I’m stuck on launching the supabase-vector container, it just exits with code 78 and I’ve spent a night on it with no luck

    • @ColeMedin
      @ColeMedin  3 місяці тому +1

      It's really just because there is the vector DB that needs to be enabled and created and then there is the regular SQL DB for conversation history. In this video I go into more detail on getting it set up!
      ua-cam.com/video/PEI_ePNNfJQ/v-deo.html

    • @5capeg0at
      @5capeg0at 3 місяці тому

      @ thanks for replying Cole, have you used R2R?

  • @johnboekenoogen9932
    @johnboekenoogen9932 18 днів тому

    I keep getting "Problem in node 'Insert into Supabase Vectorstore'" - The document loader is not initialized. I think it is my data json code. It is not "green"

    • @ColeMedin
      @ColeMedin  18 днів тому

      Hmmm... which json isn't green exactly?

  • @tecnopadre
    @tecnopadre 3 місяці тому

    What's the difference between this an using the OpenAI API realtime?

    • @ColeMedin
      @ColeMedin  3 місяці тому +1

      @@tecnopadre Great question! The main difference is you can take this n8n agent and extend it/use it with other tools/frontends in a way you couldn't do with OpenAI. The extra customization is the main plus!

  • @charlleskleber9771
    @charlleskleber9771 3 місяці тому

    Is it possible to call a specific docuemnt name for it to analyze?
    Like analyze document "..." and give me xyz

    • @ColeMedin
      @ColeMedin  3 місяці тому

      Yes you can! But you might want to include the document title in each chunk so it will be retrieved.

  • @simonsaysboo
    @simonsaysboo 3 місяці тому

    My node that should be inserting into the Supabase Vector store isn't working... I'm getting no error from the node, the extracted input data is waiting at the input stage, the node settings are per the video, the SB project is setup, 'documents' table exists, credentials are right... but nothing gets inserted. It just says 'nde successfully executed' without doing anything. Any ideas? Thanks :)

    • @ColeMedin
      @ColeMedin  3 місяці тому

      That's really weird! It must be inserting somewhere if you aren't getting an error. Do you have any other tables in your Supabase? Also I've had this happen a couple times where it seems nothing is getting inserted but then when I refresh my page the records are there.

  • @hajduadam
    @hajduadam 3 місяці тому

    And one more :) I have been testing it with csv, and pdf. I have a user list (133 users), it looks like it only pulls in half of it randomly and never the full list. I also have the dates in yyyy-mm-dd format and it always tells me there are events from august however the first even is from October. Do you have some tips how can we make it more accurate?

    • @ColeMedin
      @ColeMedin  3 місяці тому +1

      Yeah RAG is meant more for lookups and not taking in an entire CSV! But I will be making content this month actually on how to handle CSVs better for AI Agents with other things combined with RAG!

    • @hajduadam
      @hajduadam 3 місяці тому +1

      @@ColeMedin can't wait. Keep up the good work!

    • @ColeMedin
      @ColeMedin  2 місяці тому

      Thank you!

    • @hajduadam
      @hajduadam 2 місяці тому

      ​@@ColeMedinif i use Pinecone and export xls or csv to pdf it works brilliantly and I can enquire anything from the list and the counts are correct to. You might wanna explore it in a video, could be an interesting topic.

    • @randylust7566
      @randylust7566 2 місяці тому

      @@ColeMedin Looking forward to CSV inputs! Well done!

  • @supergpt_tv
    @supergpt_tv 3 місяці тому

    hey cole, having an issue with my supabase vector database, I have created the DB in supabase with the basic script that they provide in the docs, with a different name from "documents", i have adapted everything else so I can call the new vector store. The retrieval works only sometimes, very awkward when I change the model from the vector store tool to a different one, it starts working again! But then, stops working again. Super weird, any thoughts why this is happening?
    Keep up the good content!

    • @ColeMedin
      @ColeMedin  3 місяці тому

      Thank you and wow that is super weird!
      I'm curious if restarting the conversation would also help the retrieval just like resetting the vector store. Because one thing I see happen a lot is when the AI thinks it doesn't know the answer to something, it gets stuck in the mindset within the same conversation that it doesn't know, even if you ask a different question. Happens a lot with the weaker models especially.
      Though I guess some clarification would help too! When you say it doesn't work what does that mean exactly?

    • @supergpt_tv
      @supergpt_tv 3 місяці тому

      ​@@ColeMedin thanks for the reply mate!
      so basically the I got an error with the embedding node, it throws me an error "Cannot read properties of undefined (reading 'replace')" and there is no more info on the error at all, just some generic rubbish.
      If i go to to the logs in the "embeddings" part, there is no input for the LLM, so maybe the model is not being able query the vector? but once I change the model, it works again for 3-4 times, but eventually breaks again.
      i have changed the formatting, and using split code to markdown, and using 4o instead of 4omini now and it's been working... but how can I put something in production with an error like this lol, and 4o is not cost effective and I would like to keep using 4omini hehe
      i have opened a bug report in github, but no response still, hopefully it will be soon resolved
      link - github.com/n8n-io/n8n/issues/11173
      cheers!

    • @ColeMedin
      @ColeMedin  3 місяці тому +1

      @@supergpt_tv That's really weird... I hope you get a reply with the bug report! I haven't seen this before so I'm not totally sure what it could be either.

  • @nicolasgorz8676
    @nicolasgorz8676 23 дні тому

    hello, my "insert into Supabase Vectorstore" step is not working.
    Could someone help me please?

    • @ColeMedin
      @ColeMedin  22 дні тому

      What is the error you are getting?

  • @theuniversityofthemind6347
    @theuniversityofthemind6347 3 місяці тому

    Hi Cole, love your content! I have an Alienware m18 R2 with an Intel i9-14900HX, NVIDIA RTX 4090 (24GB), 64GB RAM, and 8TB storage, but I struggle to run LLaMA 70B models. If you ever find the time, could you create a video for users like me on optimizing setups (8-bit quantization, mixed precision, etc.) to run large models efficiently? Your help would be greatly appreciated. Many Thanks!

    • @ColeMedin
      @ColeMedin  3 місяці тому

      Thank you very much! Yes even for an awesome computer like yours you'll have to do 4/8-bit quantization to run 70b models efficiently. Running local LLMs and optimizing those setups (with quantization, fine-tuning, etc.) is something like will be putting a LOT more content out around in the near future! Actually working on building my next PC next week to run some more models!

    • @theuniversityofthemind6347
      @theuniversityofthemind6347 3 місяці тому

      @@ColeMedin Hey Cole! Thanks so much for your kind reply! More content in the near future would be awesome! But would it be safe to say that with the suggested fine tuning it would be possible to get it running efficiently? If you don't mind what type of performance could i expect when doing so?

    • @ColeMedin
      @ColeMedin  3 місяці тому

      @@theuniversityofthemind6347 Of course! And fine tuning won't make the model run faster, but fine tuning makes any given LLM work better for your use case so I meant more you can use fine tuning to make a smaller model (like 11b or 32b) work just as well for your use case as a 70b model! Not guaranteed of course but with good data you certainly can

  • @merzougahmed4248
    @merzougahmed4248 Місяць тому

    why do you need two LLM models ?

    • @ColeMedin
      @ColeMedin  Місяць тому

      One LLM is the main one responding to the user and the other one handles the text retrieved from RAG!

  • @matheuslyncoln6071
    @matheuslyncoln6071 2 місяці тому

    My superbase is getting the error "Document loader is not initialized" but I think I did everything right, can you help me?

    • @ColeMedin
      @ColeMedin  2 місяці тому

      If you click into the "Document loader" node do you see a more specific error?

    • @matheuslyncoln6071
      @matheuslyncoln6071 2 місяці тому +1

      @ColeMedin I switched to qdrant and it's working great!

    • @ColeMedin
      @ColeMedin  2 місяці тому

      Okay perfect, nice!

    • @ITONexus
      @ITONexus 7 днів тому

      @@ColeMedin i get this same error, everytime i debug it just says general error. must be something with supabase. I don't have this issue with quadrant

  • @jjolla6391
    @jjolla6391 3 місяці тому +1

    i'm struggling to understand the value of n8n over simple, well-proven utilities like pdftotext, pdfimages, xlsx2csv, csvtool, tesseract-ocr, goocr, rclone, syncthing, etc ... glued together with simple scripts. I was hoping to find some AI that did all this with minimal building, but n8n still needs you to do the same heavy work .. just with other tools.

    • @ColeMedin
      @ColeMedin  3 місяці тому

      You raise a fair point! You're definitely right that n8n is really just a way to piece a lot of tools together that you could do yourself with libraries and simple scripting. But for a lot of use cases and for a lot of people, n8n just makes that easier. Especially for those who don't know how to do that kind of scripting to piece things together themselves. I will say though that I quite enjoy piecing tools together with Python code myself!

  • @JayGee1
    @JayGee1 18 днів тому

    Is there any way to make it work without Google Cloud ? Because Google wont accept my card.....

    • @ColeMedin
      @ColeMedin  18 днів тому +1

      Yes you can use local files using the "Local file trigger" in n8n instead of waiting for file uploads in Google Drive!

    • @JayGee1
      @JayGee1 5 днів тому

      @@ColeMedin Great thx a lot

  • @alvaroaraujo7945
    @alvaroaraujo7945 3 місяці тому

    Still working on this flow. may I ask: did you ever encounter a problem where 'document retrieval' output/completion goes only up to only around 300-500 tokens? I've tested it in all rag token use range, from 8k to 15k to 20k+ (by tweaking file limits)... my output seems to always be 'truncated' or limited to 300-400 tk... any clue? thanks already

    • @ColeMedin
      @ColeMedin  3 місяці тому

      Hmmm... well the documents are split into chunks when inserted into the vector DB, so maybe you are just seeing a single chunk and that is why it appears to be truncated? Or maybe I'm not quite understanding the issue you are encountering so if you could clarify that would be sweet!

    • @alvaroaraujo7945
      @alvaroaraujo7945 3 місяці тому

      @@ColeMedin so… It’s not that the retrieval was truncated (actually was pretty extensive/complete). But that my output tokens were consistently too short. Well, for now, breaking 1 big task into 2-3 smaller ones did the trick for me

    • @ColeMedin
      @ColeMedin  3 місяці тому +1

      Ohh so the actual response from the LLM was cut off? That's super weird! I haven't seen that happen before. I'm glad breaking it up worked well for you though! Maybe you were actually hitting the context limit with whatever LLM you were using.

  • @Larimuss
    @Larimuss 2 місяці тому

    The problem with these cloud workflow services is not being able to edit the code.

    • @ColeMedin
      @ColeMedin  2 місяці тому +1

      Yeah that is fair! Though you can build custom nodes with code so you can extend the functionality in any way you want through that!

  • @PrashadDey
    @PrashadDey 3 місяці тому +1

  • @digitalmole8236
    @digitalmole8236 2 місяці тому

    mate - this doens't work. every time you update a google doc it just created duplicate records - it doesn't delete the old ones

    • @ColeMedin
      @ColeMedin  2 місяці тому

      Sorry that's happening! I'm guessing the file_id addition isn't included in the document loader node in the workflow. I would download the workflow JSON I have and take a look at that! That's the node connected to and right below the Supabase inserter node.

  • @kushis4ever
    @kushis4ever 3 місяці тому

    I have been breaking my head over using n8n with free api from groq etc. None of these workflows have acceptable run times.

    • @devdaveai
      @devdaveai 3 місяці тому

      I just got groq premium and it works flawlessly! The groq api that is free is garbage.
      n8n works great with groq don't be fooled by this comment.

    • @ColeMedin
      @ColeMedin  3 місяці тому +1

      I'm surprised - I'm sorry things are fast enough for you! What kind of use case do you have?

  • @bladerf9695
    @bladerf9695 4 дні тому

    Great workflow.
    But i have an issue, the ai agent will not insert name and adress in the database. I have all did if you say. Bit it doesnt work.

    • @bladerf9695
      @bladerf9695 День тому

      Postgres Chat Memory doesn`t work, I use n8n in windows desktop docker, the database is hopefully right configurt.
      { "errno": -111, "code": "ECONNREFUSED", "syscall": "connect", "address": "127.0.0.1", "port": 5432 }
      witch parameter do you have in you node?

  • @nathamuni9435
    @nathamuni9435 6 днів тому

    13:00 ⚠⚠