feat: Phase 1 - cobol_testgen API + quality fields + retry handler

This commit is contained in:
hangshuo652
2026-06-18 15:47:35 +08:00
parent 7fcdb41a85
commit 097530b036
6 changed files with 1845 additions and 0 deletions
+9
View File
@@ -28,6 +28,15 @@ class VerificationRun:
field_results: list[FieldResult] = field(default_factory=list)
runner: str = "native"
branch_rate: float = 0.0
paragraph_rate: float = 0.0 # 段落覆盖率
decision_rate: float = 0.0 # 决策点覆盖率
hina_type: str = "" # HINA 类型
hina_confidence: float = 0.0 # HINA 确信度
quality_score: float = 0.0 # 质量评分
quality_warn: str = "" # 质量警告信息
heal_retry: int = 0 # 自愈重试次数
simple_retry: int = 0 # 朴素重试次数
total_retry: int = 0 # 总重试次数
llm_cost: float = 0.0
report_path: str = ""
debug: dict = field(default_factory=dict)