fix: 添加工作流

This commit is contained in:
root
2025-07-12 12:45:21 +08:00
parent bc19461d8a
commit 81035caf0e
14 changed files with 1830 additions and 48 deletions

View File

@@ -112,8 +112,9 @@ class JSONRPCResponse:
class ProgressReporter:
"""Progress reporting using JSON-RPC notifications"""
def __init__(self):
step: int = 0
total: int = 0
def __init__(self, total: int = 0):
self.rpc = JSONRPCResponse()
def report(self, step: str, progress: float, message: str, details: Dict[str, Any] = None) -> None: