Metadata-Version: 2.4
Name: loopuman
Version: 1.0.1
Summary: The Human API for AI - Give your AI agents instant access to humans
Home-page: https://loopuman.com
Author: Loopuman
Author-email: support@loopuman.com
Keywords: ai human-in-the-loop microtasks langchain agents
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# 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
