fix some stuff (#12292)

Co-authored-by: Erick Friis <erick@langchain.dev>
This commit is contained in:
Harrison Chase
2023-10-26 13:30:36 -07:00
committed by GitHub
parent 6ce276e099
commit 9ce38726a2
21 changed files with 17 additions and 3033 deletions

View File

@@ -0,0 +1,12 @@
from fastapi import FastAPI
from langserve import add_routes
app = FastAPI()
# Edit this to add the chain you want to add
add_routes(app, NotImplemented)
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8001)