View Source ExOpenAI.Components.ChatCompletionDeleted (ex_openai.ex v2.0.0-beta2)

Module for representing the OpenAI schema ChatCompletionDeleted.

Fields

  • :deleted - required - boolean()
    Whether the chat completion was deleted.

  • :id - required - String.t()
    The ID of the chat completion that was deleted.

  • :object - required - :"chat.completion.deleted"
    The type of object being deleted.
    Allowed values: "chat.completion.deleted"

Summary

Types

@type t() :: %ExOpenAI.Components.ChatCompletionDeleted{
  deleted: boolean(),
  id: String.t(),
  object: :"chat.completion.deleted"
}