Documentation
ArcFlare is an open model hub plus a tiny CLI. Run any model with one command. Full source and issues live on GitHub.
Install
Requires Node.js 18+. No dependencies.
git clone https://github.com/Hakeperty/ArcFlare-Code.gitcd ArcFlare-Code && npm linkRun a model
Pulls the model if needed, then runs it. With Ollama installed it uses that backend for real local inference; otherwise it drops into a demo chat.
arcflare run qwen2.5Commands
arcflare run <model> [prompt]Run a model (auto-pulls if needed)arcflare pull <model>Download a model into the local storearcflare listList installed modelsarcflare search <query>Search the model registryarcflare show <model>Show model details + configarcflare edit <model>Edit a model's Modelfile (system, params)arcflare create <name> --from <base>Make a custom modelarcflare cp <src> <dst>Copy an installed modelarcflare rm <model>Remove an installed modelarcflare serveStart the local HTTP API (default :11435)arcflare psShow the running server and its modelsCustom models (Modelfile)
Create your own variant from a base model and a system prompt:
arcflare create captain --from qwen2.5 --system "You are a sea captain."# Modelfile FROM qwen2.5 SYSTEM You are a sea captain. PARAMETER temperature 0.7
Local HTTP API
Start a small server for apps and scripts:
arcflare serveGET /api/tagsList installed modelsPOST /api/pull{ name } — install a modelPOST /api/show{ name } — model detailsPOST /api/create{ name, from, system } — custom modelPOST /api/generate{ model, prompt } — a responseDELETE /api/delete{ name } — remove a modelLooking for license details? See Licenses.