feat(): salary prediction

This commit is contained in:
gitgernit
2025-11-22 19:06:02 +03:00
parent a06c83cb18
commit 38dbfc25ac
6 changed files with 219 additions and 46 deletions
+2 -2
View File
@@ -14,7 +14,7 @@ from fastapi.middleware.cors import CORSMiddleware
from template_project.ml.configuration import load_configuration
from template_project.ml.ioc.make import make_ioc
from template_project.ml.routes import embedding, healthcheck, predict
from template_project.ml.routes import embed, healthcheck, predict
LOG_CONFIG: Final = {
"version": 1,
@@ -55,7 +55,7 @@ def make_asgi_application(
allow_headers=["*"],
)
app.include_router(healthcheck.router)
app.include_router(embedding.router)
app.include_router(embed.router)
app.include_router(predict.router)
setup_dishka(container=ioc, app=app)