Packages

Agent Development Kit for Elixir — OTP-native AI agent framework inspired by Google ADK

Current section

Files

Jump to
adk lib adk tools data_agent credentials_config.ex
Raw

lib/adk/tools/data_agent/credentials_config.ex

defmodule ADK.Tool.DataAgent.CredentialsConfig do
@moduledoc "Credentials Configuration for Data Agent tools."
defstruct [
:client_id,
:client_secret,
:token
]
def new(opts \\ []) do
struct(__MODULE__, opts)
end
end