defmodule AI.Model do @moduledoc """ Model struct used by providers. """ defstruct [:provider, :model_id, :options, :http_client] @type t :: %__MODULE__{ provider: module(), model_id: String.t(), options: map(), http_client: term() } end