micro-fix: wrong reference for hive_coder

This commit is contained in:
Richard Tang
2026-03-09 19:50:07 -07:00
parent c3bea8685a
commit 9700ac71bb
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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(
+1 -1
View File
@@ -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."