PyInferenceManager
Use any LLM. Switch models without rewriting code. Cut inference costs 40-60%.
Intelligently route requests across Claude, GPT-4, Gemini, Llama, Mistral, and more based on cost, speed, or availability. One line of code. Automatic failover. No vendor lock-in.
30-Second Start
from pyinferencemanager import Manager
# Create manager (routes across all providers)
mgr = Manager()
# Same code. Different models. Different costs.
response = mgr.chat(
"Which LLM should I use for this task?",
prefer="cheapest" # or "fastest" or "highest-quality"
)
print(response.text)
print(f"Used: {response.model}") # Which provider was chosen?
print(f"Cost: ${response.cost:.4f}") # How much did it cost?
Why PyInferenceManager?
The Problem:
- Each LLM has different APIs (Claude, OpenAI, Google, Anthropic, etc.)
- Costs vary wildly (GPT-4 is 10x more expensive than Llama)
- You can't switch models without rewriting your code
- Provider outages break your application
The Solution:
- One unified API for all LLM providers
- Automatic routing based on cost, speed, or quality
- Provider failover (if Claude is down, switch to GPT-4 automatically)
- Easy cost comparison and optimization
Key Features
- 11 Providers: Claude (Anthropic), GPT-4/3.5 (OpenAI), Gemini (Google), Llama (Meta), Mistral, Cohere, PaLM, Falcon, and more
- Smart Routing: Automatic selection based on cost/speed/quality
- Cost Tracking: Real-time cost estimation and reporting
- Failover: Automatic provider switching if one goes down
- Batch Processing: Process 1000s of requests with automatic optimization
- Streaming Support: Get responses as they arrive
- Rate Limiting: Built-in quotas and backoff
Real-World Use Cases
Cost Optimization:
# Cheap tasks use Llama, complex tasks use Claude
response = mgr.chat(prompt, prefer="cheapest")
# Llama for summarization: $0.0001
# Claude for reasoning: $0.001
# Automatic choice based on task difficulty
Reliability:
# If Claude API is down, automatically use GPT-4
response = mgr.chat(prompt, fallback="gpt-4")
Multi-Model Comparison:
# Test a prompt across all providers
for model in ["claude", "gpt-4", "gemini", "llama"]:
result = mgr.chat(prompt, model=model)
print(f"{model}: ${result.cost}")
Provider Comparison
| Provider | Speed | Cost | Quality | Notes |
|---|---|---|---|---|
| Claude 3 Opus | Fast | $$ | Excellent | Best reasoning |
| GPT-4 | Medium | $$$ | Excellent | General purpose |
| Gemini | Fast | $ | Good | Great value |
| Llama 2 | Slow | $ | Good | Local option |
| Mistral | Fast | $ | Good | European option |
Installation
pip install pyinferencemanager
# or with uv
uv pip install pyinferencemanager
Set API keys (one time):
export ANTHROPIC_API_KEY=sk-...
export OPENAI_API_KEY=sk-...
export GOOGLE_API_KEY=goog-...
Documentation
- Quick Start — Get your first request working
- Providers — How to connect to each service
- Routing Strategies — Cost vs. speed vs. quality
- Examples — Real-world applications
License
Proprietary License - Free to use with explicit attribution. See LICENSE.
PyInferenceManager v2.0.0 | Smart LLM routing | Python 3.10+
License
MIT
MCP 2.0 Mega-Platform | v2.0.0 | Wheels-Only Distribution
Release files for pyinferencemanager 1.0.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| pyinferencemanager-1.0.0.tar.gz | 84.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| pyinferencemanager-1.0.0-cp310-abi3-macosx_11_0_arm64.whl | CPython 3.10 | abi3 | macOS 11.0+ ARM64 | Details |
Total release size: 3.4 MB
Release files / pyinferencemanager-1.0.0.tar.gz
| Download URL | pyinferencemanager-1.0.0.tar.gz |
|---|---|
| Size | 84.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
9939171f4c96d0d6d818118bf1156107a6931302934291a2415ee4d1a79db600
|
|
BLAKE2b-256 checksum How to use checksums |
dc1a8a38c80fa4cc56ac47c22a785d4ad6abded717361a6fa80a36677d040bdf
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pyinferencemanager-1.0.0-cp310-abi3-macosx_11_0_arm64.whl
| Download URL | pyinferencemanager-1.0.0-cp310-abi3-macosx_11_0_arm64.whl |
|---|---|
| Size | 3.3 MB |
| Tags | CPython 3.10 abi3 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
7b0cfb7e6178fba10d5524b13d4c825bb49d09763f0b655ba3fd1d08825e91cc
|
|
BLAKE2b-256 checksum How to use checksums |
60b94d994ef50b262a06fa964b6cf247d29704cd12b511f71d69320e177042b7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|