Merge pull request #6100 from aden-hive/feature/integration-extended
Release / Create Release (push) Waiting to run

micro-fix: wrong reference for hive_coder
This commit is contained in:
RichardTang-Aden
2026-03-09 19:52:35 -07:00
committed by GitHub
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."