Merge branch 'feat/multiple-receivers' into feat/monitoringpage-cb
# Conflicts: # src/control_backend/core/agent_system.py # src/control_backend/schemas/internal_message.py
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
from collections.abc import Iterable
|
||||
|
||||
from pydantic import BaseModel
|
||||
|
||||
|
||||
@@ -11,7 +13,7 @@ class InternalMessage(BaseModel):
|
||||
:ivar thread: An optional thread identifier/topic to categorize the message (e.g., 'beliefs').
|
||||
"""
|
||||
|
||||
to: str
|
||||
to: str | Iterable[str]
|
||||
sender: str | None = None
|
||||
body: str
|
||||
thread: str | None = None
|
||||
|
||||
Reference in New Issue
Block a user