Packages

Provider-agnostic Elixir client for agent runtimes — one Session loop, any loop host: server-side (Anthropic Claude Managed Agents, AWS Bedrock AgentCore) or in-process (Local, over any OpenAI-compatible chat endpoint). Your tools run locally.

Current section

Files

Jump to
req_managed_agents lib req_managed_agents application.ex
Raw

lib/req_managed_agents/application.ex

defmodule ReqManagedAgents.Application do
@moduledoc false
use Application
@impl true
def start(_type, _args) do
children = [
{Finch, name: ReqManagedAgents.StreamFinch}
]
Supervisor.start_link(children, strategy: :one_for_one, name: ReqManagedAgents.Supervisor)
end
end