@torbbang/pi-inceptron
Pi extension that registers Inceptron (https://www.inceptron.io) as an LLM provider.
Package details
Install @torbbang/pi-inceptron from npm and Pi will load the resources declared by the package manifest.
$ pi install npm:@torbbang/pi-inceptron- Package
@torbbang/pi-inceptron- Version
0.1.0- Published
- Jun 18, 2026
- Downloads
- not available
- Author
- torbbang
- License
- MIT
- Types
- extension
- Size
- 15.2 KB
- Dependencies
- 0 dependencies · 0 peers
Pi manifest JSON
{
"extensions": [
"./src/index.ts"
]
}Security note
Pi packages can execute code and influence agent behavior. Review the source before installing third-party packages.
README
pi-inceptron
A pi extension that adds Inceptron
as an LLM provider. Its one job is live model discovery: on startup it fetches
your available Inceptron models (including private/fine-tuned checkpoints) from
GET /v1/models so you never hand-maintain a model list. Without a key, it falls
back to a small curated catalog in src/models.ts.
Install
Add it to your pi settings.json (~/.pi/agent/settings.json or .pi/settings.json):
{
"packages": ["git:git.torbjorn.dev/torbbang/pi-inceptron@v0.1.0"]
}
Set your API key, then start pi and pick a model with /model inceptron:
export INCEPTRON_API_KEY="sk-..."
Notes
- Override the endpoint with
INCEPTRON_BASE_URL(defaulthttps://api.inceptron.io/v1). - To hack locally:
pi -e ./src/index.ts. - Edit the fallback catalog in
src/models.tsto add checkpoints or fix pricing. Verify values against https://docs.inceptron.io.
License
MIT