An example of how to deploy a Flask application with LangChain with Restack.
ℹ️ OpenAI models
In this example, we chose OpenAI's models for the sake of simplicity, but you're free to choose the models you prefer as LangChain provides support for other models as well. In that case, we recommend you remove the OPENAI_API_KEY
environment variable and the relevant application code.
To ensure your successful deployment, set the following environment variables:
# Get it from https://platform.openai.com/account/api-keys
OPENAI_API_KEY=<YOUR_API_KEY>
LangChain framework is intended to develop language model-powered applications that are data-aware, agentic, and differentiated. More information is available on the LangChain website.