Skip to main content

A JSON library wrapper that gracefully handles markdown-wrapped JSON from LLMs.

Project description

llm-json - stop begging LLMs for valid JSON

llm-json

PyPI version Upload Python Package License: MIT

llm-json is a Python package that acts as a drop-in replacement for the standard \json\ library. It automatically handles JSON strings that are often returned by Large Language Models (LLMs) wrapped in Markdown code fences or backticks—so you don’t have to beg the AI to always produce “valid JSON.”

Why This Project?

After repeatedly struggling with LLMs returning JSON (but also including backticks, code fences, or extraneous text), I got fed up. Structured output is nice, but it’s not always possible (or desirable) to force the LLM to output perfect JSON. Rather than overcomplicating prompt engineering, llm-json does the messy cleanup for you.

Installation

Grab the latest release from PyPI:

uv pip install llm-json

Can't you just use Structured Outputs?

Yes, but not all providers support them in the same way

Why not use Instructor / Outlines

I love both of those tools, this is just a simple wrapper to make my life easier, I don't need a full blown library for structured outputs, just a simple json validator that works the way LLMs do!

Usage

The core idea is that llm-json works exactly like the standard Python json library, but with automatic fallback parsing for those pesky backticks:

from llm_json import json

# A string returned by an LLM, might be in triple-backtick code blocks or inline backticks
s = """
```json
{
  "hello": "world"
}
```"""

data = json.loads(s)
print(data)  # => {'hello': 'world'}

All other functions (json.dump, json.dumps, json.load) also work the same way. Just replace your existing import json with from llm_json import json, and you’re good to go.

Handling Extra Text

llm-json will ignore extraneous text before and after the code fences and attempt to parse the first valid snippet it finds. It also handles inline backticks (like ```{"hello":"world"}```).

Contributing

Pull requests and issues are very welcome! Check out the GitHub repo to file issues or propose changes.

Testing

We use pytest. To run tests locally:

git clone https://github.com/altryne/llm-json.git
cd llm-json
pip install -e .
pip install pytest
pytest tests

You should see something like:

============================= test session starts =============================
platform darwin -- Python 3.x, pytest-8.x, ...
collected 9 items

tests/test_json.py .........                                                 [100%]

============================== 9 passed in 0.02s ==============================

License

This project is licensed under the MIT License.

Author

Made with ❤️ by @altryne.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

llm_json-0.1.5.tar.gz (5.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

llm_json-0.1.5-py3-none-any.whl (5.2 kB view details)

Uploaded Python 3

File details

Details for the file llm_json-0.1.5.tar.gz.

File metadata

  • Download URL: llm_json-0.1.5.tar.gz
  • Upload date:
  • Size: 5.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for llm_json-0.1.5.tar.gz
Algorithm Hash digest
SHA256 f544b8d506dc16c47db15783989f24b9e1885403e80be5ddf63c588caf9a588d
MD5 04b9bc49ed50c55db843a350781e5bf8
BLAKE2b-256 6d32e7b7d58c4a527ac9348a3eecd908c5768cde23d5d5ea49cbbb2a45b41af9

See more details on using hashes here.

Provenance

The following attestation bundles were made for llm_json-0.1.5.tar.gz:

Publisher: python-publish.yml on altryne/llm-json

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file llm_json-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: llm_json-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 5.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for llm_json-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 cba84ccc5ae29c5e31fe781d9d90b3324fee459e848918b56f8cc2d4218c8080
MD5 79c25de12ffe9c296cecf1c5f58401b3
BLAKE2b-256 f62573dc6a686e2ced25c81e4d3b0aabd33cc8ecab8013541b68c91b97838ff7

See more details on using hashes here.

Provenance

The following attestation bundles were made for llm_json-0.1.5-py3-none-any.whl:

Publisher: python-publish.yml on altryne/llm-json

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page