Current section

Files

Jump to
ex_open_ai lib resources translation.ex
Raw

lib/resources/translation.ex

defmodule ExOpenAi.Translation do
@moduledoc """
"""
@type t :: %__MODULE__{
text: String.t()
}
defstruct text: nil
use ExOpenAi.Resource, import: [:new, :create_audio]
def keep_it_simple(response, _), do: response
end