Add dedicated page for running Ollama models

This commit is contained in:
Luca Sacchi Ricciardi
2026-04-25 11:36:05 +02:00
parent 2f591e55ce
commit 1aee51b0d6
6 changed files with 327 additions and 0 deletions
+6
View File
@@ -62,6 +62,12 @@ async def dashboard():
return FileResponse(templates_path / "index.html")
@app.get("/models-running")
async def models_running_page():
"""Pagina dedicata ai modelli residenti in memoria (ollama ps)."""
return FileResponse(templates_path / "models_running.html")
@app.get("/favicon.ico", include_in_schema=False)
async def favicon():
"""Favicon dell'applicazione."""