Metadata-Version: 2.4
Name: null-lens
Version: 1.0.2
Summary: The missing protocol between user requests and AI actions — standardized intent parsing for every AI system.
Author-email: Null Technologies <support@null-core.ai>
License: MIT
Project-URL: Homepage, https://null-core.ai
Project-URL: Repository, https://github.com/null-core-ai/null-lens
Keywords: AI,intent,parser,standardization,sdk
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests

# ⟁ Null Lens — Python SDK

Stateless API wrapper for [Null Lens](https://null-core.ai)  
Converts any natural-language input into a deterministic schema:

**[Motive] [Scope] [Priority]**

---

## ⚙️ Install
```bash
pip install null-lens
```

## 💡 Usage
```python
from null_lens import NullLens

lens = NullLens(api_key="YOUR_API_KEY")
result = lens.parse("Summarize Q4 strategy across LATAM markets.")

print(result)
# [Motive] Summarize strategic direction for Q4
# [Scope] LATAM markets
# [Priority] Identify key actions for planning cycle
```
For complete documentation and Python SDK,
see the [root README](https://github.com/null-core-ai/null-lens#readme)

## License: MIT
