SurfSense/surfsense_backend/tests/unit/agents/new_chat
CREDO23 8ae190a11d refactor(agents): move MAC middleware impls out of shared kernel
knowledge_search, memory_injection and scoped_model_fallback no longer
belong in the cross-agent kernel (app/agents/shared/middleware): they are
consumed only inside multi_agent_chat. Relocate each impl next to the
builder that uses it:

- knowledge_search.py -> multi_agent_chat/shared/middleware/ (genuinely
  shared: its _render_priority_message feeds kb_context_projection, used by
  both the main agent and the KB subagent)
- memory_injection.py -> multi_agent_chat/shared/middleware/ (beside its
  memory.py builder)
- scoped_model_fallback.py -> multi_agent_chat/shared/middleware/resilience/
  (beside fallback.py/bundle.py)

Impls moved verbatim (git rename). Builders/consumers now import the local
sibling; main_agent knowledge_priority imports the new shared path; shared
middleware barrel trimmed.

Tests: repoint imports; convert the knowledge_search monkeypatch targets
from brittle dotted-string form to object-based patching (monkeypatch.setattr
on the imported module), which is robust to import ordering. No behavior
change.
2026-06-05 12:04:31 +02:00
..
middleware
prompts
tools
__init__.py
test_action_log.py
test_agent_cache.py
test_busy_mutex.py
test_compaction.py
test_context_editing.py
test_dedup_tool_calls.py
test_default_permissions_layering.py
test_desktop_safety_rules.py
test_doom_loop.py
test_feature_flags.py
test_hitl_auto_approve.py
test_memory_response_content.py
test_mention_resolver.py
test_noop_injection.py
test_otel_span.py
test_path_resolver.py
test_permission_middleware.py
test_permissions.py
test_plugin_loader.py
test_prompt_caching.py
test_retry_after.py
test_skills_backends.py
test_state_reducers.py
test_tool_call_repair.py