From 9700ac71bb7ccc52fa2982756ae1085426ce4037 Mon Sep 17 00:00:00 2001 From: Richard Tang Date: Mon, 9 Mar 2026 19:50:07 -0700 Subject: [PATCH] micro-fix: wrong reference for hive_coder --- core/framework/agents/queen/queen_memory.py | 2 +- core/framework/tools/queen_memory_tools.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/framework/agents/queen/queen_memory.py b/core/framework/agents/queen/queen_memory.py index 335f6bc0..fd26985e 100644 --- a/core/framework/agents/queen/queen_memory.py +++ b/core/framework/agents/queen/queen_memory.py @@ -319,7 +319,7 @@ async def consolidate_queen_memory( len(user_msg) // 4, ) - from framework.agents.hive_coder.config import default_config + from framework.agents.queen.config import default_config semantic_resp, diary_resp = await asyncio.gather( llm.acomplete( diff --git a/core/framework/tools/queen_memory_tools.py b/core/framework/tools/queen_memory_tools.py index baaf543b..a67447d2 100644 --- a/core/framework/tools/queen_memory_tools.py +++ b/core/framework/tools/queen_memory_tools.py @@ -27,7 +27,7 @@ def write_to_diary(entry: str) -> str: You do not need to include a timestamp or date heading; those are added automatically. """ - from framework.agents.hive_coder.queen_memory import append_episodic_entry + from framework.agents.queen.queen_memory import append_episodic_entry append_episodic_entry(entry) return "Diary entry recorded."