feat(profile): add profile settings and LLM user context
This commit is contained in:
parent
db3d9514d5
commit
b99b9ed68e
25 changed files with 472 additions and 9 deletions
|
|
@ -14,6 +14,7 @@ from innercontext.api import ( # noqa: E402
|
|||
ai_logs,
|
||||
health,
|
||||
inventory,
|
||||
profile,
|
||||
products,
|
||||
routines,
|
||||
skincare,
|
||||
|
|
@ -48,6 +49,7 @@ app.add_middleware(
|
|||
|
||||
app.include_router(products.router, prefix="/products", tags=["products"])
|
||||
app.include_router(inventory.router, prefix="/inventory", tags=["inventory"])
|
||||
app.include_router(profile.router, prefix="/profile", tags=["profile"])
|
||||
app.include_router(health.router, prefix="/health", tags=["health"])
|
||||
app.include_router(routines.router, prefix="/routines", tags=["routines"])
|
||||
app.include_router(skincare.router, prefix="/skincare", tags=["skincare"])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue