/v1/models
List synced provider models visible to the key.
Resources
A compact path through the real Gunmetal workflow: install, setup, local API compatibility, client config, and recovery.
Install the CLI globally. The npm wrapper installs the native runtime into your local Gunmetal home.
npm i -g @dhruv2mars/gunmetal
Run the guided setup. It connects one provider, checks auth, syncs models, creates one local key, and prints the first test command.
gunmetal setup
Start opens the browser operator surface and keeps the OpenAI-compatible API available. Add --no-open when you only want the daemon.
gunmetal start # Dashboard: http://127.0.0.1:4684/ # API: http://127.0.0.1:4684/v1
Any client that accepts a custom OpenAI-compatible base URL, API key, and arbitrary model id can talk to Gunmetal.
OPENAI_BASE_URL=http://127.0.0.1:4684/v1 OPENAI_API_KEY=gm_your_local_key MODEL=provider/model
API
/v1/models
List synced provider models visible to the key.
/v1/chat/completions
OpenAI-compatible chat completion endpoint.
/v1/responses
Responses-style endpoint for compatible providers.