-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbenchmark_results.json
More file actions
94 lines (94 loc) · 2.16 KB
/
Copy pathbenchmark_results.json
File metadata and controls
94 lines (94 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"summary": {
"baseline_detection": 45,
"council_detection": 67,
"improvement_percent": 22,
"baseline_verdict_accuracy": "2/3",
"council_verdict_accuracy": "2/3"
},
"cases": [
{
"case": "SQL Injection + Hardcoded Secret",
"baseline": {
"issues_found": 3,
"detection_score": 67,
"verdict": "BLOCK",
"verdict_correct": true,
"confidence": 100,
"categories_covered": [
"security",
"performance"
],
"time_seconds": 6.8
},
"council": {
"issues_found": 6,
"detection_score": 67,
"verdict": "BLOCK",
"verdict_correct": true,
"confidence": 100,
"categories_covered": [
"security",
"performance"
],
"time_seconds": 52.2,
"debate_rounds": 3
}
},
{
"case": "N+1 Query + Missing Error Handling",
"baseline": {
"issues_found": 2,
"detection_score": 67,
"verdict": "BLOCK",
"verdict_correct": true,
"confidence": 95,
"categories_covered": [
"security",
"performance"
],
"time_seconds": 4.6
},
"council": {
"issues_found": 6,
"detection_score": 100,
"verdict": "BLOCK",
"verdict_correct": true,
"confidence": 100,
"categories_covered": [
"security",
"performance"
],
"time_seconds": 48.8,
"debate_rounds": 3
}
},
{
"case": "Clean Code \u2014 Poor Naming + No Tests",
"baseline": {
"issues_found": 3,
"detection_score": 0,
"verdict": "BLOCK",
"verdict_correct": false,
"confidence": 95,
"categories_covered": [
"security",
"quality"
],
"time_seconds": 7.9
},
"council": {
"issues_found": 4,
"detection_score": 33,
"verdict": "BLOCK",
"verdict_correct": false,
"confidence": 97,
"categories_covered": [
"quality"
],
"time_seconds": 43.1,
"debate_rounds": 3
}
}
]
}