Build an agentic RAG step by step, powered by Crew AI and a local Llama 3.2

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

КОМЕНТАРІ • 19

  • @2200venkat
    @2200venkat 9 днів тому +2

    Thank you for your efforts! However, the code seems to be breaking. I recommend uploading only tested and working code, as this will help attract more interest from people.

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

    How do you edit your zoom ins and outs? Thanks!

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

    This is awesome! I have a question though. Why is it that every CrewAi video I see ops for using a notebook like app like G. Collab or Juipyter Notebook (.ipynb format) instead of an IDE? I think it's because it's easier to not install all dependencies in your environment but I could be wrong. Thanks!

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

      This is the recommend way, once you get comfortable with it, it's really great in term of modularity, reusing agents and tasks...
      To create a new CrewAI project, run the following CLI (Command Line Interface) command:
      crewai create crew
      This command creates a new project folder with the following structure:
      my_project/
      ├── .gitignore
      ├── pyproject.toml
      ├── README.md
      ├── .env
      └── src/
      └── my_project/
      ├── __init__.py
      ├── main.py
      ├── crew.py
      ├── tools/
      │ ├── custom_tool.py
      │ └── __init__.py
      └── config/
      ├── agents.yaml
      └── tasks.yaml

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

      @ yeah I’ve tried this and never worked even though I had the dependencies, hence why I also went and used .ipynb lol

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

      😂

  • @AmanYadav-nx1bd
    @AmanYadav-nx1bd 16 днів тому

    Awesome! I came across this from X and wanted to ask if this project would be a good addition to my resume as a fresher.

  • @ThoughtRipples
    @ThoughtRipples 20 годин тому

    Hello, I am new to this. is anyone getting this error?
    RuntimeError: Event loop is closed
    ERROR:root:LiteLLM call failed: litellm.APIConnectionError: OllamaException - [Errno 61] Connection refused

  • @dhirajda...6316
    @dhirajda...6316 16 днів тому

    Is it possible to integrate an Api instead of fire crawl

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

      @@dhirajda...6316 yes, just like I created a custom tool for firecrawl you can do for any API

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

    keep going💥

  • @samudralasanthosh5196
    @samudralasanthosh5196 17 днів тому

    Hi Akshay, great video! I would like to know how would it respond to queries like Hi, Hello, Bye or something generic which doesn’t require fetching something from the internet or from a document. How would you deal with this?

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

      Couple of things can be done here, either we can add this to the description of the retriever agent or create another agent that first tries to get the answer from the llm itself, then self-reflects on it if it's correct then respond back to the user with this else take a decision to delegate the task to retriever agent.
      But it should doable.
      I would avoid creating new agent and try to add this instruction in the retriever agent first.

  • @Saurav-xx
    @Saurav-xx 15 днів тому

    👍

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

    this project doesn't even work. so many errors on my environment. can you help me out with the issues. it says [ImportError: cannot import name 'FireCrawlWebSearchTool' from 'src.agentic_rag.tools.custom_tool' ]