Get deferred chat completions
Last updated
Was this helpful?
Last updated
Was this helpful?
Request ID
The deferred request id returned by a previous deferred chat request.
id
A unique ID for the chat response.
object
The object type, which is always "chat.response"
model
Model ID used to create chat completion.
created
The chat completion creation time in Unix timestamp.
choices[]
A list of response choices from the model.
choices[].index
응답 선택 위치
choices[].finish_reason
Finish reason. - Stop - Length
choices[].message
The generated chat completion message.
choices[].message.role
The role that the message belongs to, the response from model is always "assistant"
choices[].message.content
The content of the message.
choices[].message.refusal
The reason given by model if the model is unable to generate a response. null if model is able to generate.