Edit

@Serializable
class Edit(val created: Long, val choices: List<Choice>, val usage: Usage)

Response to the edit creation request.

Constructors

Link copied to clipboard
constructor(created: Long, choices: List<Choice>, usage: Usage)

Properties

Link copied to clipboard
@SerialName(value = "choices")
val choices: List<Choice>

A list of generated completions.

Link copied to clipboard
@SerialName(value = "created")
val created: Long

The creation time in epoch milliseconds.

Link copied to clipboard
@SerialName(value = "usage")
val usage: Usage

Edit usage data.