| 4 | |
| 5 | // Chat Messages |
| 6 | export interface Message { |
| 7 | role: "user" | "assistant" | "system"; |
| 8 | content: string; |
| 9 | } |
| 10 | |
| 11 | // Chat Completion Request |
| 12 | export interface ChatCompletionRequest { |
nothing calls this directly
no outgoing calls
no test coverage detected