Complete the object
Represents a completion response object from the API. Note: Streaming response and non-streaming response objects have the same structure (different from chat endpoints).
id
string
Unique identifier of completion
choices
array
A list of completion options generated by the model for input prompts
created
integer
Unix timestamp of creation completion (seconds)
model
string
Model for completion
system_fingerprint
string
This fingerprint represents the backend configuration of the model run
object
string
Object type, always "text_completion"
usage
object
Fulfillment of requested usage statistics
completion_tokens
integer
Number of tags in completions generated
prompt_tokens
integer
Number of tags in prompt
total_tokens
integer
Total number of tags used in request (hint + complete)
Last updated