Shreya Bhadwal
Shreya Bhadwal
What error do you get when it crashes?
Hi, This is referenced in #3256. Replace from langchain.callbacks.base import AsyncCallbackManager with from langchain.callbacks.manager import AsyncCallbackManager and it should work. Works for me. I think there's an overhaul of callbacks...
@dnrico1 @La1c @gabacode When are y'all getting the error? For instance, I am getting it through my websocket app deployed on Azure (it's a chatbot application). Weirdly enough, I don't...
@Binb1 do the timeouts happen every time for you or occasionally? Also, are you using websockets or SSE?
@Binb1 I experience the exact same behavior. It works well if I restart the app, and then after a few minutes when I try again I get timeouts. Very weird....
Nope nothing yet @Binb1 @ColinTitahi are y'all using async calls to OpenAI?
When I am trying to do this, my agent is never referring to the sources I am giving in my QA with sources tool. How did you pass your input...
I was able to accomplish what I wanted using the [ConversationalRetrievalChain](https://python.langchain.com/en/latest/modules/chains/index_examples/chat_vector_db.html?highlight=chat%20index#conversationalretrievalchain-with-question-answering-with-sources). According to the documentation itself, "The only difference between this chain and the [RetrievalQAChain](https://python.langchain.com/en/latest/modules/chains/index_examples/vector_db_qa.html) is that this allows for...