Skip to main content

LLM-ify your JSON schemas

Project description

llm-schema-lite

PyPI version Python Versions CI codecov License: MIT Code style: ruff

Transform verbose Pydantic JSON schemas into LLM-friendly formats. Reduce token usage by 60-85% while preserving essential type information.

🚀 Quick Start

Basic Usage

from pydantic import BaseModel
from llm_schema_lite import simplify_schema

# Define your Pydantic model
class User(BaseModel):
    name: str
    age: int
    email: str

# Transform to LLM-friendly format
schema = simplify_schema(User)
print(schema.to_string())
# Output: { name: string, age: int, email: string }

Multiple Output Formats

# JSONish format (BAML-like) - Default
schema = simplify_schema(User)
print(schema.to_string())
# { name: string, age: int, email: string }

# TypeScript format
schema_ts = simplify_schema(User, format_type="typescript")
print(schema_ts.to_string())
# interface User { name: string; age: int; email: string; }

# YAML format
schema_yaml = simplify_schema(User, format_type="yaml")
print(schema_yaml.to_string())
# name: string
# age: int
# email: string

Advanced Features

from pydantic import BaseModel, Field

class Product(BaseModel):
    name: str = Field(..., description="Product name", min_length=1)
    price: float = Field(..., ge=0, description="Price must be positive")
    tags: list[str] = Field(default_factory=list)

# Include metadata (descriptions, constraints)
schema_with_meta = simplify_schema(Product, include_metadata=True)
print(schema_with_meta.to_string())
# {
#  name: string  //Product name, minLength: 1,
#  price: float  //Price must be positive, min: 0,
#  tags: string[]
# }

# Exclude metadata for minimal output
schema_minimal = simplify_schema(Product, include_metadata=False)
print(schema_minimal.to_string())
# {
#  name: string,
#  price: float,
#  tags: string[]
# }

Nested Models

class Address(BaseModel):
    street: str
    city: str
    zipcode: str

class Customer(BaseModel):
    name: str
    email: str
    address: Address

schema = simplify_schema(Customer)
print(schema.to_string())
# { name: string, email: string, address: { street: string, city: string, zipcode: string } }

Different Output Methods

schema = simplify_schema(User)

# String output
print(schema.to_string())

# JSON output
print(schema.to_json(indent=2))

# Dictionary output
print(schema.to_dict())

# YAML output (if format_type="yaml")
print(schema.to_yaml())

📊 Token Reduction

Compare the token usage:

import json
from pydantic import BaseModel

class User(BaseModel):
    name: str
    age: int
    email: str

# Original Pydantic schema (verbose)
original_schema = User.model_json_schema()
print("Original tokens:", len(json.dumps(original_schema)))

# Simplified schema (LLM-friendly)
simplified = simplify_schema(User)
print("Simplified tokens:", len(simplified.to_string()))

# Typical reduction: 60-85% fewer tokens!

🎯 Use Cases

  • LLM Function Calling: Reduce schema tokens in function definitions
  • DSPy Integration: Native adapter for structured outputs with multiple modes
  • LangChain: Streamline Pydantic model schemas
  • Raw LLM APIs: Minimize prompt overhead with concise schemas

🔌 DSPy Integration

NEW! Native DSPy adapter with support for JSON, JSONish, and YAML output modes:

import dspy
from pydantic import BaseModel
from llm_schema_lite.dspy_integration import StructuredOutputAdapter, OutputMode

class Answer(BaseModel):
    answer: str
    confidence: float

# Create adapter with JSONish mode (60-85% fewer tokens)
adapter = StructuredOutputAdapter(output_mode=OutputMode.JSONISH)

# Configure DSPy
lm = dspy.LM(model="openai/gpt-4")
dspy.configure(lm=lm, adapter=adapter)

# Use with any DSPy module
class QA(dspy.Signature):
    question: str = dspy.InputField()
    answer: Answer = dspy.OutputField()

predictor = dspy.Predict(QA)
result = predictor(question="What is Python?")

