Metadata-Version: 2.4
Name: humancheck-core
Version: 0.1.0
Summary: A universal human-in-the-loop operations platform for AI agents
License-Expression: MIT
License-File: LICENSE
Keywords: ai,human-in-the-loop,hitl,review,approval,ai-agents,langchain,mcp
Author: Humancheck
Author-email: hi@humancheck.dev
Requires-Python: >=3.10
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Dist: aiohttp (>=3.13.2,<4.0.0)
Requires-Dist: aiosqlite (>=0.19.0,<0.20.0)
Requires-Dist: alembic (>=1.13.0,<2.0.0)
Requires-Dist: anyio (>=4.0.0,<5.0.0)
Requires-Dist: click (>=8.1.7,<9.0.0)
Requires-Dist: fastapi (>=0.115.0,<0.116.0)
Requires-Dist: greenlet (>=3.0.0,<4.0.0)
Requires-Dist: httpx (>=0.27.0,<0.28.0)
Requires-Dist: mcp (>=1.0.0,<2.0.0)
Requires-Dist: pydantic (>=2.5.0,<3.0.0)
Requires-Dist: pydantic-settings (>=2.5.0,<3.0.0)
Requires-Dist: python-dateutil (>=2.8.2,<3.0.0)
Requires-Dist: python-multipart (>=0.0.9,<0.0.10)
Requires-Dist: pyyaml (>=6.0.1,<7.0.0)
Requires-Dist: slack-sdk (>=3.27.0,<4.0.0)
Requires-Dist: sqlalchemy (>=2.0.0,<3.0.0)
Requires-Dist: streamlit (>=1.28.0,<2.0.0)
Requires-Dist: uvicorn[standard] (>=0.30.0,<0.31.0)
Project-URL: Documentation, https://docs.humancheck.dev
Project-URL: Homepage, https://humancheck.dev
Project-URL: Repository, https://github.com/humancheck/humancheck
Description-Content-Type: text/markdown

# Humancheck

**A universal human-in-the-loop (HITL) operations platform for AI agents**

Humancheck enables AI agents to escalate uncertain or high-stakes decisions to human reviewers for approval. It's framework-agnostic, works with any AI system, and provides a complete platform for managing human oversight at scale.

## Key Features

- **Universal Integration**: Works with any AI framework via adapter pattern
  - REST API (universal)
  - LangChain/LangGraph
  - Extensible for custom frameworks
  - **Platform**: MCP 

- **Intelligent Routing**: Route reviews to the right people based on configurable rules
  - Rule-based assignment by task type, urgency, confidence score
  - Config-based routing rules
  - Priority-based rule evaluation

- **Real-time Dashboard**: Streamlit-based UI for human reviewers
  - Live review queue
  - One-click approve/reject/modify
  - Statistics and analytics

- **Flexible Workflows**: Support for both blocking and non-blocking patterns
  - Blocking: Wait for decision before proceeding
  - Non-blocking: Continue work, check back later

- **Flexible Configuration**: Simple YAML-based configuration
  - Custom routing rules
  - Default reviewers
  - Configurable thresholds

- **Feedback Loop**: Continuous improvement through feedback
  - Rate decisions
  - Comment on reviews
  - Track metrics

## Quick Start

### Installation

```bash
pip install humancheck
```

Or install from source:

```bash
git clone https://github.com/humancheck/humancheck.git
cd humancheck
poetry install
```

### Initialize Configuration

```bash
humancheck init
```

This creates a `humancheck.yaml` configuration file with sensible defaults.

### Start the Platform

```bash
humancheck start
```

This launches:
- **API Server**: http://localhost:8000
- **Dashboard**: http://localhost:8501

### Make Your First Review Request

```python
import httpx
import asyncio

async def request_review():
    async with httpx.AsyncClient() as client:
        response = await client.post(
            "http://localhost:8000/reviews",
            json={
                "task_type": "payment",
                "proposed_action": "Process payment of $5,000 to ACME Corp",
                "agent_reasoning": "Payment exceeds auto-approval limit",
                "confidence_score": 0.85,
                "urgency": "high",
                "blocking": False,
            }
        )
        review = response.json()
        print(f"Review submitted! ID: {review['id']}")

asyncio.run(request_review())
```

Open the dashboard at http://localhost:8501 to approve/reject the review!

## Usage Examples

### REST API Integration

```python
import httpx

# Non-blocking request
async with httpx.AsyncClient() as client:
    # Submit review
    response = await client.post("http://localhost:8000/reviews", json={
        "task_type": "data_deletion",
        "proposed_action": "Delete user account and all data",
        "agent_reasoning": "User requested GDPR deletion",
        "urgency": "medium",
        "blocking": False
    })
    review = response.json()
    review_id = review["id"]

    # Check status later
    status = await client.get(f"http://localhost:8000/reviews/{review_id}")

    # Get decision when ready
    if status.json()["status"] != "pending":
        decision = await client.get(f"http://localhost:8000/reviews/{review_id}/decision")
        print(decision.json())
```

For a complete example, see [`examples/basic_agent.py`](examples/basic_agent.py).

### LangChain/LangGraph Integration

Use the `HumancheckLangchainAdapter` to automatically intercept tool calls and request human approval:

