refactor: finish strict tool-call typing and mapper dedup

This commit is contained in:
Mohamed Boudra
2026-02-09 09:07:14 +07:00
parent 6d4992b2f5
commit 896f88fa34
10 changed files with 823 additions and 1581 deletions

View File

@@ -54,9 +54,9 @@ export type MessageEntry =
id: string;
timestamp: number;
toolName: string;
args: any;
result?: any;
error?: any;
args: unknown | null;
result?: unknown | null;
error?: unknown | null;
status: "executing" | "completed" | "failed";
};