How to Build Custom AI Chatbots 🔥(No Code)

แชร์
ฝัง
  • เผยแพร่เมื่อ 6 ต.ค. 2024

ความคิดเห็น • 31

  • @Suzanne-j4c
    @Suzanne-j4c ปีที่แล้ว +3

    This is great, exactly what I’ve been looking for thank you❤

    • @no-code
      @no-code  ปีที่แล้ว

      Thanks for watching!

  • @rayfellers
    @rayfellers ปีที่แล้ว +1

    Fortunately using CC I can follow this. In future videos please increase the recording audio. With my computer's audio at maximum I can barely hear this. Some of us are severely hearing impaired.

    • @no-code
      @no-code  ปีที่แล้ว

      Hi Ray! Thanks for the feedback and will try to increase recording volume in future vids!

  • @rayfellers
    @rayfellers ปีที่แล้ว +1

    Very detailed to the point where I think I might be able to set one up myself. Probably what I'd want is a method to index a website by crawling the pages. If this can be done from a sitemap, I missed that part.

    • @no-code
      @no-code  ปีที่แล้ว +2

      Hi Ray, will cover a set up like that in a future vid, would need to use a vector database, something like Pinecone, to enable functionality to crawl a full website and essentially make it "chattable"

  • @justmalhar
    @justmalhar ปีที่แล้ว +1

    Appreciate your work mate! Kudos from the states

    • @no-code
      @no-code  ปีที่แล้ว

      Thank you!

  • @chrispodpodkowa
    @chrispodpodkowa 2 หลายเดือนก่อน

    Wow man, Thanks for this.
    Now can you just make a bunch of different bots and sell them to other businesses and install on multiple website?

  • @ahmedkagabo
    @ahmedkagabo ปีที่แล้ว +1

    Good to see you again!

    • @no-code
      @no-code  ปีที่แล้ว

      Thanks Ahmed, same to you!

  • @launchpedia
    @launchpedia 8 หลายเดือนก่อน +1

    I'm not able to see the document field in conversation chain. Has some updated changed?

    • @Victoryleke
      @Victoryleke 19 วันที่ผ่านมา

      how were you able to solve this

  • @fbravoc9748
    @fbravoc9748 ปีที่แล้ว +1

    Great tutorial!!! Thanks

    • @no-code
      @no-code  ปีที่แล้ว +1

      Thanks for the nice comment and for watching!

  • @nwnews8441
    @nwnews8441 8 หลายเดือนก่อน

    Thanks for the video. Everything worked fine, until the moment when I type into my local host chat window. I get the message: "429 You exceeded your current quota, please check your plan and billing details." I've been getting this for the past three days with each try and this is the first time I'm doing this.

  • @Svun567
    @Svun567 6 หลายเดือนก่อน

    How can you gate the chat bot? So people have to pay to access talking to a bot that has all my knowledge base inside of it

  • @richardhubbard4239
    @richardhubbard4239 ปีที่แล้ว

    Thanks for this very helpful and good detailed description. I followed it through but when I got to the point of testing the chatbot for the first time I got the following message: This model's maximum context length is 4097 tokens. However, your messages resulted in 11040 tokens. Please reduce the length of the messages.
    Any thoughts on how to solve this?

    • @timburnett8192
      @timburnett8192 9 หลายเดือนก่อน

      I had this issue too, I reduced the text file down to a sentence and it still complains.
      Did you resolve this?

  • @ajharrell
    @ajharrell 9 หลายเดือนก่อน

    Thanks for this video. I am running into issues downloading this on apple macbook . Getting errors after running in the terminal. is there a workaround?

    • @ajharrell
      @ajharrell 9 หลายเดือนก่อน

      Solved. No matter the error message follow by "npx flowise start" and it will successfully go through and create localhost. Thanks again!

  • @rayfellers
    @rayfellers ปีที่แล้ว

    Can't install flowise using this command. npm install -g flowise 'npm' is not recognized as an internal or external command, operable program or batch file.

    • @no-code
      @no-code  ปีที่แล้ว

      Hi Ray! I asked ChatGPT what might be causing the issue here, and it looks like you may not have installed node on your system which is the first step in the video... this is what ChatGPT says:
      The error message 'npm' is not recognized as an internal or external command, operable program or batch file. indicates that npm (Node Package Manager) is not installed on your system, or it's not added to your system's PATH.
      Here's how you can resolve this:
      Check if Node.js and npm are Installed:
      Open a terminal or command prompt and type:
      node -v
      and
      npm -v
      If you get version numbers for both commands, it means they are installed but not added to the PATH. If you get an error for both or one of them, you need to install Node.js and npm.
      Install Node.js and npm:
      If you don't have Node.js and npm installed, you can download and install them from the official Node.js website. The npm comes bundled with Node.js, so you don't need to install it separately.
      Add npm to PATH:
      If Node.js and npm are installed but not recognized, it's likely a PATH issue. Here's how you can add them to your PATH:
      Windows:
      Right-click on the Windows icon and select 'System'.
      Click on 'Advanced system settings'.
      Click on the 'Environment Variables' button.
      Under 'System Variables', find the 'Path' variable and click 'Edit'.
      Click 'New' and add the path to the directory where Node.js and npm are installed. By default, it should be C:\Program Files
      odejs\.
      Click 'OK' to close all the windows.
      macOS/Linux:
      Ensure that /usr/local/bin (or the directory where Node.js and npm are installed) is in your PATH. You can add it to your shell profile file (like .bashrc, .bash_profile, or .zshrc) with:
      bash
      Copy code
      export PATH=$PATH:/usr/local/bin
      Restart Terminal/Command Prompt:
      After making changes, especially to the PATH, you should restart your terminal or command prompt session to ensure the changes take effect.
      Try Installing Again:
      Once you've ensured that npm is accessible from the command line, you can try installing flowise again:
      Copy code
      npm install -g flowise
      If you follow these steps and still face issues, please provide more details about your operating system and the exact steps you've taken, and I'll be happy to help further!

  • @kenny1394
    @kenny1394 ปีที่แล้ว

    Can i deploy it on my ubuntu VPS?

    • @no-code
      @no-code  ปีที่แล้ว +1

      According to chatGPT you can, but maybe it is hallucinating 😂 you might try it and let us know if it works?

  • @bubbles5kimba
    @bubbles5kimba ปีที่แล้ว +1

    Hi. I am very interested in creating custom AI chatbots trained on user-controlled data. I have tried to visit your website via different browsers (Chrome and Firefox) and in a private window in Chrome, but I get a message that the site can't be reached. Please help.

    • @no-code
      @no-code  ปีที่แล้ว

      Looks like my domain name didn't renew automatically, all good now, thanks for letting me know!

  • @thiurgh
    @thiurgh ปีที่แล้ว

    Hi Jamie, is your community still active? I requested access a few weeks ago (and still waiting for a response). 😢

    • @no-code
      @no-code  ปีที่แล้ว +1

      Hi Thijs! Have been a bit out of action due to having a second baby recently, sorry for the delay, you should have a link in your inbox now, enjoy and thanks for watching!!

    • @halluzinogen533
      @halluzinogen533 ปีที่แล้ว

      @@no-code congrats, and all the best to you and your fam!

    • @no-code
      @no-code  ปีที่แล้ว

      Thank you!