| 235 | * @interface |
| 236 | */ |
| 237 | export interface CompletionResponse extends CResponse { |
| 238 | choices: { |
| 239 | text: string; |
| 240 | index: number; |
| 241 | logprobs: null; |
| 242 | finish_reason: string; |
| 243 | }[]; |
| 244 | } |
| 245 | |
| 246 | /** |
| 247 | * The structure of a choice in a chat completion response. |
nothing calls this directly
no outgoing calls
no test coverage detected