diff --git a/navi/main.py b/navi/main.py index 792eb60..9f635dc 100644 --- a/navi/main.py +++ b/navi/main.py @@ -59,3 +59,8 @@ @app.get("/debug", include_in_schema=False) async def debug() -> FileResponse: return FileResponse("debug/index.html", headers={"Cache-Control": "no-store"}) + + +@app.get("/debug/eval", include_in_schema=False) +async def debug_eval() -> FileResponse: + return FileResponse("debug/eval/index.html", headers={"Cache-Control": "no-store"}) diff --git a/navi/profiles/developer/config.json b/navi/profiles/developer/config.json index b0ca59f..e311637 100644 --- a/navi/profiles/developer/config.json +++ b/navi/profiles/developer/config.json @@ -11,7 +11,7 @@ "llm_backend": "ollama", "model": [ "gemma4:31b-cloud", - "qwen3.6:35b", + "qwen3.6:27b", "gemma4:26b-a4b-it-q4_K_M" ], "temperature": 0.45, diff --git a/navi/profiles/discuss/config.json b/navi/profiles/discuss/config.json index 6844811..20b51a0 100644 --- a/navi/profiles/discuss/config.json +++ b/navi/profiles/discuss/config.json @@ -5,7 +5,7 @@ "short_description": "Creative Q&A and idea discussion — best for open questions, brainstorming, and exploring concepts.", "model": [ "gemma4:31b-cloud", - "qwen3.6:35b", + "qwen3.6:27b", "gemma4:26b-a4b-it-q4_K_M" ], "temperature": 0.85, diff --git a/navi/profiles/secretary/config.json b/navi/profiles/secretary/config.json index a9f0d3b..536a5fc 100644 --- a/navi/profiles/secretary/config.json +++ b/navi/profiles/secretary/config.json @@ -11,7 +11,7 @@ "llm_backend": "ollama", "model": [ "gemma4:31b-cloud", - "qwen3.6:35b", + "qwen3.6:27b", "gemma4:26b-a4b-it-q4_K_M" ], "temperature": 0.65, diff --git a/navi/profiles/server_admin/config.json b/navi/profiles/server_admin/config.json index 80d6c70..dd83f8c 100644 --- a/navi/profiles/server_admin/config.json +++ b/navi/profiles/server_admin/config.json @@ -11,7 +11,7 @@ "llm_backend": "ollama", "model": [ "gemma4:31b-cloud", - "qwen3.6:35b", + "qwen3.6:27b", "gemma4:26b-a4b-it-q4_K_M" ], "temperature": 0.30, diff --git a/navi/profiles/tool_developer/config.json b/navi/profiles/tool_developer/config.json index 9765021..6ac9e4e 100644 --- a/navi/profiles/tool_developer/config.json +++ b/navi/profiles/tool_developer/config.json @@ -11,7 +11,7 @@ "llm_backend": "ollama", "model": [ "gemma4:31b-cloud", - "qwen3.6:35b", + "qwen3.6:27b", "gemma4:26b-a4b-it-q4_K_M" ], "temperature": 0.35,