feat(mma): Implement WorkerContext model

This commit is contained in:
2026-02-26 19:59:51 -05:00
parent ccd286132f
commit ee719296c4
2 changed files with 32 additions and 1 deletions

View File

@@ -20,3 +20,12 @@ class Track:
id: str
description: str
tickets: List[Ticket] = field(default_factory=list)
@dataclass
class WorkerContext:
"""
Represents the context provided to a Tier 3 Worker for a specific ticket.
"""
ticket_id: str
model_name: str
messages: List[dict]