Description
The Hugging Face task README has two stale troubleshooting instructions:
-
The "Task not found" section says to use --task-index and --task-id, but examples/hugging_face_task/run.sh accepts a positional selector:
./run.sh 42
./run.sh task_...
-
The "Agent timeout" section says to modify max_steps in main.py, but this example reads agent settings from examples/hugging_face_task/agent_config.json.
Impact
Users trying to run alternate benchmark tasks or increase the step budget may follow commands/files that do not match the current example implementation.
Suggested fix
Update the README troubleshooting section to document the positional task selector and point timeout/step-budget changes to agent_config.json.
Description
The Hugging Face task README has two stale troubleshooting instructions:
The "Task not found" section says to use
--task-indexand--task-id, butexamples/hugging_face_task/run.shaccepts a positional selector:./run.sh 42./run.sh task_...The "Agent timeout" section says to modify
max_stepsinmain.py, but this example reads agent settings fromexamples/hugging_face_task/agent_config.json.Impact
Users trying to run alternate benchmark tasks or increase the step budget may follow commands/files that do not match the current example implementation.
Suggested fix
Update the README troubleshooting section to document the positional task selector and point timeout/step-budget changes to
agent_config.json.