benchmark/tau2/vikingbot/README.md
This folder runs the full VikingBot agent (bot/vikingbot AgentLoop) end-to-end
on tau2-bench tasks, then commits the
resulting trajectories back into OpenViking memory so the agent can self-improve across
epochs (cold start → memory-augmented runs).
Memory is extracted only from the
trainsplit. Each epoch runs both splits, but onlytraintrajectories are committed to OpenViking memory. Thetestsplit is held out and used purely to measure the task-success improvement once that (train-derived) memory is injected — so the reported gains reflect learning transferred from train to test, with no test-set leakage.
It is a sibling to the harness in ../llm/. Both are multi-turn and exercise
OpenViking memory extraction + retrieval; they differ in which agent drives the tasks:
../llm/ uses tau2-bench's native ReAct agent, wired to OpenViking
memory, to measure the effect of that memory on task performance.vikingbot/ (this folder) is an end-to-end, self-improving agent evaluation: it runs the
full VikingBot agent loop on the tasks and commits trajectories back into memory so the agent
improves across epochs.The pipeline is: run tasks → evaluate reward → commit train trajectories to memory (see
run_full_test.sh).
Prerequisite — Python 3.12 or 3.13. tau2-bench requires
>=3.12,<3.14.setup_env.shbuilds the venv withpython3 -m venv, sopython3must resolve to 3.12/3.13. If yourpython3is older (e.g. 3.11), pre-create the venv with a matching interpreter before sourcing —python3.13 -m venv .venv— otherwise the tau2-bench install step fails withERROR: Package 'tau2' requires a different Python.
One step sets up everything. setup_env.sh creates a .venv at the OpenViking repo root
(if one isn't already present), clones tau2-bench into ./tau2-bench (external dependency,
gitignored), installs openviking + vikingbot with the [bot] extra
(pip install -e .[bot], which also runs the Cargo build) plus tau2-bench ([gym] extra) and
smolagents, then activates the venv and exports the runtime env vars:
source benchmark/tau2/vikingbot/setup_env.sh # first run: install, then activate + export
source benchmark/tau2/vikingbot/setup_env.sh --reinstall # rebuild the .venv from scratch
Safe to source in every new shell: the install phase runs only when the venv is missing;
later sources just activate and re-export. (--reinstall rebuilds with python3 -m venv, so
the same 3.12/3.13 requirement applies.)
It exports PYTHONPATH for openviking + bot/vikingbot, TAU2_DATA_ROOT
(defaults to ./tau2-bench/data/tau2), OPENVIKING_CONFIG_FILE, and the user-simulator LLM
env vars. Override any of these by exporting before sourcing:
TAU2_BENCH_ROOT — tau2-bench checkout location (if it lives elsewhere)TAU2_BENCH_REPO / TAU2_BENCH_REF — git URL / ref to clone (e.g. pin a specific checkout)VIKINGBOT_ROOTARK_API_KEY (mapped to OPENAI_API_KEY), OPENAI_API_BASEThe tau2 user simulator talks to an OpenAI-compatible endpoint — set ARK_API_KEY (e.g.
Doubao through volcengine ARK) before sourcing, or the simulator will fail. The user-simulator
model is configured in tau2_env/tau2_environment.py.
Note: the sibling
llm/harness (../llm/README.md) pins a tau2-bench ref with a confirmation-aware user-simulator prompt (sierra-research/tau2-bench#297). SetTAU2_BENCH_REFto a comparable checkout if you want results aligned with that protocol.
Then start the OpenViking server with the bot enabled:
openviking-server --config "${OPENVIKING_CONFIG_FILE}" --with-bot
Run one epoch — 1 train run + 8 test runs in parallel (--test-repeats, default 8) — then
evaluate (test accuracy is averaged over the repeats) and commit the train trajectories to memory:
bash benchmark/tau2/vikingbot/run_full_test.sh --domain airline --epoch 0 --result-dir result
The async memory commit happens on the server, so wait for it to
finish before starting the next epoch. The per-domain report is appended to
full_test_report_<domain>.txt.
Multi-epoch examples (cold start → memory-augmented epochs):
bash benchmark/tau2/vikingbot/run_airline_2epochs.sh
train runs once per epoch — one trajectory per task, which is what gets committed to memory as the experience corpus. A single pass mirrors real usage, where the agent learns from one attempt at each task.
test runs 8 times per epoch (in parallel) and is averaged. Agent execution is stochastic, so
averaging several independent repeats gives a more confident accuracy estimate. Each repeat is a
separate --try-no; run_eval_reward.sh scores one repeat, and the per-repeat accuracies are
averaged. The one-click run_full_test.sh does all of this for you (--test-repeats, default 8).
# train: a single run (try 0)
bash scripts/run_tau2_domain.sh \
--domain airline --split train --epoch 0 --try-no 0 \
--result-dir result --concurrency 5 --use-continue --agent-id airline_v0
# test: 8 independent runs (try 0..7)
for t in 0 1 2 3 4 5 6 7; do
bash scripts/run_tau2_domain.sh \
--domain airline --split test --epoch 0 --try-no "$t" \
--result-dir result --concurrency 5 --use-continue --agent-id airline_v0
done
Results are written to result/<domain>_<split>/task_<n>_<epoch>_<try>_trajectory.json,
and full message dumps to the mirrored trajectory/... path.
bash scripts/run_eval_reward.sh result/airline_train 0 0
bash scripts/run_eval_reward.sh result/airline_test 0 0
VikingBot natively commits a task's trajectory into memory automatically as soon as that task finishes. For these experiments that auto-commit is disabled, so that all tasks within an epoch (train + test, run in parallel) execute under identical memory conditions — no run sees memory written by a sibling run mid-experiment. Instead, the commit is performed explicitly as a separate, controlled step via the script below (run once between epochs).
python scripts/commit_trajectory_to_memory.py \
--input result/airline_train \
--domain airline_v0 \
--pattern "*_0_0_trajectory.json" \
--include-eval-result
Adaptation happens in two places:
ov.conf flags — three OpenViking config flags switch VikingBot core into the
experience-memory recall mode tau2 needs. No core code edits required. See
Required ov.conf flags for tau2 below.ToolRegistry
via agent.tools.register(Tau2Tool(...)), so the agent drives the task through tau2's own tools
(plus communicate_with_user and done). openviking_memory_commit is always unregistered
here — that is the mechanism that disables VikingBot's per-task auto-commit (see step 3 above).
--keep-default-tools controls memory availability, tied to the epoch. The flag decides
whether VikingBot's built-in memory tools — OpenViking memory tools — stay
registered, and whether agent-experience memory is retrieved into the system prompt
(ov_tools_enable). run_full_test.sh sets it by epoch: epoch 0 omits the flag, so all
built-in memory tools are unregistered (only tau2 tools remain) and no memory is injected — a clean
cold-start / no-memory run; epoch > 0 passes the flag, so the memory tools and retrieved
experiences are available (memory-augmented).commit_trajectory_to_memory.py writes train trajectories
(optionally only failed ones, via --only-wrong) into OpenViking memory between epochs.ov.conf flags for tau2Two VikingBot behaviours need to change for tau2 self-improvement:
Both are now controlled by config — set these three flags in the bot.ov_server section of the
ov.conf pointed to by OPENVIKING_CONFIG_FILE:
{
"bot": {
"ov_server": {
"recall_exp_first_round_only": true, // skip per-turn user/agent recall; inject exp once on the first user turn
"exp_recall_limit": 2, // fetch 2 experiences per task (default: 5)
"exp_recall_max_chars": 10000 // character budget for the injected experience block (default: 2000)
}
}
}
What each flag does:
recall_exp_first_round_only — when true, ContextBuilder._build_user_memory skips the
default get_viking_memory_context (user + agent memory, every turn) and instead calls
get_viking_experience_context once, on the first user-turn of the session. The runner only
ever sends one user turn per task, so this becomes "fetch experience once per task."exp_recall_limit — how many experiences to retrieve. tau2 prefers fewer but longer
(2) over many shallow hits (5).exp_recall_max_chars — total character budget for the formatted experience block. Bumped
to 10000 so each of the 2 experiences gets room for full context (default 2000 truncates).Workspace isolation does not need a config flag: it follows automatically from --agent-id
plumbing, described below.
--agent-id flows from the runner into the coreThe --agent-id airline_v0 you pass on the command line is threaded all the way down into the
OpenViking client, and resolves to viking://agent/airline_v0/memories/experiences/:
run_full_test.sh AGENT_ID=${DOMAIN}_v0 # e.g. airline_v0, retail_v0
└─ run_tau2_domain.sh --agent-id airline_v0
└─ vikingbot_tau2_runner.py
build_messages(..., agent_id=agent_id) # explicit agent_id param
└─ context.py _build_user_memory
exp_workspace_id = agent_id or _get_workspace_id(session_key)
└─ memory.py get_viking_experience_context(query, exp_workspace_id)
└─ VikingClient.create(agent_id=exp_workspace_id)
└─ ov_server.py VikingClient.__init__ / search_experiences
viking://agent/airline_v0/memories/experiences/
Isolation holds in both local and remote bot.ov_server.mode (no patching required):
VikingClient.__init__ — in remote mode (root api-key, account/user auth) the incoming
agent_id is always threaded into the HTTP client, so per-domain isolation already holds.
In local mode (no auth, account/user fixed to default) the client used to hardcode
agent_id="default" — collapsing every domain into one namespace — and now opens against the
given agent_id whenever it isn't a session key (contains no __), giving local runs the same
isolation as remote.search_experiences — in both modes, prefers the per-instance self.agent_id (a non-session
id, e.g. airline_v0) over the global openviking_config.agent_id.So --agent-id airline_v0 ⇒ the agent reads/writes viking://agent/airline_v0/..., giving each
domain an isolated workspace.
Verified end-to-end in both modes: after committing a trajectory under
airline_v0, the experience is recalled only when querying with--agent-id airline_v0, and never leaks to a different agent id (a control id with nothing written returns zero hits).
setup_env.sh — environment setup (PYTHONPATH, tau2 data root, simulator LLM)run_full_test.sh — full pipeline for one epoch (run → eval → commit)run_airline_2epochs.sh — multi-epoch example (cold start → memory-augmented epochs)tau2_env/ — tau2 environment integration (tau2_environment.py, tau2_tool_provider.py)scripts/
vikingbot_tau2_runner.py — runs a single tau2 task through the VikingBot agent looprun_tau2_domain.sh — runs all tasks in a {domain}_{split} slice with bounded concurrencyrun_eval_reward.sh — average reward over a result foldercommit_trajectory_to_memory.py — commit trajectories into OpenViking memory