View Source ExOpenAI.Components.CreateTranslationRequest (ex_openai.ex v1.6.0)

Schema representing a CreateTranslationRequest within the OpenAI API

Summary

Types

@type t() :: %ExOpenAI.Components.CreateTranslationRequest{
  file: bitstring() | {String.t(), bitstring()},
  model: :"whisper-1" | String.t(),
  prompt: String.t() | nil,
  response_format: String.t() | nil,
  temperature: float() | nil
}