Zero-dependency LiteLLM-compatible facade for OpenAI, Anthropic, and OpenRouter
Project description
slimllm
Zero-dependency Python facade for OpenAI, Anthropic, and OpenRouter — designed for AWS Lambda.
Why
- No external dependencies — uses only Python stdlib (
http.client,ssl,json,asyncio) - LiteLLM-compatible API — same
completion()call signature, swap without rewriting callers - Lambda-friendly — tiny cold start, no bloat
- Supports streaming, tool use, and JSON mode
Supported providers
| Model prefix | Provider | Env var |
|---|---|---|
gpt-*, o1-*, o3-* |
OpenAI | OPENAI_API_KEY |
claude-*, anthropic/… |
Anthropic | ANTHROPIC_API_KEY |
openrouter/… |
OpenRouter | OPENROUTER_API_KEY |
Install
pip install slimllm
Usage
import slimllm
# Non-streaming
resp = slimllm.completion(
model="gpt-4o",
messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.content)
# Streaming
stream = slimllm.completion("claude-3-5-sonnet-20241022", messages, stream=True)
for chunk in stream:
print(chunk.choices[0].delta.content or "", end="", flush=True)
final = stream.get_final_response()
# Async
resp = await slimllm.acompletion("gpt-4o", messages)
# Async streaming
async for chunk in slimllm.astream("claude-3-5-sonnet-20241022", messages):
print(chunk.choices[0].delta.content or "", end="")
# Tool use (OpenAI format — auto-converted for Anthropic)
tools = [{
"type": "function",
"function": {
"name": "get_weather",
"description": "Get current weather",
"parameters": {
"type": "object",
"properties": {"city": {"type": "string"}},
"required": ["city"],
},
},
}]
resp = slimllm.completion("claude-3-5-sonnet-20241022", messages, tools=tools)
# OpenRouter
resp = slimllm.completion("openrouter/meta-llama/llama-3.3-70b-instruct", messages)
API key resolution
Keys are looked up in this order:
- Explicit
api_key=kwarg - Environment variable (
OPENAI_API_KEY,ANTHROPIC_API_KEY,OPENROUTER_API_KEY)
Response shape
All providers return the same OpenAI-shaped types:
resp.content # str | None
resp.tool_calls # list[ToolCall] | None
resp.choices[0].finish_reason # "stop" | "length" | "tool_calls"
resp.usage.prompt_tokens
resp.usage.completion_tokens
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
slimllm-1.3.0.tar.gz
(25.3 kB
view details)
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
slimllm-1.3.0-py3-none-any.whl
(24.4 kB
view details)
File details
Details for the file slimllm-1.3.0.tar.gz.
File metadata
- Download URL: slimllm-1.3.0.tar.gz
- Upload date:
- Size: 25.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87b30f7d583f55190d9cb629d74f3ceef7ec432d0425ac168057f8f760df7721
|
|
| MD5 |
78f3bc39accebf2544d46d24823acfd0
|
|
| BLAKE2b-256 |
b0ad6a1914849d4962f86871149f034aff97b84a38ad3612a5e2d472121dbb58
|
File details
Details for the file slimllm-1.3.0-py3-none-any.whl.
File metadata
- Download URL: slimllm-1.3.0-py3-none-any.whl
- Upload date:
- Size: 24.4 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 |
b86199ddb4ff299941f197e4804c18bdccad83a77c116569a83d15d566713659
|
|
| MD5 |
061bdf329fa5e6a6daed9fe7e369f5d1
|
|
| BLAKE2b-256 |
cd34d5d144bfb9c0eeb55b5fd45f70739ab42b8e3823514bf5ec72d252aa84d7
|