Metadata-Version: 2.4
Name: agent-control-models
Version: 7.6.0
Summary: Shared data models for Agent Control server and SDK
Author: Agent Control Team
License: Apache-2.0
Requires-Python: >=3.12
Requires-Dist: jsonschema>=4.0.0
Requires-Dist: pydantic>=2.12.4
Description-Content-Type: text/markdown

# Agent Control Models

Shared Pydantic models used by the server and SDKs. These models define the API contract for agents, controls, evaluation requests, and responses.

## What this package provides

- Strongly typed request/response schemas
- Consistent validation and serialization across server and SDKs
- A single source of truth for model changes

## Usage

```python
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")
```

## Tests

```bash
cd models
uv run pytest
```

Full guide: https://docs.agentcontrol.dev/components/models
