mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-21 07:51:55 +00:00

* add writer impl * add graphic designer * add worker and auditor, remove writer * add worker, add simple test main
22 lines
319 B
Python
22 lines
319 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class ArticleCreated(BaseModel):
|
|
user_id: str
|
|
article: str
|
|
|
|
|
|
class GraphicDesignCreated(BaseModel):
|
|
user_id: str
|
|
image_uri: str
|
|
|
|
|
|
class AuditText(BaseModel):
|
|
user_id: str
|
|
text: str
|
|
|
|
|
|
class AuditorAlert(BaseModel):
|
|
user_id: str
|
|
auditor_alert_message: str
|