All Questions
6 questions
0
votes
0
answers
20
views
Index type 0x73726576 ("vers") not recognized
I have a chat bot app that I can run without any problem in my local environment.
I can both run it locally on pycharm and I can run a docker container locally again. then I deploy it to koyeb using ...
0
votes
1
answer
417
views
Tooling with Langchain Bedrock for RAG AI-Chat Generation
I have a function that takes in a Langugaue Model, a vector store, question and tools; and returns a response, at the moment the tools argument is not being added because based on this example the ...
0
votes
1
answer
207
views
Retrieving relevant documents for specific queries
I am trying to retrieve the top 5 relevant documents related to a user's query using the RAG-Token model. I'm using a custom knowledge base and I tried adjusting the retrieval parameters.
This is the ...
0
votes
0
answers
49
views
How to set graceful stopping conditions in pyautogen
I have a group chat that seems to work quite well but i am strugglying to stop it gracefully. In particular, with this groupchat:
groupchat = GroupChat(
agents=[user_proxy, engineer_agent, ...
5
votes
0
answers
213
views
RAG model chat history does not work properly
I am currently trying to develop a sample project by learning RAG. In this code, I aim to chat with a document in Pinecone and while doing this, I try to keep the spoken conversations. These chat ...
2
votes
2
answers
2k
views
Using OpenAI API for answering questions about csv file
I'm starting with OpenAI API and experimenting with langchain. I have a .csv file with approximately 1000 rows and 85 columns with string values. I found some beginner article that I followed and have ...