| 14 | export type ChatGPTAgent = "user" | "system"; |
| 15 | |
| 16 | export interface ChatGPTMessage { |
| 17 | role: ChatGPTAgent; |
| 18 | content: string; |
| 19 | } |
| 20 | |
| 21 | export interface OpenAIStreamPayload { |
| 22 | model: ChatGPTModel; |
nothing calls this directly
no outgoing calls
no test coverage detected