Current section
Files
Jump to
Current section
Files
lib/hyper_llm.ex
defmodule HyperLLM do
@moduledoc false
def config(provider) do
Application.get_env(:hyper_llm, provider, [])
end
def config(provider, key, default) do
Keyword.get(config(provider), key, default)
end
def config!(provider, key) do
Keyword.fetch!(config(provider), key)
end
end