From 58fe97c89492c63a9cda01c53d5fd0927b603da6 Mon Sep 17 00:00:00 2001 From: Lars Date: Tue, 2 Sep 2025 11:19:25 +0200 Subject: [PATCH] app/main.py aktualisiert --- app/main.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index 4d1b1bf..cfaef5f 100644 --- a/app/main.py +++ b/app/main.py @@ -1,12 +1,14 @@ """ -Version 0.1 +Version 0.2 """ from __future__ import annotations + from fastapi import FastAPI from .config import get_settings from .routers.embed_router import router as embed_router from .routers.qdrant_router import router as qdrant_router + def create_app() -> FastAPI: app = FastAPI(title="mindnet API", version="0.1.0") s = get_settings() @@ -19,4 +21,5 @@ def create_app() -> FastAPI: app.include_router(qdrant_router) return app + app = create_app()