| 8 | |
| 9 | |
| 10 | class TaskOutput(BaseModel): |
| 11 | index: Union[None, SampleIndex] = None |
| 12 | status: SampleStatus = SampleStatus.RUNNING |
| 13 | result: JSONSerializable = None |
| 14 | history: Union[None, List[ChatHistoryItem]] = None |
| 15 | |
| 16 | |
| 17 | class TaskSampleExecutionResult(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected