@simplellm/pi-provider
v0.5.1
Published
SimpleLLM provider setup for Pi Coding Agent — one command, EU-hosted LLM inference
Maintainers
Readme
@simplellm/pi-provider
One-command setup to use SimpleLLM as a provider for Pi Coding Agent.
EU-hosted, GDPR-compliant LLM inference — no data leaves Europe.
Quick Start
npx @simplellm/pi-providerThis will:
- Fetch available models from SimpleLLM
- Ask for your API key (get one at app.simplellm.eu)
- Configure Pi to use SimpleLLM as a provider
Then start Pi:
pi --provider simplellmManual Setup
If you prefer manual configuration, add to ~/.pi/agent/models.json:
{
"providers": {
"simplellm": {
"api": "openai-completions",
"baseUrl": "https://api.simplellm.eu/v1",
"apiKey": "sk-...",
"models": [
{
"id": "Qwen3-Coder-30B-A3B-Instruct",
"name": "Qwen3 Coder 30B",
"contextWindow": 262144,
"maxTokens": 131072,
"input": ["text"],
"cost": { "input": 0.000011, "output": 0.000039, "cacheRead": 0, "cacheWrite": 0 }
}
]
}
}
}Available Models
Visit simplellm.eu for the current model list. Free tier models are available without credits.
Why SimpleLLM?
- EU-hosted — all inference runs on European infrastructure
- GDPR-compliant — your code never leaves the EU
- Open models only — no vendor lock-in
- Simple pricing — pay-as-you-go with SimpleCredits, free tier available
License
MIT
