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?
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,
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.
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?
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 !
best open source for LLM. thanks man!
which part of system extract the search term from the user input?
"Autonomous Rag" sounds like a Marvel super-villain...
Very interesting. Can this use Ollama? Or do tools not work well there?
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?
Can I use any open source llm like llama or mistral instead of openai gpt
yes it can use any llm, but the results might not be as good :)
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
can we use SQLTools with Microsoft SQL Server database ?
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.
I got the answer at 6:01
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,
i am gonna use it alot, thank you
you could just use kitchenAI too, though, hehe 💻
Make a video on open source models and we have images and tables in PDFs
can you please tell how to use openapi key for free
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.
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?