Shared Pydantic models used by the server and SDKs.
from agent_control_models import Agent, Step agent = Agent(agent_name="support-bot", agent_description="Support agent") step = Step(type="llm", name="chat", input="hello")
cd models uv run pytest