Skip to main content

Production-ready framework for reliable LLM orchestration

Project description

PromptGuard 🛡️

The Framework for Reliable LLM Orchestration

PromptGuard is a Python library that brings production-grade reliability, type safety, and observability to LLM applications. Think of it as "Pydantic meets Circuit Breaker for AI" - reducing boilerplate by 80% while making your AI apps bulletproof.

License: MIT Python 3.9+


🎯 The Problem We Solve

Every AI engineer writes the same boilerplate:

  • Manual retry logic with exponential backoff
  • Model fallback chains when primary fails
  • Response parsing with regex/string manipulation
  • Token counting and cost tracking
  • Response validation and error handling

PromptGuard eliminates all of this.


✨ Core Features

1. Smart Execution with Auto-Retry & Fallbacks

from promptguard_pro import PromptChain

chain = PromptChain(
    models=["anthropic/claude-3-5-sonnet", "openai/gpt-4o", "groq/llama-70b"],
    strategy="cascade",
    max_retries=3,
    retry_delay="exponential"
)

result = await chain.execute("Analyze this document...")
print(result.response)  # Guaranteed to succeed or raise clear error

2. Type-Safe Response Validation

from pydantic import BaseModel, Field
from promptguard_pro import PromptChain

class EvaluationResponse(BaseModel):
    evaluation: str = Field(description="Overall evaluation")
    score: int = Field(ge=0, le=100)
    reason: str

chain = PromptChain(
    models=["anthropic/claude-3-5-sonnet"],
    response_schema=EvaluationResponse,
    validation_mode="strict"
)

result = await chain.execute(prompt)
print(result.response.score)  # Type-safe!

3. Multi-Provider Support

chain = PromptChain(
    models=[
        "anthropic/claude-3-5-sonnet",
        "openai/gpt-4o",
        "groq/llama-3-70b",
        "cohere/command-r-plus",
        "google/gemini-1.5-pro"
    ]
)

4. Automatic Token Tracking & Cost Estimation

result = await chain.execute(prompt)

print(result.metadata.tokens_used)
print(result.metadata.estimated_cost)
print(result.metadata.model_used)
print(result.metadata.execution_time_ms)

5. Response Caching

from promptguard_pro import CacheBackend

chain = PromptChain(
    models=["anthropic/claude-3-5-sonnet"],
    cache=CacheBackend.memory(),  # or .redis() or .disk()
    cache_ttl=3600
)

result1 = await chain.execute("What is AI?", cache_key="ai_def_v1")
result2 = await chain.execute("What is AI?", cache_key="ai_def_v1")
assert result2.metadata.cached == True

6. Semantic Response Validation

from promptguard_pro import validators

chain = PromptChain(
    models=["anthropic/claude-3-5-sonnet"],
    validators=[
        validators.length_range(min_chars=100, max_chars=5000),
        validators.contains_keywords(["risk", "evaluation"]),
        validators.has_citations(required=True),
        validators.sentiment_check(allowed=["neutral", "positive"])
    ]
)

7. Streaming Support

chain = PromptChain(models=["anthropic/claude-3-5-sonnet"])

async for chunk in chain.stream("Write a long essay..."):
    print(chunk.delta, end="", flush=True)

8. Batch Processing

prompts = ["Evaluate doc 1...", "Evaluate doc 2...", ...]

results = await chain.batch_execute(
    prompts,
    max_concurrent=5,
    show_progress=True
)

📦 Installation

# Basic installation
pip install promptguard-pro

# With all features
pip install promptguard-pro[all]

# With specific features
pip install promptguard-pro[cache]      # Redis caching
pip install promptguard-pro[validation]  # Semantic validators
pip install promptguard-pro[metrics]     # Prometheus metrics

🚀 Quick Start

import asyncio
from promptguard_pro import PromptChain, validators, CacheBackend
from pydantic import BaseModel

class Analysis(BaseModel):
    summary: str
    score: int
    recommendations: list[str]

async def main():
    chain = PromptChain(
        models=[
            "anthropic/claude-3-5-sonnet",
            "openai/gpt-4o",
            "groq/llama-70b"
        ],
        strategy="cascade",
        max_retries=3,
        response_schema=Analysis,
        validators=[
            validators.length_range(min_chars=100),
            validators.has_citations()
        ],
        cache=CacheBackend.memory(),
        cache_ttl=3600
    )
    
    result = await chain.execute(
        prompt="Analyze this document: ...",
        cache_key="analysis_v1"
    )
    
    print(f"Score: {result.response.score}")
    print(f"Cost: ${result.metadata.estimated_cost:.4f}")
    print(f"Time: {result.metadata.execution_time_ms:.0f}ms")

asyncio.run(main())

📚 Documentation


🧪 Testing

# Run all tests
pytest tests/ -v

# Run with coverage
pytest tests/ --cov=promptguard --cov-report=html

# Run specific test file
pytest tests/unit/test_core.py -v

🔧 Configuration

Environment Variables

# API Keys
export ANTHROPIC_API_KEY=sk-ant-...
export OPENAI_API_KEY=sk-...
export GROQ_API_KEY=gsk-...
export COHERE_API_KEY=...
export GOOGLE_API_KEY=...

# Redis
export REDIS_URL=redis://localhost:6379

🤝 Contributing

Contributions are welcome! Please see CONTRIBUTING.md for guidelines.


📄 License

MIT License - See LICENSE file for details


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

promptguard_pro-0.1.3.tar.gz (22.8 kB view details)

Uploaded Source

Built Distribution

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

promptguard_pro-0.1.3-py3-none-any.whl (33.9 kB view details)

Uploaded Python 3

File details

Details for the file promptguard_pro-0.1.3.tar.gz.

File metadata

  • Download URL: promptguard_pro-0.1.3.tar.gz
  • Upload date:
  • Size: 22.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.0

File hashes

Hashes for promptguard_pro-0.1.3.tar.gz
Algorithm Hash digest
SHA256 d67f7c64dfc83581d93fd353330a1238f8561682479c39bb030431b4c2dd8248
MD5 8e6558f20d27e1cf56699350a5172f33
BLAKE2b-256 d83133473ffa2a44b8dc77c616527c131bbe36835ac3b715129b34b95e31d87b

See more details on using hashes here.

File details

Details for the file promptguard_pro-0.1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for promptguard_pro-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 53dfd424b226be0a91daf2d4a35a5e7cbdab6c3e0b4d298794eb3ab4fc481bd6
MD5 a709b39b77871285599bccfb71c4f8fd
BLAKE2b-256 af2c3d3ba1a0feb3ac7d67c9d647e0c23deaf0cbdcf98f317211e132f6c004b1

See more details on using hashes here.

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