-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenenv.yaml
More file actions
42 lines (37 loc) · 850 Bytes
/
openenv.yaml
File metadata and controls
42 lines (37 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: code-reviewer-env
version: "1.0.0"
description: |
A real-world code review environment where AI agents review code snippets,
identify issues (syntax errors, logic bugs, security vulnerabilities),
and suggest appropriate fixes. Designed for training and evaluating
code review assistant agents.
author: "Kamlesh Patil"
tags:
- code-review
- software-engineering
- real-world
- educational
interface:
type: websocket
path: /ws
endpoints:
reset:
method: POST
path: /reset
step:
method: POST
path: /step
state:
method: GET
path: /state
models:
observation: CodeReviewerObservation
action: CodeReviewerAction
reward: CodeReviewerReward
config:
max_steps_per_episode: 20
default_task: "syntax_check"
available_tasks:
- syntax_check
- logic_bug_detection
- security_audit