Features:

  • 🎯 Multiple Output Modes: JSON, JSONish (BAML-style), and YAML
  • 📉 60-85% Token Reduction: With JSONish mode
  • 🔄 Input Schema Simplification: Automatically simplifies Pydantic input fields
  • 🛡️ Robust Parsing: Handles malformed outputs with automatic recovery
  • Full Compatibility: Works with Predict, ChainOfThought, and all DSPy modules

See DSPy Integration Guide for detailed documentation.

Installation

Basic Installation

pip install llm-schema-lite

With DSPy Support

pip install "llm-schema-lite[dspy]"

Using uv

# Basic
uv pip install llm-schema-lite

# With DSPy
uv pip install "llm-schema-lite[dspy]"

Development

This project uses uv for package management and includes pre-commit hooks for code quality.

Setup Development Environment

  1. Install uv if you haven't already:
curl -LsSf https://astral.sh/uv/install.sh | sh
  1. Quick setup with Make:
make setup

Or manually:

# Create virtual environment
uv venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate

# Install package with dev dependencies
uv pip install -e ".[dev]"

# Install pre-commit hooks
uv pip install pre-commit
pre-commit install
pre-commit install --hook-type commit-msg

Available Make Commands

Run make help to see all available commands:

  • make install - Install package
  • make install-dev - Install with dev dependencies
  • make test - Run tests
  • make test-cov - Run tests with coverage
  • make test-parallel - Run tests in parallel (faster)
  • make test-fast - Run tests excluding slow ones
  • make lint - Run all linters
  • make format - Format code
  • make build - Build package
  • make changelog - Generate changelog
  • make clean - Clean build artifacts

Running Tests

make test
# or
pytest

Code Quality

The project uses several tools to maintain code quality:

  • Ruff: Fast Python linter and formatter (replaces flake8, isort, and more)
  • MyPy: Static type checker for type safety
  • Bandit: Security vulnerability scanner
  • Pre-commit: Git hooks for automated checks
  • Pytest: Testing framework with coverage reporting
# Format code
make format

# Run linters
make lint

# Run pre-commit on all files
make pre-commit-run

# Run tests in parallel (faster for large test suites)
make test-parallel

Changelog Management

This project uses git-changelog with conventional commits:

# Generate changelog
make changelog

Commit message format:

  • feat: - New features
  • fix: - Bug fixes
  • docs: - Documentation changes
  • refactor: - Code refactoring
  • test: - Test changes
  • chore: - Maintenance tasks
  • perf: - Performance improvements

License

See the LICENSE file for details.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

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_schema_lite-0.3.0.tar.gz (252.0 kB view details)

Uploaded Source

Built Distribution

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

llm_schema_lite-0.3.0-py3-none-any.whl (29.2 kB view details)

Uploaded Python 3

File details

Details for the file llm_schema_lite-0.3.0.tar.gz.

File metadata

  • Download URL: llm_schema_lite-0.3.0.tar.gz
  • Upload date:
  • Size: 252.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for llm_schema_lite-0.3.0.tar.gz
Algorithm Hash digest
SHA256 113c7774f5c3c664c73c49dd1f104555a04570e5c0a7af4af06ea99f0e1265bd
MD5 39f2090e3361311792aaa12355752d94
BLAKE2b-256 61b8e804eba351dbb371ee8c312885e21307300b9e6411457470d463dc4b5e73

See more details on using hashes here.

Provenance

The following attestation bundles were made for llm_schema_lite-0.3.0.tar.gz:

Publisher: publish.yaml on rohitgarud/llm-schema-lite

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_schema_lite-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for llm_schema_lite-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 17ba8fc2de74501a206e5a776ac90514fcedaac07b2676ee9808076fc7b496d5
MD5 67a41ab15e0dddbdd0321a57481730ba
BLAKE2b-256 391abb1d7ac08defa1dc28307f2db3ecb23229361acb20e80a87c52c6f57ccfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for llm_schema_lite-0.3.0-py3-none-any.whl:

Publisher: publish.yaml on rohitgarud/llm-schema-lite

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