modelbuilderhq commited on
Commit
5373a8d
·
verified ·
1 Parent(s): 9ffc733

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. openenv.yaml +10 -16
openenv.yaml CHANGED
@@ -5,29 +5,23 @@ type: space
5
  runtime: fastapi
6
  app: server.app:app
7
  port: 8000
 
8
  description: Enterprise support operations environment with SLA pressure, business-impact aware triage, and primary-vs-secondary issue prioritization.
 
 
 
 
 
9
  tasks:
10
  - id: billing_refund_easy
11
  difficulty: easy
12
- max_steps: 6
13
- grader:
14
- type: python
15
- path: graders:BillingRefundEasyGrader
16
  - id: account_takeover_medium
17
  difficulty: medium
18
- max_steps: 7
19
- grader:
20
- type: python
21
- path: graders:AccountTakeoverMediumGrader
22
  - id: api_incident_hard
23
  difficulty: hard
24
- max_steps: 8
25
- grader:
26
- type: python
27
- path: graders:ApiIncidentHardGrader
28
  - id: regulated_export_exception_hard
29
  difficulty: hard
30
- max_steps: 8
31
- grader:
32
- type: python
33
- path: graders:RegulatedExportExceptionHardGrader
 
5
  runtime: fastapi
6
  app: server.app:app
7
  port: 8000
8
+ entry_point: server.supportdesk_environment:SupportDeskEnvironment
9
  description: Enterprise support operations environment with SLA pressure, business-impact aware triage, and primary-vs-secondary issue prioritization.
10
+ endpoints:
11
+ reset: /reset
12
+ step: /step
13
+ state: /state
14
+ tasks: /tasks
15
  tasks:
16
  - id: billing_refund_easy
17
  difficulty: easy
18
+ grader: graders:BillingRefundEasyGrader
 
 
 
19
  - id: account_takeover_medium
20
  difficulty: medium
21
+ grader: graders:AccountTakeoverMediumGrader
 
 
 
22
  - id: api_incident_hard
23
  difficulty: hard
24
+ grader: graders:ApiIncidentHardGrader
 
 
 
25
  - id: regulated_export_exception_hard
26
  difficulty: hard
27
+ grader: graders:RegulatedExportExceptionHardGrader