Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files- openenv.yaml +22 -1
openenv.yaml
CHANGED
|
@@ -3,4 +3,25 @@ name: code_review
|
|
| 3 |
type: space
|
| 4 |
runtime: fastapi
|
| 5 |
app: server.app:app
|
| 6 |
-
port: 8000
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
type: space
|
| 4 |
runtime: fastapi
|
| 5 |
app: server.app:app
|
| 6 |
+
port: 8000
|
| 7 |
+
tasks:
|
| 8 |
+
- id: task_easy
|
| 9 |
+
difficulty: easy
|
| 10 |
+
max_steps: 10
|
| 11 |
+
grader:
|
| 12 |
+
type: llm
|
| 13 |
+
prompt_template: "Score this response 0.0 to 1.0 based on accuracy..."
|
| 14 |
+
|
| 15 |
+
- id: task_medium
|
| 16 |
+
difficulty: medium
|
| 17 |
+
max_steps: 15
|
| 18 |
+
grader:
|
| 19 |
+
type: llm
|
| 20 |
+
prompt_template: "Score this response 0.0 to 1.0 based on..."
|
| 21 |
+
|
| 22 |
+
- id: task_hard
|
| 23 |
+
difficulty: hard
|
| 24 |
+
max_steps: 20
|
| 25 |
+
grader:
|
| 26 |
+
type: llm
|
| 27 |
+
prompt_template: "Score this response 0.0 to 1.0 based on..."
|