```python
from langchain.agents import create_agent
from langchain_core.tools import tool
from langchain_openai import ChatOpenAI
from langgraph.checkpoint.memory import MemorySaver
from humancheck.adapters.langchain import HumancheckLangchainAdapter

@tool
def write_file(filename: str, content: str) -> str:
    """Write content to a file."""
    return f"File '{filename}' written"

# Create agent with Humancheck adapter
model = ChatOpenAI(model="gpt-4")
tools = [write_file]

agent = create_agent(
    model,
    tools,
    middleware=[
        HumancheckLangchainAdapter(
            api_url="http://localhost:8000",  # Self-hosted
            tools_requiring_approval={
                "write_file": True,  # Require approval for this tool
            }
        )
    ],
    checkpointer=MemorySaver(),
)

# Use the agent - it will automatically pause for approval when needed
result = await agent.ainvoke({"messages": [("user", "Write a file")]})
```

For complete examples:
- Self-hosted: [`examples/langchain_hitl_example.py`](examples/langchain_hitl_example.py)
- Platform: [`examples/langchain_platform_example.py`](examples/langchain_platform_example.py)

## Architecture

### Core Components

1. **Adapter Pattern**: Normalizes requests from different frameworks
   - `UniversalReview`: Common format for all review requests
   - Framework-specific adapters convert to/from UniversalReview

2. **Routing Engine**: Intelligent assignment of reviews
   - Config-based routing rules
   - Priority-based evaluation
   - Supports complex conditions

3. **Dual Interface**:
   - **REST API**: Universal HTTP integration (Open Source & Platform)
   - **MCP Server**: Native Claude Desktop integration (Platform only - requires server)

4. **Dashboard**: Real-time Streamlit UI

### Data Model

```
Reviews
  ├── Decisions
  ├── Feedback
  ├── Assignments
  └── Attachments
```

## Configuration

Edit `humancheck.yaml`:

```yaml
api_port: 8000
streamlit_port: 8501
host: 0.0.0.0
storage: sqlite
db_path: ./humancheck.db
confidence_threshold: 0.8
require_review_for:
  - high-stakes
  - compliance
default_reviewers:
  - admin@example.com
log_level: INFO
```

Environment variables (prefix with `HUMANCHECK_`):

```bash
export HUMANCHECK_API_PORT=8000
export HUMANCHECK_DB_PATH=/var/lib/humancheck/db.sqlite
```

## CLI Commands

```bash
# Initialize configuration
humancheck init [--config-path PATH]

# Start API + Dashboard
humancheck start [--config PATH] [--host HOST] [--port PORT]

# Check status
humancheck status [--config PATH]

# View recent reviews
humancheck logs [--limit N] [--status-filter STATUS]
```

## Advanced Usage

### Custom Routing Rules

Configure routing rules in `humancheck.yaml`:

```yaml
routing_rules:
  - name: "High-value payments to finance team"
    priority: 10
    conditions:
      task_type: {"operator": "=", "value": "payment"}
      metadata.amount: {"operator": ">", "value": 10000}
    assign_to: "finance@example.com"
    is_active: true
  - name: "Urgent reviews to on-call"
    priority: 20
    conditions:
      urgency: {"operator": "=", "value": "critical"}
    assign_to: "oncall@example.com"
    is_active: true
```

### Metadata Usage

You can store additional information in the `metadata` field:

```python
await client.post("http://localhost:8000/reviews", json={
    "task_type": "payment",
    "proposed_action": "Pay $5,000",
    "metadata": {
        "organization": "acme-corp",
        "agent": "payment-bot-v2",
        "amount": 5000,
        "currency": "USD"
    }
})
```

## Testing

```bash
# Run tests
pytest

# Run with coverage
pytest --cov=humancheck tests/
```

## API Documentation

Once running, visit:
- API docs: http://localhost:8000/docs
- Alternative docs: http://localhost:8000/redoc

## Roadmap

### Core Features (Open Source)

- [x] Core HITL functionality
- [x] Framework adapters (REST, LangChain)
- [x] Basic routing (config-based)
- [x] Attachments and preview
- [x] Connectors (Slack, email)
- [ ] Additional connector types
- [ ] Enhanced dashboard features
- [ ] Improved routing rule conditions
- [ ] Community contributions

### Advanced Features (Platform)

Advanced features are available in [Humancheck Platform](https://platform.humancheck.dev):

- ✅ MCP (Claude Desktop native) - requires server
- ✅ Advanced routing rules (database-backed, UI control, prioritization, fine-grained ACL)
- ✅ Dozens of built-in connectors (instant UI setup)
- ✅ No-code integrations (n8n, Zapier, Gumloop, etc.)
- ✅ Multi-user approval workflows
- ✅ Webhooks with retry logic
- ✅ Advanced analytics
- ✅ Organizations, Users, Teams
- ✅ Evals framework
- ✅ OAuth connectors
- ✅ Audit logs

<Note>
For production deployments with advanced features, check out [Humancheck Platform](https://platform.humancheck.dev) - the managed cloud service with enterprise-grade features.
</Note>

## Contributing

Contributions are welcome! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.

## License

MIT License - see [LICENSE](LICENSE) for details.

## Acknowledgments

Built with:
- [FastAPI](https://fastapi.tiangolo.com/)
- [Streamlit](https://streamlit.io/)
- [SQLAlchemy](https://www.sqlalchemy.org/)
- [Pydantic](https://pydantic-docs.helpmanual.io/)
- [MCP](https://github.com/anthropics/mcp)

## Support

- Documentation: [docs.humancheck.dev](https://docs.humancheck.dev)
- Issues: [GitHub Issues](https://github.com/humancheck/humancheck/issues)

---

