100XZX001 commited on
Commit
5ff55bb
·
verified ·
1 Parent(s): 5fdf7b4

Update openenv.yaml

Browse files
Files changed (1) hide show
  1. openenv.yaml +10 -2
openenv.yaml CHANGED
@@ -1,6 +1,6 @@
1
  name: code_review_env
2
  version: 1.0.0
3
- description: Code review environment with three tasks
4
  author: yuvraj gupta
5
  license: MIT
6
  tasks:
@@ -10,10 +10,18 @@ tasks:
10
  description: Suggest using enumerate for efficiency
11
  - id: hard
12
  description: Point out division by zero risk with empty list
 
 
 
 
13
  observation_space:
14
  type: object
15
  properties:
16
- pr_code:
 
 
 
 
17
  type: string
18
  comments:
19
  type: array
 
1
  name: code_review_env
2
  version: 1.0.0
3
+ description: Code review environment with 5 tasks and semantic grader
4
  author: yuvraj gupta
5
  license: MIT
6
  tasks:
 
10
  description: Suggest using enumerate for efficiency
11
  - id: hard
12
  description: Point out division by zero risk with empty list
13
+ - id: harder
14
+ description: Identify race condition in multithreaded counter
15
+ - id: hardest
16
+ description: Detect potential deadlock in lock ordering
17
  observation_space:
18
  type: object
19
  properties:
20
+ pr_title:
21
+ type: string
22
+ pr_description:
23
+ type: string
24
+ code_snippet:
25
  type: string
26
  comments:
27
  type: array