Files changed (1) hide show
  1. openenv.yaml +3 -1
openenv.yaml CHANGED
@@ -62,18 +62,21 @@ tasks:
62
  description: "Sort obviously spam emails like prize winning scams"
63
  difficulty: easy
64
  score_range: [0.0, 1.0]
 
65
 
66
  - id: medium_sorting
67
  name: "Medium Email Sorting"
68
  description: "Distinguish between newsletters, promotions, and important emails"
69
  difficulty: medium
70
  score_range: [0.0, 1.0]
 
71
 
72
  - id: hard_sorting
73
  name: "Hard Email Sorting"
74
  description: "Detect phishing emails disguised as banks and trusted services"
75
  difficulty: hard
76
  score_range: [0.0, 1.0]
 
77
 
78
  episode:
79
  max_steps: 10
@@ -93,7 +96,6 @@ api:
93
  method: GET
94
  path: /state
95
  description: "Return current state without taking action"
96
- ```
97
 
98
 
99
 
 
62
  description: "Sort obviously spam emails like prize winning scams"
63
  difficulty: easy
64
  score_range: [0.0, 1.0]
65
+ grader: graders.grade_easy
66
 
67
  - id: medium_sorting
68
  name: "Medium Email Sorting"
69
  description: "Distinguish between newsletters, promotions, and important emails"
70
  difficulty: medium
71
  score_range: [0.0, 1.0]
72
+ grader: graders.grade_medium
73
 
74
  - id: hard_sorting
75
  name: "Hard Email Sorting"
76
  description: "Detect phishing emails disguised as banks and trusted services"
77
  difficulty: hard
78
  score_range: [0.0, 1.0]
79
+ grader: graders.grade_hard
80
 
81
  episode:
82
  max_steps: 10
 
96
  method: GET
97
  path: /state
98
  description: "Return current state without taking action"
 
99
 
100
 
101