| 4 | export type MessageRole = (typeof ROLES)[number]; |
| 5 | |
| 6 | export interface RequestMessage { |
| 7 | role: MessageRole; |
| 8 | content: string; |
| 9 | } |
| 10 | |
| 11 | export type DalleSize = "1024x1024" | "1792x1024" | "1024x1792"; |
| 12 | export type DalleQuality = "standard" | "hd"; |
nothing calls this directly
no outgoing calls
no test coverage detected