| 138 | |
| 139 | |
| 140 | class TracerDB(BaseModel): |
| 141 | timestamp: datetime |
| 142 | trace_id: str |
| 143 | config_id: str |
| 144 | round: int |
| 145 | current_task: str |
| 146 | module_type: str |
| 147 | history_messages: List[Message] |
| 148 | debug_info: DebugInfo |
| 149 | |
| 150 | |
| 151 | class ModuleType(Enum): |
nothing calls this directly
no outgoing calls
no test coverage detected