defmodule OpenAi.Audio.Transcription.CreateRequest do @moduledoc """ Provides struct and type for a Audio.Transcription.CreateRequest """ @type t :: %__MODULE__{ file: String.t(), language: String.t() | nil, model: String.t(), prompt: String.t() | nil, response_format: String.t() | nil, temperature: number | nil, "timestamp_granularities[]": [String.t()] | nil } defstruct [ :file, :language, :model, :prompt, :response_format, :temperature, :"timestamp_granularities[]" ] @doc false @spec __fields__(atom) :: keyword def __fields__(type \\ :t) def __fields__(:t) do [ file: {:string, :generic}, language: {:string, :generic}, model: {:union, const: "whisper-1", string: :generic}, prompt: {:string, :generic}, response_format: {:enum, ["json", "text", "srt", "verbose_json", "vtt"]}, temperature: :number, "timestamp_granularities[]": [enum: ["word", "segment"]] ] end end