Muhammad Safwan

Results 1 comments of Muhammad Safwan

@mrcaipeng I was facing the same issue. I resolved it like this llm = OpenAI(streaming=True, temperature=0) llm.callback_manager = StreamingStdOutCallbackHandler() instead of passing callbacks in Constructor I assigned it explicitly and...