feat: able to send to multiple receivers #42

Merged
k.marinus merged 4 commits from feat/multiple-receivers into dev 2026-01-15 09:26:14 +00:00
Showing only changes of commit d7d697b293 - Show all commits

View File

@@ -7,7 +7,7 @@ class InternalMessage(BaseModel):
""" """
Standard message envelope for communication between agents within the Control Backend. Standard message envelope for communication between agents within the Control Backend.
:ivar to: The name of the destination agent. :ivar to: The name(s) of the destination agent(s).
:ivar sender: The name of the sending agent. :ivar sender: The name of the sending agent.
:ivar body: The string payload (often a JSON-serialized model). :ivar body: The string payload (often a JSON-serialized model).
:ivar thread: An optional thread identifier/topic to categorize the message (e.g., 'beliefs'). :ivar thread: An optional thread identifier/topic to categorize the message (e.g., 'beliefs').