refactor(honcho): remove local memory mode

The "local" memoryMode was redundant with enabled: false. Simplifies
the mode system to hybrid and honcho only.
This commit is contained in:
Erosika 2026-03-12 16:23:34 -04:00
parent f896bb5d8c
commit ae2a5e5743
8 changed files with 22 additions and 49 deletions

View file

@ -1210,11 +1210,10 @@ class TestSystemPromptStability:
class TestHonchoActivation:
def test_local_mode_skips_honcho_init(self):
def test_disabled_config_skips_honcho_init(self):
hcfg = HonchoClientConfig(
enabled=True,
enabled=False,
api_key="honcho-key",
memory_mode="local",
peer_name="user",
ai_peer="hermes",
)
@ -1327,9 +1326,8 @@ class TestHonchoActivation:
def test_inactive_honcho_strips_stale_honcho_tools(self):
hcfg = HonchoClientConfig(
enabled=True,
enabled=False,
api_key="honcho-key",
memory_mode="local",
peer_name="user",
ai_peer="hermes",
)