| 9 | export type ChatGPTAgent = 'user' | 'system' |
| 10 | |
| 11 | export interface ChatGPTMessage { |
| 12 | role: ChatGPTAgent |
| 13 | content: string |
| 14 | } |
| 15 | |
| 16 | export interface OpenAIStreamPayload { |
| 17 | model: string |
nothing calls this directly
no outgoing calls
no test coverage detected