mirror of
https://github.com/open-jarvis/OpenJarvis.git
synced 2026-07-28 14:07:55 +00:00
Root cause: _run_tick and _immediate_tick called SystemBuilder().build() which picks the first model from Ollama (qwen3.5:35b) instead of the model the server was started with (e.g. qwen3.5:9b). A 0.6B query was running on a 35B model, causing 5+ minute stalls. Fix: reuse the server's engine/model from app.state via a lightweight system facade instead of rebuilding the full JarvisSystem. Also: - Add detailed logging to AgentExecutor (model, pending messages, timing, content length, errors with tracebacks) - Add logging to immediate tick lifecycle - Remove Queue button from Interact tab (single Send button) - Enter key now sends immediately instead of queueing Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>