File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,16 +2,17 @@ package model
22
33// SkillSummary 表示 Skills 检测摘要。
44type SkillSummary struct {
5- Enabled bool `json:"enabled"`
6- Total int `json:"total"`
7- RiskCount int `json:"risk_count"`
8- MaliciousCount int `json:"malicious_count"`
9- SuspiciousCount int `json:"suspicious_count"`
10- SafeCount int `json:"safe_count"`
11- PendingCount int `json:"pending_count"`
12- FailedCount int `json:"failed_count"`
13- DetectorAvailable bool `json:"detector_available"`
14- LLMAvailable bool `json:"llm_available"`
5+ Enabled bool `json:"enabled"`
6+ Total int `json:"total"`
7+ RiskCount int `json:"risk_count"`
8+ MaliciousCount int `json:"malicious_count"`
9+ SuspiciousCount int `json:"suspicious_count"`
10+ SafeCount int `json:"safe_count"`
11+ PendingCount int `json:"pending_count"`
12+ DetectionErrorCount int `json:"detection_error_count"`
13+ FailedCount int `json:"failed_count"`
14+ DetectorAvailable bool `json:"detector_available"`
15+ LLMAvailable bool `json:"llm_available"`
1516}
1617
1718// SkillItem 表示单个 Skill 的检测结果。
You can’t perform that action at this time.
0 commit comments