| 22 | |
| 23 | @dataclass(slots=True) |
| 24 | class TaskRequest: |
| 25 | benchmark: BenchmarkItem |
| 26 | model: ModelSpec |
| 27 | ip_addr: str |
| 28 | prompts: PromptBundle |
| 29 | workflow: WorkflowDefinition |
| 30 | prompt_bundle_name: str = "default" |
| 31 | config: AppConfig = field(default_factory=AppConfig) |
| 32 | |
| 33 | |
| 34 | @dataclass(slots=True) |
no outgoing calls
no test coverage detected