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.3 KB

CreateChatCompletionFunctionResponse.md

File metadata and controls

30 lines (24 loc) · 1.3 KB

OpenapiClient::CreateChatCompletionFunctionResponse

Properties

Name Type Description Notes
id String A unique identifier for the chat completion.
choices Array<CreateChatCompletionFunctionResponseChoicesInner> A list of chat completion choices. Can be more than one if `n` is greater than 1.
created Integer The Unix timestamp (in seconds) of when the chat completion was created.
model String The model used for the chat 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 `chat.completion`.
usage CompletionUsage [optional]

Example

require 'openapi_client'

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