Metadata-Version: 2.5
Name: sannex-agent
Version: 0.1.0
Summary: Official Python Telemetry & Monitoring Client for Sannex AI Operations
Project-URL: Homepage, https://sannex.ng
Project-URL: Repository, https://github.com/sannex/sannex-agent
Author-email: Sannex Tech LTD <info@sannex.ng>
License: MIT
Requires-Python: >=3.9
Requires-Dist: httpx>=0.24.0
Description-Content-Type: text/markdown

# sannex-agent (Python SDK)

Official, ultra-lightweight Python client for Sannex AI Operations, telemetry streaming, and dynamic remote configuration sync.

## Installation

```bash
pip install sannex-agent
```

## Quick Start

```python
from sannex_agent import SannexClient

# Initialize client
client = SannexClient(api_key="your_sannex_api_key")

# Track customer interaction / transaction asynchronously
client.track(
    channel="whatsapp",
    customer_id="+2348012345678",
    event="payment_success",
    amount=25000.0,
    metadata={"order_id": "ORD-123456", "gateway": "paystack"}
)

# Fetch dynamic system prompts and knowledge base configs
config = client.get_config()
print(config)

# Graceful shutdown
client.close()
```

## License
MIT
