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.1.0.tar.gz
(18.4 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.1.0-py3-none-any.whl
(19.3 kB
view details)
File details
Details for the file slimllm-1.1.0.tar.gz.
File metadata
- Download URL: slimllm-1.1.0.tar.gz
- Upload date:
- Size: 18.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
459a18f7b16bf461c2db2f6ab537c84d26950698078e67e0306f92b8cf14ffd0
|
|
| MD5 |
4d81884426469bbcd54426694a9b95b4
|
|
| BLAKE2b-256 |
cc12e11faf6add5169b3c4966b69c59ca773c1b3cd7072a7ae9aecb28c4beb10
|
File details
Details for the file slimllm-1.1.0-py3-none-any.whl.
File metadata
- Download URL: slimllm-1.1.0-py3-none-any.whl
- Upload date:
- Size: 19.3 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 |
09a6913334bc66c06aec093484afbd7af37e050364559be0294c2a2449b340e4
|
|
| MD5 |
692437ae59b42b537544ba47af9dcf1e
|
|
| BLAKE2b-256 |
31508162296b7290f7d016a6e296b784411d1f17803ad7edf5447684eeb60384
|