litelm
litellm's routing + translation in ~2,900 lines and 2 dependencies (openai, httpx).
litellm routes LLM calls across providers and translates between message formats. That core is buried under 100k+ LOC of proxy servers, caching layers, cost tracking, and dozens of features most users never touch. litelm extracts just the call path — model routing, message translation, streaming, tool use, embeddings — and nothing else. No Router class, no proxy, no caching.
Install
pip install litelm # openai + httpx
pip install litelm[anthropic] # + anthropic SDK
pip install litelm[bedrock] # + boto3
pip install litelm[all] # everything
Usage
import litelm
# Basic completion
response = litelm.completion("openai/gpt-4o", messages=[{"role": "user", "content": "Hello!"}])
print(response.choices[0].message.content)
# Streaming
for chunk in litelm.completion("groq/llama-3.1-70b-versatile", messages=[...], stream=True):
print(chunk.choices[0].delta.content or "", end="")
# Embeddings
response = litelm.embedding("openai/text-embedding-3-small", input=["hello world"])
Every function has an async variant: acompletion, aembedding, aresponses, atext_completion.
The API mirrors litellm — same function names, same arguments, same response types. If you're using litellm today, switching is s/litellm/litelm/ in your imports.
What's in / what's out
| litellm | litelm | |
|---|---|---|
Model routing (provider/model → right endpoint) |
✓ | ✓ |
| Message translation (Anthropic, Bedrock, Cloudflare, Mistral) | ✓ | ✓ |
Streaming + stream_chunk_builder |
✓ | ✓ |
| Tool use (function calling) | ✓ | ✓ |
| Embeddings | ✓ | ✓ |
| Text completions | ✓ | ✓ |
| OpenAI Responses API | ✓ | ✓ |
| Mock responses | ✓ | ✓ |
| Router (load balancing, fallbacks) | ✓ | ✗ |
| Proxy server | ✓ | ✗ |
| Caching / budgeting / cost tracking | ✓ | ✗ |
| Token counting | ✓ | ✗ |
| Image gen, audio, OCR, fine-tuning | ✓ | ✗ |
| Agents, guardrails, scheduler | ✓ | ✗ |
Providers
Routes to 19 providers via "provider/model-name" syntax. Any OpenAI-compatible endpoint works via api_base.
| Provider | Env Var | Handler | Verified |
|---|---|---|---|
| OpenAI | OPENAI_API_KEY |
OpenAI SDK | Yes |
| Anthropic | ANTHROPIC_API_KEY |
Custom | Yes |
| Groq | GROQ_API_KEY |
OpenAI-compat | Yes |
| Mistral | MISTRAL_API_KEY |
Custom | Yes |
| xAI | XAI_API_KEY |
OpenAI-compat | Yes |
| OpenRouter | OPENROUTER_API_KEY |
OpenAI-compat | Yes |
| Azure | AZURE_API_KEY |
OpenAI SDK (Azure) | Yes |
| Bedrock | AWS_ACCESS_KEY_ID |
Custom | No |
| Cloudflare | CLOUDFLARE_API_TOKEN |
Custom | No |
| Together | TOGETHERAI_API_KEY |
OpenAI-compat | No |
| Fireworks | FIREWORKS_API_KEY |
OpenAI-compat | No |
| DeepSeek | DEEPSEEK_API_KEY |
OpenAI-compat | No |
| Perplexity | PERPLEXITYAI_API_KEY |
OpenAI-compat | No |
| DeepInfra | DEEPINFRA_API_TOKEN |
OpenAI-compat | No |
| Gemini | GEMINI_API_KEY |
OpenAI-compat | No |
| Cohere | COHERE_API_KEY |
OpenAI-compat | No |
| Ollama | — | OpenAI-compat | No |
| vLLM | — | OpenAI-compat | No |
| LM Studio | — | OpenAI-compat | No |
API Keys
Set the environment variable for your provider:
export OPENAI_API_KEY=sk-...
export ANTHROPIC_API_KEY=sk-ant-...
Or pass directly:
litelm.completion("openai/gpt-4o", messages=[...], api_key="sk-...")
litelm.completion("openai/gpt-4o", messages=[...], api_base="http://localhost:8000/v1")
Error Handling
All provider errors are mapped to litelm's exception hierarchy:
from litelm import ContextWindowExceededError, RateLimitError, AuthenticationError
try:
response = litelm.completion("openai/gpt-4o", messages=messages)
except ContextWindowExceededError:
# prompt too long — truncate and retry
pass
except RateLimitError:
# back off
pass
except AuthenticationError:
# bad API key
pass
Tool Calling
tools = [{"type": "function", "function": {
"name": "get_weather",
"parameters": {"type": "object", "properties": {"city": {"type": "string"}}},
}}]
response = litelm.completion(
"openai/gpt-4o", messages=[{"role": "user", "content": "Weather in Paris?"}],
tools=tools, tool_choice="required",
)
tool_call = response.choices[0].message.tool_calls[0]
print(tool_call.function.name, tool_call.function.arguments)
Custom / Local Providers
Any OpenAI-compatible server works via api_base:
# vLLM
litelm.completion("openai/my-model", messages=[...], api_base="http://localhost:8000/v1")
# Ollama
litelm.completion("ollama/llama3", messages=[...], api_base="http://localhost:11434/v1")
# LM Studio
litelm.completion("openai/local-model", messages=[...], api_base="http://localhost:1234/v1")
Development transparency
litelm is human-directed, AI-assisted software. Much of the code was written with Claude Code using Claude Opus 4.6/4.7. Code written from 2026-05-14 onward is written through Pi using GPT-5.5. Compatibility claims are based on tests and maintainer review, not AI authorship.
Upstream attestation
Maintainer attestation, 2026-09-11: LiteLLM's routing/formatting changes were reviewed from 649eb2d through 9a715df2. The audit triaged 360 core-path commits, inspected upstream tests for potentially relevant behavior, and fixed the resulting compatibility gaps test-first. Local scoped tests: 256 passed, 55 skipped; all 45 available-provider live tests and all 10 DSPy smoke tests also passed with the current dependency lock.
This attests litelm's declared routing/formatting/DSPy surface only, not full litellm compatibility.
Status
Alpha. 256 own tests passing. The current scoped LiteLLM 9a715df2 baseline has 75 passing ported tests and no remaining actionable assertion/runtime failures.
DSPy drop-in verified — all 7 execution paths proven live (Predict, CoT, typed signatures, streaming, embeddings, tool use, multi-output).
Tests
uv run --extra all pytest tests/ -x --ignore=tests/ported --timeout=10 # 256 non-live tests
uv run --extra all pytest tests/test_live.py -m live --timeout=30 # 45 live provider tests
uv run pytest tests/test_dspy_smoke.py -m live --timeout=60 # 10 DSPy integration tests
Live tests require API keys in .env.test. Skipped by default; run with -m live.
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 litelm-0.5.2.tar.gz.
File metadata
- Download URL: litelm-0.5.2.tar.gz
- Upload date:
- Size: 294.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a4dc40e07a5fb6c30f839816c643d75c474912c01c4e0a491c1adb2c5f6528c
|
|
| MD5 |
158c7aaad45f7d64c24ff5b99f809307
|
|
| BLAKE2b-256 |
9fa37a57e54cfe9f39085e3e24b573ee42d67f073b656e243a8214fcd773a0dd
|
Provenance
The following attestation bundles were made for litelm-0.5.2.tar.gz:
Publisher:
publish.yml on kennethwolters/litelm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
litelm-0.5.2.tar.gz -
Subject digest:
7a4dc40e07a5fb6c30f839816c643d75c474912c01c4e0a491c1adb2c5f6528c - Sigstore transparency entry: 2795425595
- Sigstore integration time:
-
Permalink:
kennethwolters/litelm@ac931b5f6955f60fa31c2391e94ee2f9a6ab3d5a -
Branch / Tag:
refs/tags/v0.5.2 - Owner: https://github.com/kennethwolters
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ac931b5f6955f60fa31c2391e94ee2f9a6ab3d5a -
Trigger Event:
release
-
Statement type:
File details
Details for the file litelm-0.5.2-py3-none-any.whl.
File metadata
- Download URL: litelm-0.5.2-py3-none-any.whl
- Upload date:
- Size: 34.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70202426432d69a2bb41ba4ebc48db8c370ef5c8eb7545325db6fa343f822ec7
|
|
| MD5 |
cebca90e46fce490343f859c9a332c09
|
|
| BLAKE2b-256 |
17dee3538f3de25e4dc36afc6673f54a4ff71ef4f53a4312b85bea0c9cb68432
|
Provenance
The following attestation bundles were made for litelm-0.5.2-py3-none-any.whl:
Publisher:
publish.yml on kennethwolters/litelm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
litelm-0.5.2-py3-none-any.whl -
Subject digest:
70202426432d69a2bb41ba4ebc48db8c370ef5c8eb7545325db6fa343f822ec7 - Sigstore transparency entry: 2795425661
- Sigstore integration time:
-
Permalink:
kennethwolters/litelm@ac931b5f6955f60fa31c2391e94ee2f9a6ab3d5a -
Branch / Tag:
refs/tags/v0.5.2 - Owner: https://github.com/kennethwolters
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ac931b5f6955f60fa31c2391e94ee2f9a6ab3d5a -
Trigger Event:
release
-
Statement type: