LangChain - LLM and Chat Model Integration
What is the issue with this LangChain code snippet when
streaming=True is set?
llm = OpenAI(streaming=True)
result = llm.generate("Hello")
print(result)