jwu323 commited on
Commit
34bce7a
·
verified ·
1 Parent(s): c5cecc7

Embed FlowBench agent run instructions in README

Browse files
Files changed (1) hide show
  1. README.md +20 -1
README.md CHANGED
@@ -82,7 +82,26 @@ runtime and expose its functions as the tool API. When running with Harbor, the
82
  task container already places the same tool file at `/app/flowbench_tools.py`.
83
  Agents should solve tasks by calling the provided tools; the public release does
84
  not ship gold answers or a strict answer checker.
85
- See `RUN.md` for the recommended public harness contract and prediction format.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
 
87
  ## Running the Harbor Smoke Pack
88
 
 
82
  task container already places the same tool file at `/app/flowbench_tools.py`.
83
  Agents should solve tasks by calling the provided tools; the public release does
84
  not ship gold answers or a strict answer checker.
85
+
86
+ ## Running an Agent
87
+
88
+ For public agent evaluation, give the agent one task record from
89
+ `data/test.jsonl`, expose only the functions listed in
90
+ `tools/flowbench_tools.py::TOOLS`, and ask the agent to return only the final
91
+ answer in the record's `answer_format`. The task record supplies the question
92
+ and parameters; the tool module is the data source and builds all tables
93
+ deterministically at import time.
94
+
95
+ Recommended public prediction format:
96
+
97
+ ```json
98
+ {"task_id": "v3_depth1_currency_lookup_t0", "answer": "USD", "model": "your-model-name"}
99
+ ```
100
+
101
+ `RUN.md` has a fuller harness contract, adapter skeleton, prompt template, and a
102
+ worked tool plan for a depth-6 task. The public split has no labels, so
103
+ predictions from this repository alone are for inspection, integration testing,
104
+ or private scoring; do not report them as official FlowBench scores.
105
 
106
  ## Running the Harbor Smoke Pack
107