ftouter
A resilient runtime layer for free and cheap-tier LLM APIs.
Free-tier LLM providers are unreliable in ways that break production apps silently: models get deprecated overnight, quotas zero out without warning, and providers add card requirements with no notice. ftouter sits between your app and multiple providers, automatically falling back to the next available model when one fails — so a single dead endpoint doesn't take down your whole app.
Features
- Automatic fallback across multiple providers and models
- Cooldown handling — a model that fails gets temporarily skipped instead of retried every call
- Clear failure reasons — distinguishes rate limits, deprecated models, bad keys, and server errors instead of generic exceptions
- Zero config to start — just add your API keys and call
.complete() - Five ready-made routers for different use cases:
chat_models,general_models,reasoning_models,tool_call_models,vision_models
Installation
pip install ftouter
Quickstart
- Create a
.envfile in your project root with the API keys for the providers you want to use:
GROQ_API_KEY=your_key_here
OPENROUTER_API_KEY=your_key_here
MISTRAL_API_KEY=your_key_here
You don't need all three — ftouter skips any provider whose key isn't set and falls through to the next one.
- Use it in your code:
from ftouter import chat_models
from dotenv import load_dotenv
load_dotenv()
result = chat_models.complete([
{"role": "user", "content": "Say hi in 5 words"}
])
print(result["choices"][0]["message"]["content"])
Available routers
| Router | Use case |
|---|---|
chat_models.complete() |
General-purpose conversational completions |
general_models.complete() |
General-purpose tasks, pooled across all other routers |
reasoning_models.complete() |
Tasks that benefit from reasoning-focused models |
tool_call_models.complete() |
Completions that use function/tool calling |
vision_models.complete() |
Completions that include image input |
Each router tries a prioritized list of models across providers and automatically moves to the next one on failure.
Vision
vision_models.complete() takes the same message format as the others — an image is just another block inside content, either an https:// URL or a base64 data: URI:
import base64
from ftouter import vision_models
from dotenv import load_dotenv
load_dotenv()
with open("example.jpg", "rb") as image_file:
image_data = base64.b64encode(image_file.read()).decode("utf-8")
result = vision_models.complete([
{
"role": "user",
"content": [
{"type": "text", "text": "what's in this image?"},
{
"type": "image_url",
"image_url": {
"url": f"data:image/jpeg;base64,{image_data}"
}
}
]
}
])
print(result["choices"][0]["message"]["content"])
Vision draws from Groq, OpenRouter, and Mistral like the other routers, plus two vision-specific providers — add their keys to .env only if you want them in the fallback chain, ftouter skips them otherwise like any other missing key:
GEMINI_API_KEY=your_key_here
MOONDREAM_API_KEY=your_key_here
Note: base64 image support is confirmed for Groq and Gemini. OpenRouter should accept it (same spec, not independently verified here). Moondream's exact behavior with base64 input is unconfirmed — test it directly if you're relying on that provider.
How fallback works
When you call .complete(), ftouter:
- Tries the first available (not-on-cooldown) model in its list
- If it fails, records why (rate limit, deprecated model, bad key, server error, etc.) and puts that model on a cooldown timer
- Moves to the next model and repeats
- Returns the first successful response
- Raises
RuntimeErroronly if every model in the list is exhausted or on cooldown
This means a single provider having a bad day doesn't crash your app — it just quietly routes around it.
Getting free API keys
- Groq — console.groq.com
- OpenRouter — openrouter.ai
- Mistral — console.mistral.ai
- Gemini (vision only) — aistudio.google.com
- Moondream (vision only) — moondream.ai
Handling errors
If every provider fails, .complete() raises a RuntimeError:
try:
result = chat_models.complete([{"role": "user", "content": "Hello"}])
print(result["choices"][0]["message"]["content"])
except RuntimeError as e:
print(f"All providers failed: {e}")
Contributing
Issues and pull requests are welcome. If you'd like to add support for another provider, open an issue first so the model list and provider config stay consistent.
License
MIT
Release files for ftouter 0.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| ftouter-0.1.0.tar.gz | 8.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| ftouter-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 19.6 kB
Release files / ftouter-0.1.0.tar.gz
| Download URL | ftouter-0.1.0.tar.gz |
|---|---|
| Size | 8.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
c9996d03516054c7a9892c9bc99aff410319956c7abeb23dbdd4c648f1ce1987
|
|
BLAKE2b-256 checksum How to use checksums |
b22e1075ca9b530af9d940e6db10c0dd5fb0bd79ccfeaac48af07940f2bab57c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.11.9
|
Release files / ftouter-0.1.0-py3-none-any.whl
| Download URL | ftouter-0.1.0-py3-none-any.whl |
|---|---|
| Size | 11.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
f2aa1ebfa9d2c1e436a5fc43335917b4cd676253703a59e4d543bd372c89f643
|
|
BLAKE2b-256 checksum How to use checksums |
d7b222e1539d506c3e546b8ce8494199cadc1740a158d971c3d169133a89fd82
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.11.9
|