-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Description
Describe the bug
Goose unexpectedly cancels a multi-step tool call (glob → text_editor) even though the local LLM backend successfully completed its task. This appears to be an internal orchestration issue, possibly a timeout, rather than a crash or LLM failure.
To Reproduce
Steps to reproduce the behavior:
Start Goose and a local LLM backend (Ollama or llama.cpp).
Use the provided prompt to initiate a task that requires analyzing and potentially editing a file (e.g., mod_api.gd).
Goose begins the task, but the tool-calling loop is interrupted midway through.
An "Execution error" message is displayed in the UI, and the Goose logs show a task cancellation (srv cancel_tasks).
Expected behavior
Goose should allow the local LLM enough time to complete its response and should not cancel the task if the LLM backend returns a successful response code. The tool-calling loop should continue as orchestrated.
Screenshots
(Attach screenshots of the Goose UI showing the "Execution error" and your terminal logs showing the LLM backend's successful response followed by Goose's cancel_tasks log.)
Please provide following information:
OS & Arch: Garuda Linux DGE (Dr460nized Gaming Edition) on x86_64
Interface: UI
Version: v1.2.0
Extensions enabled: Computer Controller (implied by glob and text_editor tool calls)
Provider & Model: Local LLM via Ollama or llama.cpp - Qwen3-Coder-30B-A3B-Instruct-UD-Q5_K_XL.gguf
Additional context
The LLM backend logs show that the evaluation was completed successfully, but Goose's logs indicate the task was canceled internally. This points to a potential disconnect or timeout issue within Goose, as it is canceling the task before it can receive and process the LLM's response.
Full Prompt Used:
Please analyze the current state of mod_api.gd and tell me:
- What dependency-related code exists (if any)
- Are there any syntax errors or incomplete functions?
- Is the basic mod loading still functional?
- What needs to be fixed or completed?
If there are issues, please fix them and ensure the core mod system still works.