# Loopuman Python SDK

**The Human API for AI** - Give your AI agents instant access to humans.

## Installation
```bash
pip install loopuman
```

## Quick Start
```python
from loopuman import Loopuman

client = Loopuman(api_key="your_api_key")

# Ask a human a question (waits for response)
result = client.ask(
    question="Is this image appropriate for children?",
    context="Image shows a sunset over mountains",
    budget_cents=25
)

print(result.response)  # Human's answer
```

## Use Cases

- **Content Moderation** - Human review of AI-generated content
- **Fact Verification** - Humans verify claims before publishing
- **RLHF Data** - Collect human feedback for AI training
- **Quality Assurance** - Human oversight for critical decisions

## Pricing

- Tasks from $0.10
- Pay only for completed work
- No subscriptions

## Links

- Website: https://loopuman.com
- API Docs: https://loopuman.com/developers
- API Endpoint: https://api.loopuman.com

## License

MIT
