Achyut Paudel
Results
1
comments of
Achyut Paudel
Yes we can do that : Here is the simple code to achieve that: ```callback_handler = AsyncIteratorCallbackHandler() llm = ChatOpenAI(temperature=0.2, callbacks=[callback_handler], streaming=True) chain = ConversationalRetrievalChain.from_llm( llm= llm, retriever= retriever, memory=memory,...