| 221 | * @interface |
| 222 | */ |
| 223 | export interface CResponse extends BaseResponse { |
| 224 | id: string; |
| 225 | created: number; |
| 226 | usage?: { |
| 227 | prompt_tokens: number; |
| 228 | completion_tokens: number; |
| 229 | total_tokens: number; |
| 230 | }; |
| 231 | } |
| 232 | |
| 233 | /** |
| 234 | * The structure of a completion response for the 'complete' function. |
nothing calls this directly
no outgoing calls
no test coverage detected