ACP: hide tool_call tags by default

This commit is contained in:
Onur
2026-03-01 14:41:45 +01:00
committed by Onur Solmaz
parent 5232f96d59
commit acd6ddb829
3 changed files with 17 additions and 3 deletions

View File

@@ -55,7 +55,8 @@ describe("acp stream settings", () => {
it("uses default tag visibility when no override is provided", () => {
const settings = resolveAcpProjectionSettings(createAcpTestConfig());
expect(isAcpTagVisible(settings, "tool_call")).toBe(true);
expect(isAcpTagVisible(settings, "tool_call")).toBe(false);
expect(isAcpTagVisible(settings, "tool_call_update")).toBe(false);
expect(isAcpTagVisible(settings, "usage_update")).toBe(false);
});