Skip to content
This repository has been archived by the owner on Nov 9, 2023. It is now read-only.

Latest commit

 

History

History
30 lines (24 loc) · 1.22 KB

CreateCompletionResponse.md

File metadata and controls

30 lines (24 loc) · 1.22 KB

OpenapiClient::CreateCompletionResponse

Properties

Name Type Description Notes
id String A unique identifier for the completion.
choices Array<CreateCompletionResponseChoicesInner> The list of completion choices the model generated for the input prompt.
created Integer The Unix timestamp (in seconds) of when the completion was created.
model String The model used for completion.
system_fingerprint String This fingerprint represents the backend configuration that the model runs with. Can be used in conjunction with the `seed` request parameter to understand when backend changes have been made that might impact determinism. [optional]
object String The object type, which is always &quot;text_completion&quot;
usage CompletionUsage [optional]

Example

require 'openapi_client'

instance = OpenapiClient::CreateCompletionResponse.new(
  id: null,
  choices: null,
  created: null,
  model: null,
  system_fingerprint: null,
  object: null,
  usage: null
)