Spaces:
Sleeping
Sleeping
Update openenv.yaml
Browse files- openenv.yaml +7 -7
openenv.yaml
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
|
|
| 1 |
name: api-triage-agent
|
| 2 |
-
version: 1.0.0
|
| 3 |
description: AI agent debugs API failures using curriculum learning
|
| 4 |
|
| 5 |
environment:
|
|
@@ -32,29 +32,29 @@ tasks:
|
|
| 32 |
name: "Authentication Error"
|
| 33 |
description: "Diagnose and fix a 401 Unauthorized error caused by an expired API key"
|
| 34 |
difficulty: "easy"
|
| 35 |
-
grader: "
|
| 36 |
- id: "missing_fields"
|
| 37 |
name: "Missing Field Error"
|
| 38 |
description: "Diagnose and fix a 400 Bad Request error caused by a missing required field"
|
| 39 |
difficulty: "easy"
|
| 40 |
-
grader: "
|
| 41 |
- id: "rate_limit"
|
| 42 |
name: "Rate Limit Error"
|
| 43 |
description: "Diagnose and fix a 429 Too Many Requests error by applying retry logic"
|
| 44 |
difficulty: "medium"
|
| 45 |
-
grader: "
|
| 46 |
- id: "timeout"
|
| 47 |
name: "Timeout Error"
|
| 48 |
description: "Diagnose and fix a 408 Request Timeout error by applying retry with backoff"
|
| 49 |
difficulty: "medium"
|
| 50 |
-
grader: "
|
| 51 |
- id: "wrong_endpoint"
|
| 52 |
name: "Wrong Endpoint Error"
|
| 53 |
description: "Diagnose and fix a 404 Not Found error by changing to the correct endpoint"
|
| 54 |
difficulty: "medium"
|
| 55 |
-
grader: "
|
| 56 |
- id: "server_error"
|
| 57 |
name: "Server Error"
|
| 58 |
description: "Diagnose and handle a 500 Internal Server Error by escalating appropriately"
|
| 59 |
difficulty: "hard"
|
| 60 |
-
grader: "
|
|
|
|
| 1 |
+
version: "1.0"
|
| 2 |
name: api-triage-agent
|
|
|
|
| 3 |
description: AI agent debugs API failures using curriculum learning
|
| 4 |
|
| 5 |
environment:
|
|
|
|
| 32 |
name: "Authentication Error"
|
| 33 |
description: "Diagnose and fix a 401 Unauthorized error caused by an expired API key"
|
| 34 |
difficulty: "easy"
|
| 35 |
+
grader: "tasks.auth_error.grader:grade"
|
| 36 |
- id: "missing_fields"
|
| 37 |
name: "Missing Field Error"
|
| 38 |
description: "Diagnose and fix a 400 Bad Request error caused by a missing required field"
|
| 39 |
difficulty: "easy"
|
| 40 |
+
grader: "tasks.missing_fields.grader:grade"
|
| 41 |
- id: "rate_limit"
|
| 42 |
name: "Rate Limit Error"
|
| 43 |
description: "Diagnose and fix a 429 Too Many Requests error by applying retry logic"
|
| 44 |
difficulty: "medium"
|
| 45 |
+
grader: "tasks.rate_limit.grader:grade"
|
| 46 |
- id: "timeout"
|
| 47 |
name: "Timeout Error"
|
| 48 |
description: "Diagnose and fix a 408 Request Timeout error by applying retry with backoff"
|
| 49 |
difficulty: "medium"
|
| 50 |
+
grader: "tasks.timeout.grader:grade"
|
| 51 |
- id: "wrong_endpoint"
|
| 52 |
name: "Wrong Endpoint Error"
|
| 53 |
description: "Diagnose and fix a 404 Not Found error by changing to the correct endpoint"
|
| 54 |
difficulty: "medium"
|
| 55 |
+
grader: "tasks.wrong_endpoint.grader:grade"
|
| 56 |
- id: "server_error"
|
| 57 |
name: "Server Error"
|
| 58 |
description: "Diagnose and handle a 500 Internal Server Error by escalating appropriately"
|
| 59 |
difficulty: "hard"
|
| 60 |
+
grader: "tasks.server_error.grader:grade"
|