Spaces:
Sleeping
Sleeping
Commit ·
c3f32c9
1
Parent(s): a1f98bf
fix root endpoint to list all 5 tasks
Browse filesCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- dataqa_env/server/app.py +1 -1
dataqa_env/server/app.py
CHANGED
|
@@ -25,7 +25,7 @@ def root():
|
|
| 25 |
return {
|
| 26 |
"name": "DataQA Environment",
|
| 27 |
"description": "Two-phase data quality assurance environment: identify issues + propose fixes",
|
| 28 |
-
"tasks": ["easy", "medium", "hard"],
|
| 29 |
"endpoints": ["/health", "/reset", "/step", "/state"],
|
| 30 |
}
|
| 31 |
|
|
|
|
| 25 |
return {
|
| 26 |
"name": "DataQA Environment",
|
| 27 |
"description": "Two-phase data quality assurance environment: identify issues + propose fixes",
|
| 28 |
+
"tasks": ["easy", "medium", "hard", "alignment", "moderation"],
|
| 29 |
"endpoints": ["/health", "/reset", "/step", "/state"],
|
| 30 |
}
|
| 31 |
|