The Agent Development Kit (ADK) overlay for the Agentex API.
This package ships everything under agentex.lib.*:
- ACP server (
agentex.lib.sdk.fastacp) — FastAPI-based agent control plane. - Temporal workflows (
agentex.lib.core.temporal) — durable agent execution. - CLI (
agentex.lib.cli) —agentex init,agentex run, deploy helpers. - LLM provider integrations (
agentex.lib.adk.providers,agentex.lib.core.temporal.plugins) — OpenAI Agents, Claude Agent SDK, pydantic-ai, langgraph, litellm. - Observability (
agentex.lib.core.tracing,agentex.lib.core.observability) — SGP, Datadog, OpenTelemetry tracing processors.
pip install agentex-sdkThis automatically pulls in agentex-client (the slim Stainless-generated REST client) so from agentex import Agentex, AsyncAgentex works the same as before.
agentex-sdk— you're authoring agents. Pulls everything: ACP server, Temporal, MCP, LLM providers, observability, CLI. ~37 deps.agentex-client— you only need to call the Agentex REST API. No agent authoring, no Temporal workflows, no FastACP server, no provider integrations. 6 deps.
The two packages contribute disjoint files to the agentex.* namespace — agentex/lib/* ships only from agentex-sdk.
This package is hand-authored and lives at adk/ inside scaleapi/scale-agentex-python. The Stainless generator preserves adk/** via keep_files so its codegen never touches anything here. The sibling agentex-client package lives at the repo root and IS Stainless-generated.