({
code,
providerToolCallId,
tabId,
}: CreateEvalToolCallOptions)
| 145 | readonly memoryId?: string; |
| 146 | readonly name: SafeToolName; |
| 147 | readonly providerToolCallId?: string; |
| 148 | readonly query?: string; |
| 149 | readonly snapshotId?: string; |
| 150 | readonly tabId: number; |
| 151 | readonly textStart?: number; |
| 152 | } |
| 153 | |
| 154 | interface CreateRemoteMcpToolCallOptions { |
| 155 | readonly arguments: Record<string, unknown>; |
| 156 | readonly name: RemoteMcpAgentToolName; |
| 157 | readonly providerToolCallId?: string; |
| 158 | readonly remoteToolName: string; |
| 159 | readonly serverId: string; |
| 160 | readonly serverName: string; |
| 161 | } |
no test coverage detected