Packages

Elixir implementation of the Agent-to-Agent (A2A) protocol. Exposes ADK agents as A2A-compatible HTTP endpoints and consumes remote A2A agents as local ADK agents.

Current section

Files

Jump to
a2a_elixir_sdk lib a2a_ex application.ex
Raw

lib/a2a_ex/application.ex

defmodule A2AEx.Application do
@moduledoc false
use Application
@impl true
def start(_type, _args) do
children = [
{Registry, keys: :unique, name: A2AEx.EventQueue.Registry},
{DynamicSupervisor, name: A2AEx.EventQueue.Supervisor, strategy: :one_for_one}
]
opts = [strategy: :one_for_one, name: A2AEx.Supervisor]
Supervisor.start_link(children, opts)
end
end