Abhishek Tiwari commited on
Commit
bc16a95
·
1 Parent(s): e0181f2

Fix Phase 2 issue: explicitly define tasks and graders in openenv.yaml

Browse files
Files changed (1) hide show
  1. openenv.yaml +17 -0
openenv.yaml CHANGED
@@ -5,3 +5,20 @@ type: space
5
  runtime: fastapi
6
  app: server.app:app
7
  port: 7860
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  runtime: fastapi
6
  app: server.app:app
7
  port: 7860
8
+
9
+ tasks:
10
+ - id: employee_payroll_overview
11
+ name: "Employee Payroll Overview"
12
+ description: "EASY: As an HR analyst, list all employee names and salaries ordered by salary descending for payroll review."
13
+ difficulty: easy
14
+ grader: core.grader:DataFrameGrader.grade
15
+ - id: department_budget_summary
16
+ name: "Department Budget Summary"
17
+ description: "MEDIUM: As a finance analyst, return each department name with average salary. Output columns must be 'DEPARTMENT_NAME' and 'AVG_SALARY'."
18
+ difficulty: medium
19
+ grader: core.grader:DataFrameGrader.grade
20
+ - id: senior_engineering_comp_review
21
+ name: "Senior Engineering Comp Review"
22
+ description: "HARD: For compensation review, find Engineering employees whose salary qualifies for the 'Senior' role threshold. Return employee NAME and role TITLE."
23
+ difficulty: hard
24
+ grader: core.grader:DataFrameGrader.grade