(content: any[], prompt: string)
| 1 | export function createMessage(content: any[], prompt: string) { |
| 2 | return [{ |
| 3 | role: 'user' as const, |
| 4 | content: [...content, { type: 'text' as const, text: prompt }] |
| 5 | }]; |
| 6 | } |
| 7 | |
| 8 | export function createErrorResponse(message: string) { |
| 9 | return { |
no outgoing calls
no test coverage detected