We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
W&B SWE agent uses an interesting approach to achieve top score on SWE-bench Verified, inspired by collapse a specific range in a code editor:
open_module(path)
expand_function(path, fn_name)
fn_name
We can implement this by adjusting the str_replace_editor tool:
str_replace_editor
view
expand_function
The text was updated successfully, but these errors were encountered:
No branches or pull requests
W&B SWE agent uses an interesting approach to achieve top score on SWE-bench Verified, inspired by collapse a specific range in a code editor:
open_module(path)
: view a file with all functions collapsed by defaultExample output
expand_function(path, fn_name)
: view that file again but with thefn_name
function expandedExample output
We can implement this by adjusting the
str_replace_editor
tool:view
command on file path to print file content with functions collapsed by defaultexpand_function
The text was updated successfully, but these errors were encountered: