fix: complete pipeline working

User interrupts still need to be tested.

ref: N25B-429
This commit is contained in:
2026-01-07 17:13:58 +01:00
parent 3189b9fee3
commit 3d49e44cf7
8 changed files with 276 additions and 59 deletions

View File

@@ -131,6 +131,7 @@ class BaseAgent(ABC):
:param message: The message to send.
"""
target = AgentDirectory.get(message.to)
message.sender = self.name
if target:
await target.inbox.put(message)
self.logger.debug(f"Sent message {message.body} to {message.to} via regular inbox.")