Metadata-Version: 2.4
Name: deep-agent-connector
Version: 0.1.0+2313713610
Summary: HTTP connector library for MentorTools Deep Agent API
Author: MentorTools
Author-email: dev@mentortools.com
Requires-Python: >=3.11,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: aiohttp (>=3.13.0,<4.0.0)
Requires-Dist: http-tools-abm (>=6.5.77270,<7.0.0)
Requires-Dist: pydantic (>=2.0.0,<3.0.0)
Description-Content-Type: text/markdown

# Deep Agent Connector Library

This folder follows the corporate `team_member_server` blueprint pattern: an installable Python
package that acts as an HTTP client for this service.

## Install (from source)

```bash
cd connector_library
poetry install
```

## Usage

```python
import asyncio

from deep_agent_connector.deep_agent_connector import DeepAgentConnector


async def main() -> None:
    async with DeepAgentConnector(base_url="http://localhost:8000", api_key=None) as client:
        health = await client.health()
        run = await client.create_run(
            user_id=1,
            portal_id=42,
            assistant_id=7,
            message="Hello",
            chat_id=123,
            chat_session_id=456,
            bot_chat_member_id=789,
        )
        print(health)
        print(run.run_id)


asyncio.run(main())
```

