Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 38 additions & 1 deletion datasets/coderforge_preview/metadata.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,42 @@
{
"custom_tools": [],
"custom_tools": [
{
"type": "function",
"function": {
"name": "str_replace_editor",
"description": "View, create, and edit files with the OpenHands string replacement editor.\n\nArgs:\n----\n command: Editor command such as view, create, str_replace, insert, or undo_edit.\n path: Absolute path to the file or directory to operate on.\n file_text: Content to write when creating a file.\n old_str: Existing text to replace.\n new_str: Replacement text or text to insert.\n insert_line: Line number after which to insert new_str.\n view_range: Optional 1-indexed inclusive line range for view commands.",
"parameters": {
"type": "object",
"properties": {
"command": {
"type": "string"
},
"path": {
"type": "string"
},
"file_text": {
"type": "string"
},
"old_str": {
"type": "string"
},
"new_str": {
"type": "string"
},
"insert_line": {
"type": "integer"
},
"view_range": {}
},
"additionalProperties": false,
"required": [
"command",
"path"
]
}
}
}
],
"code_enabled": [
"bash"
],
Expand Down
Loading