Skip to content

Instantly share code, notes, and snippets.

View jarvisx17's full-sized avatar

Jignesh Patel jarvisx17

View GitHub Profile
@python273
python273 / app.py
Last active June 16, 2024 11:09
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