Current section

Files

Jump to
liter_llm lib liter_llm auth_config.ex
Raw

lib/liter_llm/auth_config.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:7944d9976ed5e784d58bb60b20a64df43c6faa98460b1282aa94dfadc636b045
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule LiterLlm.AuthConfig do
@moduledoc "Auth configuration block."
@typedoc "Auth configuration block."
@type t :: %__MODULE__{
auth_type: String.t() | nil,
env_var: String.t() | nil
}
defstruct auth_type: :bearer,
env_var: nil
end