Merge pull request #5 from DsThakurRawat/add-openenv
Browse files- openenv.yaml +27 -0
openenv.yaml
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version: "1.0"
|
| 2 |
+
name: "agentorg-codereview"
|
| 3 |
+
description: "AI Senior Code Reviewer evaluation environment for AgentOrg."
|
| 4 |
+
entry_point: "app:app"
|
| 5 |
+
|
| 6 |
+
tasks:
|
| 7 |
+
- id: "bug_detection"
|
| 8 |
+
max_steps: 10
|
| 9 |
+
scenarios: 10
|
| 10 |
+
- id: "security_audit"
|
| 11 |
+
max_steps: 15
|
| 12 |
+
scenarios: 10
|
| 13 |
+
- id: "architectural_review"
|
| 14 |
+
max_steps: 20
|
| 15 |
+
scenarios: 10
|
| 16 |
+
|
| 17 |
+
grading:
|
| 18 |
+
type: "deterministic"
|
| 19 |
+
metrics:
|
| 20 |
+
- name: "coverage"
|
| 21 |
+
weight: 0.4
|
| 22 |
+
- name: "precision"
|
| 23 |
+
weight: 0.6
|
| 24 |
+
- name: "severity_accuracy"
|
| 25 |
+
weight: 0.7
|
| 26 |
+
- name: "keyword_accuracy"
|
| 27 |
+
weight: 0.3
|