{"query": "Show me the contents of config.py", "expected": {"name": "read_file", "arguments": {"path": "config.py"}}} {"query": "What files are in the src directory?", "expected": {"name": "list_dir", "arguments": {"path": "src"}}} {"query": "Create a file notes.txt containing the text hello world", "expected": {"name": "write_file", "arguments": {"path": "notes.txt", "content": "hello world"}}} {"query": "Run the test suite using pytest", "expected": {"name": "run_bash", "arguments": {"command": "pytest"}}} {"query": "In app.py replace 5000 with 8080", "expected": {"name": "edit_file", "arguments": {"path": "app.py", "old_string": "5000", "new_string": "8080"}}} {"query": "Read the README.md file for me", "expected": {"name": "read_file", "arguments": {"path": "README.md"}}} {"query": "List everything in the current directory .", "expected": {"name": "list_dir", "arguments": {"path": "."}}} {"query": "Execute git status", "expected": {"name": "run_bash", "arguments": {"command": "git status"}}} {"query": "Make a new file hello.py that prints hi", "expected": {"name": "write_file", "arguments": {"path": "hello.py", "content": "print('hi')"}}} {"query": "Open and show src/utils.py", "expected": {"name": "read_file", "arguments": {"path": "src/utils.py"}}} {"query": "In main.py change the word foo to bar", "expected": {"name": "edit_file", "arguments": {"path": "main.py", "old_string": "foo", "new_string": "bar"}}} {"query": "Show the entries in the tests folder", "expected": {"name": "list_dir", "arguments": {"path": "tests"}}}