mirror of
https://github.com/getpaseo/paseo.git
synced 2026-08-15 04:42:45 +00:00
refactor: finish strict tool-call typing and mapper dedup
This commit is contained in:
@@ -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";
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user