Metadata-Version: 2.4
Name: llm-to-json
Version: 0.0.0
Summary: Tiny wrapper exposing Prompture helpers to convert LLM output into JSON.
Author-email: Juan Denis <juan@vene.co>
License: MIT
Keywords: llm,json,prompt,structured-output
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: prompture>=0.0.1

# llm-to-json

Tiny wrapper around `prompture` with a minimal, easy-to-use API for converting LLM output (or raw text) into JSON according to a schema.

Install:
```bash
pip install llm-to-json
```

Usage:

```python
from llm_to_json import from_llm_text
schema = {"name": "string", "age": "int"}
print(from_llm_text("Name: Juan Age: 30", schema))
```
