pi-provider-crofai
v0.1.1
Published
CrofAI model provider extension for the pi coding agent.
Downloads
264
Maintainers
Readme
pi-provider-crofai
Unofficial CrofAI provider package for pi.
CrofAI offered me a trial of their model hosting service, so I wanted to test it properly from the place I actually work every day: my Pi coding-agent harness. I could have kept a private models.json around, but that felt annoying and not very useful to anyone else.
So this is the small public package version. Install it, log in through Pi, and CrofAI shows up as a normal provider.
This is not an official CrofAI or Pi integration. If CrofAI and Pi work out an official provider later, that would be great. I would be happy to point people there. Until then, this package is meant to be boring, inspectable glue that helps me test CrofAI seriously and maybe helps other Pi users too.
Install
From npm:
pi install npm:pi-provider-crofaiFrom GitHub:
pi install git:github.com/nqh-packages/pi-provider-crofaiFrom a local checkout:
pi install /absolute/path/to/pi-provider-crofaiLogin
Inside Pi:
/loginChoose:
Use an API key -> CrofAIPi stores the key in its normal auth file:
~/.pi/agent/auth.jsonFor headless or CI runs, this also works:
export CROFAI_API_KEY="your-key"Then select a model:
/modelWhat it registers
Provider ID:
crofaiBase URL:
https://crof.ai/v1Pi API type:
openai-completionsModel list
The model list refreshes every time Pi starts or you run /reload.
The extension reads:
https://crof.ai/pricingI use the pricing page because CrofAI's /v1/models endpoint currently gives IDs, prices, and limits, but not the vision labels. Pi needs to know image support before it sends an image, so the pricing page is the better source for that part.
If the pricing page is unavailable, the extension falls back to a bundled model snapshot so /model still works.
Local check
From this repo:
npm run checkYou should see CrofAI models, including vision-capable ones like kimi-k2.6, kimi-k2.5, gemma-4-31b-it, and some Qwen models marked with image support.
Notes
This package is intentionally small. No custom streaming layer, no special auth server, no extra runtime dependency.
It just registers CrofAI as an OpenAI-compatible Pi provider, pulls fresh model metadata from CrofAI's pricing page, and lets Pi handle the rest.
Docs I used:
