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.4.0.tar.gz
(31.5 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.4.0-py3-none-any.whl
(28.1 kB
view details)
File details
Details for the file slimllm-1.4.0.tar.gz.
File metadata
- Download URL: slimllm-1.4.0.tar.gz
- Upload date:
- Size: 31.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7122ce160327f11ed3ac1885d1995510624905f3116f60a28f92ee037e4110e
|
|
| MD5 |
f69595006bb5fecb04790979de5279dd
|
|
| BLAKE2b-256 |
6aeb2490b7bb89dce31565c0fd1bf4384f2f3a1d44c75ac5ea3fb5cc20ef72d2
|
File details
Details for the file slimllm-1.4.0-py3-none-any.whl.
File metadata
- Download URL: slimllm-1.4.0-py3-none-any.whl
- Upload date:
- Size: 28.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af3a75d81be22ed9a8e3ec788c6cdb5197785affd57a1ac9c12815de9163d92b
|
|
| MD5 |
f82c4e1e23e68371e8d0a51d24264e4d
|
|
| BLAKE2b-256 |
73ddb631e95f47a7c45c1142555bb57715eafab146565e069ea7b36cb5741f39
|