feat: chat rendering toolcalls, footer overview

This commit is contained in:
2026-08-09 20:24:11 -04:00
parent cb8a88d0bd
commit 259b1d3b2d
14 changed files with 664 additions and 383 deletions

View File

@@ -103,7 +103,7 @@ function flakyThenOkRunner(name: string): {
const runner: AgentRunner = async (opts) => {
calls++;
if (calls === 1) {
return { ok: true, text: "", toolCalls: [] };
return { ok: true, text: "" };
}
return fakeAgentRunner(opts);
};
@@ -171,7 +171,7 @@ describe("/pygienium-<check> resume semantics", () => {
const runner: AgentRunner = async (opts) => {
calls++;
if (calls === 1) {
return { ok: true, text: "", toolCalls: [] };
return { ok: true, text: "" };
}
return fakeAgentRunner(opts);
};