| 133 | } |
| 134 | |
| 135 | export interface OpenAIError { |
| 136 | message: string; |
| 137 | type: string; |
| 138 | param: string | null; // Might not be string |
| 139 | code: number | null; // Might not be number |
| 140 | } |
| 141 | |
| 142 | export interface ChatGPTParams { |
| 143 | temperature?: number; |
nothing calls this directly
no outgoing calls
no test coverage detected