Metadata-Version: 2.4
Name: qalron
Version: 2.1.0
Summary: QALRON - Secure AI Infrastructure SDK by Genorrow Enterprises Limited
Home-page: https://github.com/GENORROW/QALRON
Author: Genorrow Enterprises Limited
Author-email: team@qalron.dev
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Security :: Cryptography
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy<3,>=1.17
Requires-Dist: scipy>=1.5
Requires-Dist: pyyaml>=6.0
Requires-Dist: cryptography>=41.0.0
Requires-Dist: requests>=2.31.0
Provides-Extra: dev
Requires-Dist: pytest>=7.4.0; extra == "dev"
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
Requires-Dist: black>=23.0.0; extra == "dev"
Requires-Dist: flake8>=6.1.0; extra == "dev"
Requires-Dist: mypy>=1.5.0; extra == "dev"
Provides-Extra: docs
Requires-Dist: mkdocs>=1.5.0; extra == "docs"
Requires-Dist: mkdocs-material>=9.4.0; extra == "docs"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

﻿# QALRON v2.0 - Infrastructure SDK for Multi-Agent AI

**The only SDK that combines quantum-resistant security + cost tracking + compliance audit trails**

[![PyPI version](https://badge.fury.io/py/QALRON.svg)](https://pypi.org/project/QALRON/)
[![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

---

## 🚀 Quick Start

### Installation
```bash
pip install QALRON
```

### Free Tier (Offline, No API Key)
```python
from QALRON.client import AgentClient

# Works completely offline - no API key needed!
client = AgentClient(agent_id="financial_agent")

# Every message is cryptographically signed
envelope = client.send_message(
    to_agent="compliance_agent",
    content="Transfer $1M to account XYZ"
)

# Tamper detection built-in
if not client.verify_message(envelope):
    raise SecurityError("Message was modified!")
```

**Output:**
```
🔒 Free mode: Local-only (1000 msgs/day)
✅ Message signed with quantum-resistant hash
✅ Stored locally at ~/.QALRON/
```

### Premium Tier (Cloud Monitoring + Analytics)
```python
# Add API key to unlock premium features
client = AgentClient(
    agent_id="sales_agent",
    api_key="sk-premium-your-key-here"  # Get free at QALRON.io
)

# Now with real-time telemetry
client.send_message("analyst", "Analyze Q4 sales data")

# View live dashboard:
# https://QALRON.io/portal
```

**Premium Features:**
- 📊 Real-time agent activity dashboard
- 💰 Per-agent cost tracking (LLM costs)
- 📈 100,000 messages/month
- 📄 Compliance audit trail export (CSV)

---

## ✨ Why QALRON?

### Enterprise Pain Points Solved:

#### 1. **Security** - "How do I know agents aren't lying?"
```python
# ✅ SOLVED: Cryptographic message signing
envelope = client.send_message("agent", "Approve $10M transaction")

# If anyone modifies the message:
if not client.verify_message(envelope):
    print("🚨 FRAUD DETECTED")  # ← Catches tampering instantly
```

#### 2. **Compliance** - "Regulators want proof"
```python
# ✅ SOLVED: Every message has an audit trail
client.export_audit_trail()  # Downloads CSV with signatures

# Legally admissible evidence:
# - Timestamp: 2026-02-03T10:30:45Z
# - Agent: financial_agent
# - Signature: a8f3d9e2c4b7...
# - Verified: ✅
```

#### 3. **Cost Control** - "LLM costs are out of control"
```python
# ✅ SOLVED: Automatic cost tracking
client.chat("Summarize 500-page document", model="gpt-4")

# Dashboard shows:
# - Agent: analyst → $2.45
# - Agent: writer → $1.32
# - Total: $3.77
```

---

## 🎯 Features

| Feature | Free Tier | Premium Tier |
|---------|-----------|--------------|
| **Quantum-Resistant Signing** | ✅ | ✅ |
| **Tamper Detection** | ✅ | ✅ |
| **Local Message Storage** | ✅ | ✅ |
| **Messages/Month** | 1,000/day | 100,000/month |
| **Real-Time Dashboard** | ❌ | ✅ |
| **Cost Tracking** | ❌ | ✅ |
| **Audit Trail Export** | ❌ | ✅ |
| **Team Collaboration** | ❌ | ✅ |

---

## 📖 Full Documentation

### Basic Usage

```python
from QALRON.client import AgentClient

# Initialize
client = AgentClient(agent_id="my_agent")

# Send message
envelope = client.send_message(
    to_agent="other_agent",
    content="Process invoice #12345",
    metadata={"priority": "high"}
)

# Retrieve messages
messages = client.get_messages(sender="other_agent")

# Check usage (free tier)
stats = client.get_usage_stats()
print(f"Used {stats['messages_today']}/{stats['daily_limit']}")
```

### Advanced: Custom LLM Integration

```python
from openai import OpenAI

# Bring your own LLM
llm = OpenAI().chat.completions.create

client = AgentClient(
    agent_id="analyst",
    api_key="sk-premium-xxx",
    llm=llm  # ← QALRON tracks costs automatically
)

# Automatically tracked
response = client.chat("Analyze Q4 revenue", model="gpt-4")

# Dashboard shows:
# - Model: gpt-4
# - Cost: $0.12
# - Tokens: 1,240
```

### Tamper Detection Example

```python
from QALRON.layer2 import MessageEnvelope
from QALRON.layer1 import MarkBluHasher

# Create envelope
hasher = MarkBluHasher()
envelope = MessageEnvelope(
    sender="agent_a",
    receiver="agent_b",
    content="Transfer $1,000,000"
)

# Sign
signature = envelope.sign(hasher)

# ⚠️ Attacker modifies content
envelope.content = "Transfer $5,000,000"  # Fraud!

# Verification catches it
if not envelope.verify(hasher):
    print("🚨 MESSAGE TAMPERED - FRAUD DETECTED")
    # Block transaction, alert security
```

---

## 🏢 Enterprise Use Cases

### Financial Services
```python
# SEC compliance: Every trade must have audit trail
trade_client = AgentClient(agent_id="trading_bot", api_key=api_key)
trade_client.send_message("compliance", "Execute trade: 1000 shares AAPL")

# Later: Export for SEC audit
trade_client.export_audit_trail()  # Legally admissible CSV
```

### Healthcare (HIPAA)
```python
# Patient data access must be logged
health_client = AgentClient(agent_id="nurse_assistant", api_key=api_key)
health_client.send_message("doctor_agent", "Patient chart for John Doe")

# HIPAA audit: Who accessed what, when?
# All tracked automatically with cryptographic proof
```

### Customer Support
```python
# Track LLM costs per support agent
support_client = AgentClient(agent_id="support_bot_1", api_key=api_key)

# Dashboard shows:
# - Agent 1: $45.23/month (efficient! ✅)
# - Agent 2: $312.14/month (needs optimization ⚠️)
```

---

## 🛠️ Installation & Setup

### 1. Install Package
```bash
pip install QALRON
```

### 2. Get API Key (Optional)
Visit [QALRON.io](https://QALRON.io) and sign up for free premium tier.

### 3. Start Using
```python
from QALRON.client import AgentClient

# Free tier - works immediately
client = AgentClient(agent_id="my_first_agent")
client.send_message("other_agent", "Hello world!")
```

---

## 🔐 Security Architecture

### MarkBluHasher Algorithm
QALRON uses a custom **quantum-resistant hashing** algorithm combining:
1. Quantum circuit simulation (Walsh-Hadamard transform)
2. Classical diffusion layers
3. Deterministic S-Box generation

**Result:** Messages are tamper-proof even against future quantum computers.

### Data Isolation
- Each API key is linked to a unique user account
- Telemetry data is isolated by `user_email`
- No cross-contamination between customers

---

## 📊 Monitoring Dashboard

Premium users get access to:

- **Real-Time Activity Feed** - See agent messages as they happen
- **Cost Analytics** - Per-agent LLM cost breakdown with charts
- **Usage Quotas** - Track monthly message usage (100k limit)
- **Audit Export** - Download CSV for compliance audits

Visit: [QALRON.io/Portal](https://QALRON.io/portal)

---

## 🤝 Contributing

We welcome contributions! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.

---

## 📄 License

MIT License - see [LICENSE](LICENSE) file

---

## 🌐 Links

- **Website:** [QALRON.io](https://QALRON.io)
- **Documentation:** [docs.QALRON.io](https://docs.QALRON.io)
- **Dashboard:** [QALRON.io/portal](https://QALRON.io/portal)
- **GitHub:** [github.com/QALRON/QALRON](https://github.com/QALRON/QALRON)
- **PyPI:** [pypi.org/project/QALRON/](https://pypi.org/project/QALRON/)

---

## 💬 Support

- **Email:** support@QALRON.io
- **Issues:** [GitHub Issues](https://github.com/QALRON/QALRON/issues)
- **Discord:** [Join Community](https://discord.gg/QALRON)

---

**Made with ❤️ by the QALRON Team**

*Securing the future of multi-agent AI*
