IMPROVEMENT default docs url root

This commit is contained in:
Erick Friis
2023-11-13 13:29:07 -08:00
parent b46f88d364
commit dc7e597363

View File

@@ -1,7 +1,7 @@
from fastapi import FastAPI
from langserve import add_routes
app = FastAPI()
app = FastAPI(docs_url="/")
# Edit this to add the chain you want to add
add_routes(app, NotImplemented)