Spaces:
Sleeping
Sleeping
File size: 748 Bytes
3a26e23 | 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 | name: Code Review Environment
version: 1.0.0
description: Code review environment with three tasks
author: yuvraj gupta
license: MIT
tasks:
- id: easy
description: Add a helpful comment about missing null check.
- id: medium
description: Suggest using enumerate for efficiency.
- id: hard
description: Point out division by zero risk with empty list.
observation_space:
type: object
properties:
pr_code: {type: string}
comments: {type: array, items: {type: string}}
agent_comment: {type: string}
step: {type: integer}
done: {type: boolean}
action_space:
type: object
properties:
action_type: {type: string, enum: [write_comment, skip, done]}
comment_text: {type: string} |