A minimal Python library for interacting with various LLM providers
Project description
SmolLLM
A minimal Python library for interacting with various LLM providers, featuring automatic API key load balancing and streaming responses.
Installation
pip install smolllm
uv add "smolllm @ ../smolllm"
Quick Start
from dotenv import load_dotenv
import asyncio
from smolllm import ask_llm
# Load environment variables at your application startup
load_dotenv()
async def main():
response = await ask_llm(
"Say hello world",
model="gemini/gemini-2.0-flash"
)
print(response)
if __name__ == "__main__":
asyncio.run(main())
Provider Configuration
Format: provider/model_name (e.g., openai/gpt-4, gemini/gemini-2.0-flash)
API Keys
The library looks for API keys in environment variables following the pattern: {PROVIDER}_API_KEY
Example:
# .env
OPENAI_API_KEY=sk-xxx
GEMINI_API_KEY=key1,key2 # Multiple keys supported
Custom Base URLs
Override default API endpoints using: {PROVIDER}_BASE_URL
Example:
OPENAI_BASE_URL=https://custom.openai.com/v1
OLLAMA_BASE_URL=http://localhost:11434/v1
Advanced Configuration
You can combine multiple keys and base URLs in several ways:
- One key with multiple base URLs:
OLLAMA_API_KEY=ollama
OLLAMA_BASE_URL=http://localhost:11434/v1,http://other-server:11434/v1
- Multiple keys with one base URL:
GEMINI_API_KEY=key1,key2
GEMINI_BASE_URL=https://api.gemini.com/v1
- Paired keys and base URLs:
# Must have equal number of keys and URLs
# The library will randomly select matching pairs
GEMINI_API_KEY=key1,key2
GEMINI_BASE_URL=https://api.gemini.com/v1,https://api.gemini.com/v2
Environment Setup Best Practices
When using SmolLLM in your project, you should handle environment variables at your application level:
- Create a
.envfile:
# .env
OPENAI_API_KEY=sk-xxx
GEMINI_API_KEY=xxx,xxx2
ANTHROPIC_API_KEY=sk-xxx
- Load environment variables before using SmolLLM:
from dotenv import load_dotenv
import os
# Load at your application startup
load_dotenv()
# Now you can use SmolLLM
from smolllm import ask_llm
Tips
- Keep sensitive API keys in
.env(add to .gitignore) - Create
.env.examplefor documentation - For production, consider using your platform's secret management system
- When using multiple keys, separate with commas (no spaces)
Project details
Release history Release notifications | RSS feed
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 smolllm-0.1.5.tar.gz.
File metadata
- Download URL: smolllm-0.1.5.tar.gz
- Upload date:
- Size: 28.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57c749d5a5830827c528181103b6aa2b0b0502884228da01452faf9f27794c5b
|
|
| MD5 |
aab90a5a351241b01a0ab7ae707ed312
|
|
| BLAKE2b-256 |
661cb32127e3c3d264698bfd7347250ebd1437b712ffbb11221e03ecf93d0bb1
|
File details
Details for the file smolllm-0.1.5-py3-none-any.whl.
File metadata
- Download URL: smolllm-0.1.5-py3-none-any.whl
- Upload date:
- Size: 10.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75d363e089f201335aa9ba2ca0fd0cd6f7a44c05ebaaca1c46bfef528bfcf5e4
|
|
| MD5 |
4256a317d6727d910754d4ce07266846
|
|
| BLAKE2b-256 |
e95d37246c976d8fd09fc3cc95b1eb9c31d1d52457b6a33ec9f2fd56bbbd3b79
|