(uuid: string)
| 63 | } |
| 64 | |
| 65 | function createAssistantMessage(uuid: string): Message { |
| 66 | return { |
| 67 | type: 'assistant', |
| 68 | uuid, |
| 69 | message: { |
| 70 | id: `assistant-${uuid}`, |
| 71 | model: 'gpt-test', |
| 72 | content: [{ type: 'text', text: 'assistant reply' }], |
| 73 | }, |
| 74 | } as unknown as Message |
| 75 | } |
| 76 | |
| 77 | function createDeps( |
| 78 | overrides: Partial<ReturnType<typeof createDepsBase>> = {}, |
no outgoing calls
no test coverage detected