获取批量任务日志
(self, batch_id: str)
| 327 | return _batch_status.get(batch_id) |
| 328 | |
| 329 | def get_batch_logs(self, batch_id: str) -> List[str]: |
| 330 | """获取批量任务日志""" |
| 331 | with _get_batch_lock(batch_id): |
| 332 | return _batch_logs.get(batch_id, []).copy() |
| 333 | |
| 334 | def is_batch_cancelled(self, batch_id: str) -> bool: |
| 335 | """检查批量任务是否已取消""" |
no test coverage detected