Skip to content

Instantly share code, notes, and snippets.

View ebram96's full-sized avatar
🎯
GettingThingsToLife

Ebram Shehata ebram96

🎯
GettingThingsToLife
View GitHub Profile
@python273
python273 / app.py
Last active December 29, 2024 23:37
Flask Streaming Langchain Example
import os
os.environ["OPENAI_API_KEY"] = ""
from flask import Flask, Response, request
import threading
import queue
from langchain.chat_models import ChatOpenAI
from langchain.callbacks.streaming_stdout import StreamingStdOutCallbackHandler
from langchain.schema import AIMessage, HumanMessage, SystemMessage