langchain
langchain copied to clipboard
feat(Add FastAPI + Vercel deployment option):
Update deployments doc with langcorn API server
API server example
from fastapi import FastAPI
from langcorn import create_service
app: FastAPI = create_service(
"examples.ex1:chain",
"examples.ex2:chain",
"examples.ex3:chain",
"examples.ex4:sequential_chain",
"examples.ex5:conversation",
"examples.ex6:conversation_with_summary",
)
More examples: https://github.com/msoedov/langcorn/tree/main/examples
Who can review?
@hwchase17