| 11 | * boundary. |
| 12 | */ |
| 13 | export interface LLMClient { |
| 14 | createMessage( |
| 15 | systemPrompt: string, |
| 16 | messages: OpenAI.Chat.ChatCompletionMessageParam[], |
| 17 | tools: OpenAI.Chat.ChatCompletionTool[], |
| 18 | abortSignal?: AbortSignal, |
| 19 | ): AsyncGenerator<ApiStreamChunk> |
| 20 | } |
| 21 | |
| 22 | /** |
| 23 | * Non-standard field stashed on a persisted assistant message holding opaque |
no outgoing calls
no test coverage detected