Kalibr SDK — Integrate your SaaS with every major AI model using a single SDK.
Project description
Kalibr SDK
Multi-Model AI Integration Framework
Write once. Deploy anywhere. Connect to any AI model.
Kalibr lets developers expose any Python function as a model-compatible API — instantly usable by GPT, Claude, Gemini, and beyond.
🚀 Quick Start
Install
pip install kalibr
Run the included demo
kalibr-connect serve examples/demo_app.py
Then open your browser to:
http://127.0.0.1:8000/docs
You’ll see automatically generated endpoints for your demo functions — all schema-normalized and model-ready.
⚙️ Core Features
✅ Multi-Model Support — Works with GPT Actions, Claude MCP, Gemini, and Copilot
✅ Automatic Schema Generation — Define once, serve everywhere
✅ Fast Local Development — Instantly test endpoints with kalibr-connect serve
✅ Lightweight Runtime — No dependencies beyond FastAPI + Uvicorn
🚧 Coming Soon:
• Auth & JWT user sessions
• Analytics & observability
• One-click deployment (Fly.io, AWS Lambda)
🧠 How It Works
Decorate your Python functions with @app.register():
from kalibr.kalibr_app import KalibrApp
app = KalibrApp()
@app.register()
def summarize(text: str) -> str:
"""Summarize text input."""
return text[:100] + "..."
@app.register()
def sentiment(text: str) -> dict:
"""Return a basic sentiment classification."""
return {"sentiment": "positive" if "love" in text.lower() else "neutral"}
kalibr_app = app.get_app()
Then run:
kalibr-connect serve demo_app.py
Your endpoints appear instantly at:
http://127.0.0.1:8000/docs
📁 Project Structure
kalibr/
├── __init__.py
├── __main__.py
├── kalibr_app.py
├── schema_generators.py
examples/
├── demo_app.py
└── enhanced_kalibr_example.py
📘 Documentation
See KALIBR_SDK_COMPLETE.md for full developer documentation.
Kalibr — Transform how you build AI-integrated applications.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file kalibr-1.0.15.tar.gz.
File metadata
- Download URL: kalibr-1.0.15.tar.gz
- Upload date:
- Size: 14.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89fe5d18265d9c35c0261a6e2d0060528378821c9959799386d4c655ba3a432b
|
|
| MD5 |
215677485b851746e81c3ac5e9551214
|
|
| BLAKE2b-256 |
0d19b458eff14716d5c800e80fcdaefa5c94c3d548f2bbd5cee6ba00b1cc8dcd
|
File details
Details for the file kalibr-1.0.15-py3-none-any.whl.
File metadata
- Download URL: kalibr-1.0.15-py3-none-any.whl
- Upload date:
- Size: 4.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e40d2487f257d8978afce8aaebe09fd76c507cbbe4862bdf6c1ece01172a9b8b
|
|
| MD5 |
a0288b28b82ff5063e396ff32699443e
|
|
| BLAKE2b-256 |
883f48e8ee88f7590c00a99935d97e7fb2f3d0740c0979f50ad96fb17bf54ae0
|