Two minutes. Seven models. Zero regrets.
1. Use the Web App
Go to toolkit-llm.com/chat and sign up with email or Google. You get $2 free credits.
The chat surface uses Toolkit's self-hosted models. 7 models routed automatically by task type.
Go to toolkit-llm.com/app for the full workspace: Code, Files, Voice, Camera, Models, Routing, Compute.
2. Use the API
Go to Dashboard → API Keys and create a key.
curl https://api.toolkit-llm.com/v1/chat/completions \
-H "Authorization: Bearer tk_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "toolkit-chat-turbo",
"messages": [{"role": "user", "content": "Hello"}],
"stream": true
}'OpenAI-compatible. Drop-in replacement for any SDK.
Go to Billing to add credits ($5–$100). Pay as you go, no subscription required.
3. Use with Claude Code
Route Claude Code through Toolkit-LLM's self-hosted models instead of Anthropic's API.
npx @toolkit-cli/tk-helperInteractive wizard. Validates your API key, configures Claude Code automatically.
Writes ~/.claude/settings.json with:
{
"env": {
"ANTHROPIC_AUTH_TOKEN": "tk_live_YOUR_KEY",
"ANTHROPIC_BASE_URL": "https://api.toolkit-llm.com/v1",
"ANTHROPIC_DEFAULT_OPUS_MODEL": "toolkit-code-backend",
"ANTHROPIC_DEFAULT_SONNET_MODEL": "toolkit-base",
"ANTHROPIC_DEFAULT_HAIKU_MODEL": "toolkit-code-turbo"
}
}claude "build me a landing page"Claude Code runs through Toolkit's models. Same UX, self-hosted inference.
npx @toolkit-cli/tk-helper uninstallRemoves Toolkit env vars from Claude Code. Restores default behavior.
4. Connect ChatGPT Subscription
Use your ChatGPT Plus ($20/mo) or Pro ($200/mo) subscription through Toolkit. GPT-5.4 at your flat rate — no per-token billing.
npx @toolkit-cli/tk-helper connectOpens browser for OpenAI authentication. Runs a local bridge on localhost:1455.
npx @toolkit-cli/tk-helper startThe web app at toolkit-llm.com auto-detects the bridge and routes thinking/compute requests through your ChatGPT subscription.
npx @toolkit-cli/tk-helper doctor5-point health check: API key, Claude Code, ChatGPT OAuth, bridge server.