(
_systemPrompt: string,
_tools: unknown,
_history: unknown,
options?: { readonly signal?: AbortSignal },
)
| 18 | modelName: 'fake-model', |
| 19 | thinkingEffort: null, |
| 20 | async generate( |
| 21 | _systemPrompt: string, |
| 22 | _tools: unknown, |
| 23 | _history: unknown, |
| 24 | options?: { readonly signal?: AbortSignal }, |
| 25 | ) { |
| 26 | await waitForAbort(options?.signal); |
| 27 | throwAbortError(); |
| 28 | }, |
| 29 | withThinking() { |
| 30 | return this; |
| 31 | }, |
nothing calls this directly
no test coverage detected