Metadata-Version: 2.3
Name: coa-dev-coagent
Version: 0.7.0.post1
Summary: CoAgent can help you assess, test, and monitor AI models and agents
Author: Coagent Developers
Author-email: Coagent Developers <team@infinyon.com>
Requires-Dist: requests>=2.31.0
Requires-Dist: pytest>=7.4.0 ; extra == 'test'
Requires-Dist: pytest-mock>=3.11.1 ; extra == 'test'
Requires-Dist: responses>=0.23.0 ; extra == 'test'
Requires-Python: >=3.10
Provides-Extra: test
Description-Content-Type: text/markdown

# coa-dev-coagent

A Python client library for interacting with Coagent services.

## Installation

```bash
pip install coa-dev-coagent
```

## Usage

```python
from coa_dev_coagent import CoagentClient

client = CoagentClient()

# Session-based logging with structured data
client.log_session_start("session123", "Hello world", prompt_number=1)
client.log_llm_response("session123", "Hi there", 1, 1,
    input_tokens=10, output_tokens=5)
client.log_error("session123", 1, 1, "Connection failed",
    error_type="network")
```

## Development

This package is part of the coagent-python-client workspace.