Autonomous RAG | The next evolution of RAG AI Assistants

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 ม.ค. 2025

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

  • @christopheboucher127
    @christopheboucher127 8 หลายเดือนก่อน +4

    OMG thanks a lot ! I was trying to manage how to build that with my low programming skills.. And there is so more in your solution... Thanks a lot !

  • @alextiger548
    @alextiger548 7 หลายเดือนก่อน

    best open source for LLM. thanks man!

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

    which part of system extract the search term from the user input?

  • @jjgravelle
    @jjgravelle 8 หลายเดือนก่อน +4

    "Autonomous Rag" sounds like a Marvel super-villain...

  • @dr.mikeybee
    @dr.mikeybee 5 หลายเดือนก่อน

    Very interesting. Can this use Ollama? Or do tools not work well there?

  • @SteveMcLaughlin-p6j
    @SteveMcLaughlin-p6j 8 หลายเดือนก่อน

    This is great! Is there a way to add a lot of documents (hundreds or thousands) into the vector database so that we can have the agent query a large corpus?

  • @JK_1-995
    @JK_1-995 8 หลายเดือนก่อน +4

    Can I use any open source llm like llama or mistral instead of openai gpt

    • @phidata
      @phidata  8 หลายเดือนก่อน +3

      yes it can use any llm, but the results might not be as good :)

  • @cagataydemirbas7259
    @cagataydemirbas7259 7 หลายเดือนก่อน

    I uploaded research papers as pdf but unfortunately the rag tool didn’t work well. I kept trying with different papers and the results were so bad

  • @alextiger548
    @alextiger548 7 หลายเดือนก่อน

    can we use SQLTools with Microsoft SQL Server database ?

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

    Can we show us how can weight on the random between the three sources ?. I want to add more weights on the the knowledge base.

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

      I got the answer at 6:01

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

    Hello. This is a great tool. I’m new to coding but logically I completely follow you. Would you be able to assist me in where to find instructions for how to add ‘text’ as an option to go along with the correct ‘pdf’ option you mentioned? Thank you,

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

    i am gonna use it alot, thank you

  • @KitchenAIdev
    @KitchenAIdev 2 หลายเดือนก่อน +1

    you could just use kitchenAI too, though, hehe 💻

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

    Make a video on open source models and we have images and tables in PDFs

  • @himanshi191
    @himanshi191 3 หลายเดือนก่อน

    can you please tell how to use openapi key for free

    • @phidata
      @phidata  3 หลายเดือนก่อน

      Hello @himanshi191 👋
      OpenAI's API key is not available for free. They offer a pricing structure based on usage and you'll need to create an account and provide billing details to obtain an API key.

  • @hiteshpant6875
    @hiteshpant6875 20 วันที่ผ่านมา

    Every time I run a query in my chatbot, I keep getting this error, though I do get the response but this error is persistent:
    ERROR Error during hybrid search: API error occurred: Status 401
    {
    “message”:“No API key found in request”,
    “request_id”:“8213516cfcd4be641a55af759bfeea76”
    }
    knowledge_base = PDFKnowledgeBase(
    path=pdf_directory_path,
    vector_db=PgVector(
    table_name="v2_health_insurace_data",
    db_url=db_url,
    search_type=SearchType.hybrid,
    embedder=MistralEmbedder()
    ),
    chunking_strategy=DocumentChunking(chunk_size=1024, overlap=20),
    reader=PDFReader(chunk=True), # Optional: Configure the PDFReader as needed
    )
    How do I resolve this?