Il Joong Kim
Il Joong Kim
> > Is there any docs or related issues for caching the Azure chat open ai responses i cannot find one. > > I found a possible solution from the...
I'm using Azure OpenAI and I had the same issue. Here is my solution. You can specify `default_chain` in `MultiRetrievalQAChain.from_retrievers`. see following code snippet. ``` llm = AzureChatOpenAI(temperature=0.0, deployment_name='gpt-35-turbo') #...
@shubham184, It looks like it's a different error, that is, parsing error. Your questions or description in `retriever_infos` may produce an unexpected output. Try this example first: https://github.com/hwchase17/langchain/blob/master/docs/modules/chains/examples/multi_retrieval_qa_router.ipynb To test,...