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

Parameters for creating a character from an uploaded video.

Fields

  • :name - required - String.t()
    Display name for this API character.
    Constraints: minLength: 1, maxLength: 80

  • :video - required - binary()
    Video file used to create a character.
    Format: binary

Summary

Types

@type t() :: %ExOpenAI.Components.CreateVideoCharacterBody{
  name: String.t(),
  video: binary()
}