Spaces:
Runtime error
Runtime error
File size: 252 Bytes
6fce4ec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from __future__ import annotations
from fastapi import FastAPI
from .router import router
__all__ = ["create_app"]
def create_app() -> FastAPI:
app = FastAPI(title="LLM Chat API", version="1.0.0")
app.include_router(router)
return app
|