fix(root): update welcome message to clarify API context
Browse files
main.py
CHANGED
|
@@ -41,4 +41,4 @@ app.include_router(memory.router, prefix="/api/memories", tags=["Memory Manageme
|
|
| 41 |
# --- Root Endpoint ---
|
| 42 |
@app.get("/", tags=["Health"])
|
| 43 |
async def read_root():
|
| 44 |
-
return {"status": "ok", "message": "Welcome to Makhfi AI!"}
|
|
|
|
| 41 |
# --- Root Endpoint ---
|
| 42 |
@app.get("/", tags=["Health"])
|
| 43 |
async def read_root():
|
| 44 |
+
return {"status": "ok", "message": "Welcome to Makhfi AI API!"}
|