A lightweight Python library for calling LLMs through a unified interface with built-in caching, retry policies, and session management
Project description
sūtram (సూత్రం)
The thread that connects
A unified Python interface for LLM providers. One thread to connect your code to any language model — with built-in caching, retry policies, and multi-turn session management.
In Sanskrit, sūtram means "thread" or "formula" — the essential connection that holds everything together.
Features
- Unified Provider Interface — One API to call OpenRouter, OpenAI, Anthropic, and more
- Built-in Caching — Avoid redundant API calls with pluggable cache backends
- Retry Policies — Configurable exponential/fixed backoff with status-code filtering
- Multi-turn Sessions — First-class support for conversation history management
- Streaming — Real-time token-by-token output with sync and async generators
- Sync & Async — Full support for both synchronous and asynchronous workflows
- Tool Calling — Define tools with
@tooldecorator andmake_tool_config() - Structured Output — Get validated Pydantic model responses via
ResponseSchema - Extensible — Add new providers by subclassing
BaseProvider
Installation
pip install sutram
Quick Start
from sutram import create_provider, Session, DictCache
# Create a provider
provider = create_provider(
name="openrouter",
model="openai/gpt-4",
api_key="your-api-key",
cache=DictCache(),
)
# Single-turn call
response = provider.call_llm("What is the meaning of sūtram?")
print(response.content)
# Multi-turn conversation
session = Session(system_prompt="You are a helpful assistant.")
session.add_user_message("Hello!")
response = provider.chat(session.get_messages())
session.add_assistant_message(response.content)
session.add_user_message("Tell me more.")
response = provider.chat(session.get_messages())
Streaming
# Sync streaming
for delta in provider.stream_llm("Tell me a story"):
if delta.content:
print(delta.content, end="", flush=True)
# Async streaming
async for delta in provider.astream_llm("Tell me a story"):
if delta.content:
print(delta.content, end="", flush=True)
# Streaming with session
session = Session(system_prompt="You are a helpful assistant.")
session.add_user_message("Hello!")
for delta in provider.stream_chat(session.get_messages()):
if delta.content:
print(delta.content, end="", flush=True)
Streamed responses are automatically cached — subsequent identical calls return instantly from cache.
Configuration
from sutram import create_provider, DictCache
provider = create_provider(
name="openrouter",
model="openai/gpt-4",
api_key="your-api-key",
max_retries=3,
backoff_factor=1.0,
strategy="exponential",
timeout=120,
retry_on_status=[429, 500, 502, 503, 504],
cache=DictCache(),
)
Creating a Custom Provider
For providers that use the OpenAI chat completions format (OpenAI, Groq, Together, Mistral, etc.), extend OpenAICompatProvider — no methods to implement:
from sutram import OpenAICompatProvider, register_provider
@register_provider("openai", base_url="https://api.openai.com/v1/chat/completions")
class OpenAIProvider(OpenAICompatProvider):
pass
For providers with a different format, extend BaseProvider and implement _build_request_body and _parse_response:
from sutram import BaseProvider, LLMResponse, register_provider
@register_provider("myprovider", base_url="https://api.myprovider.com/v1/chat")
class MyProvider(BaseProvider):
def _build_request_body(self, messages: list[dict]) -> dict:
return {"model": self.model, "messages": messages}
def _parse_response(self, data: dict) -> LLMResponse:
return LLMResponse(
content=data["choices"][0]["message"]["content"],
raw=data,
)
Now use it like any built-in provider:
provider = create_provider(
name="myprovider",
model="my-model",
api_key="my-key",
)
The base_url in the decorator is optional — you can pass it at creation time instead:
@register_provider("myprovider")
class MyProvider(BaseProvider):
...
provider = create_provider(
name="myprovider",
model="my-model",
api_key="my-key",
base_url="https://api.myprovider.com/v1/chat",
)
License
MIT
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
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 sutram-0.5.0.tar.gz.
File metadata
- Download URL: sutram-0.5.0.tar.gz
- Upload date:
- Size: 20.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b04123e866ed3192b2e1494ca6058e4902edc096b014e7b81c37d518040d6c1b
|
|
| MD5 |
efd4eb43f2dc24e6abe9cef7094c97a7
|
|
| BLAKE2b-256 |
fb885e122f4b337d8e3bf22e0dc0362a83bb6ebf732724db4d869a31039c1227
|
File details
Details for the file sutram-0.5.0-py3-none-any.whl.
File metadata
- Download URL: sutram-0.5.0-py3-none-any.whl
- Upload date:
- Size: 13.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c1cea13e5889f83b516800f310be6caf960be7ac4183d06fda3dc8c8ad3186d
|
|
| MD5 |
5c1cdc37133e53b8da489e390fc7adf6
|
|
| BLAKE2b-256 |
76c4b5c617601eaf98863ca39ef0d338927170ed39ff12bbc976e32dbf0700ba
|