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

JSON parameters for editing an existing generated video.

Fields

  • :prompt - required - String.t()
    Text prompt that describes how to edit the source video.
    Constraints: minLength: 1, maxLength: 32000

  • :video - required - ExOpenAI.Components.VideoReferenceInputParam.t()
    Reference to the completed video to edit.

Summary

Types

@type t() :: %ExOpenAI.Components.CreateVideoEditJsonBody{
  prompt: String.t(),
  video: ExOpenAI.Components.VideoReferenceInputParam.t()
}