Merge pull request #2387 from cirim-au/fix/manage-memory-always-available

fix(tool_index): add manage_memory to ALWAYS_AVAILABLE
This commit is contained in:
Nicholai 2026-06-05 02:14:10 -06:00 committed by GitHub
commit 4df4cfeaff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -40,6 +40,10 @@ ALWAYS_AVAILABLE = frozenset({
"list_served_models", "stop_served_model",
# Generic API loopback — the catch-all when no named tool fits.
"app_api",
# Memory is ambient — "remember this" can follow any message regardless
# of topic. Without this, RAG drops it and the agent falls back to
# app_api /api/memory/add which fails with 422 on first attempt.
"manage_memory",
})
# Tools that the Personal Assistant always has access to during scheduled