(text: string)
| 130 | } |
| 131 | | { |
| 132 | readonly result?: Extract<AgentConversationEvent, { readonly type: 'tool-result' }>; |
| 133 | readonly toolCall: Extract<AgentConversationEvent, { readonly type: 'tool-call' }>; |
| 134 | readonly type: 'tool-exchange'; |
| 135 | }; |
| 136 | |
| 137 | interface CreateEvalToolCallOptions { |
| 138 | readonly code: string; |
| 139 | readonly providerToolCallId?: string; |
| 140 | readonly tabId: number; |
no test coverage detected