tool-calling / codex /eval.jsonl
jedisct1's picture
Add tool-calling harness dataset
bd43184 verified
Raw
History Blame Contribute Delete
1.39 kB
{"id":"codex-eval-edit","prompt":"In settings.py, change only the second timeout from 5 to 10. Do not change the first timeout.","files":{"settings.py":"timeout = 5\nretries = 2\ntimeout = 5\n"},"verify":{"settings.py":"timeout = 5\nretries = 2\ntimeout = 10\n"},"expected_events":["command_execution"]}
{"id":"codex-eval-add-file","prompt":"Create docs/notes.md containing a short note that says done.","files":{"README.md":"# Demo\n"},"verify_contains":{"docs/notes.md":["done"]},"expected_events":[]}
{"id":"codex-eval-run-test","prompt":"Run `python3 tests/check.py` and report whether it passed.","files":{"tests/check.py":"assert 2 + 3 == 5\nprint('ok')\n"},"verify_command":["python3","tests/check.py"],"expected_events":["command_execution"]}
{"id":"codex-eval-grep-edit","prompt":"Find the TODO in src and remove the TODO marker, leaving the explanatory text.","files":{"src/app.py":"def main():\n # TODO remove fallback\n return True\n"},"verify":{"src/app.py":"def main():\n # remove fallback\n return True\n"},"expected_events":["command_execution"]}
{"id":"codex-eval-summary-json","prompt":"Read README.md and write summary.json with fields name and kind. Use name Widget and kind tiny router.","files":{"README.md":"# Widget\n\nA tiny router.\n"},"verify_json":{"summary.json":{"name":"Widget","kind":"tiny router"}},"expected_events":["command_execution"]}