| 35 | * 工具调用记录 |
| 36 | */ |
| 37 | export interface ToolCall { |
| 38 | toolCallId?: string; // Vercel AI SDK 的工具调用 ID |
| 39 | tool: string; |
| 40 | args: any; |
| 41 | result: any; |
| 42 | success: boolean; |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * Session 索引 |
nothing calls this directly
no outgoing calls
no test coverage detected