mirror of
https://github.com/microsoft/autogen.git
synced 2026-02-12 05:05:34 -05:00
21 lines
284 B
Python
21 lines
284 B
Python
from dataclasses import dataclass
|
|
|
|
from agnext.components.models import LLMMessage
|
|
|
|
|
|
@dataclass
|
|
class BroadcastMessage:
|
|
content: LLMMessage
|
|
|
|
|
|
@dataclass
|
|
class RequestReplyMessage:
|
|
pass
|
|
|
|
|
|
@dataclass
|
|
class OrchestrationEvent:
|
|
timestamp: str
|
|
source: str
|
|
message: str
|