Skip to main content

All 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 ...
mehmet's user avatar
  • 39
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 ...
DaviesTobi alex's user avatar
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 ...
Rhett's user avatar
  • 1
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, ...
oettam_oisolliv's user avatar
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 ...
kaanyvz's user avatar
  • 223
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 ...
vloubes's user avatar
  • 325