Compare commits

...

1 Commits

Author SHA1 Message Date
Erick Friis
dc7e597363 IMPROVEMENT default docs url root 2023-11-13 13:29:07 -08:00

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)