Models & spend
Where LLM spend goes: per team against budget, per model, and what tier routing saved.
Spend, last 30 days
$383.66
All teams, all providers, BYO keys.
Saved vs all-frontier, last 30 days
$128.94
Requests tier-routing sent to cheaper models.
Provider keys
Bring your own keys: Phantom's accounts, injected server-side at call time. Values never leave the gateway; only fingerprints show here.
| Provider | Key | Models | Status | Last used |
|---|---|---|---|---|
| Anthropic | sk-…vAAA | claude-opus-4-8, claude-sonnet-5 | live | |
| OpenAI | sk-…z2IA | gpt-5-mini, gpt-5.2 | live | |
| self-hosted (vLLM) | http://vllm.gatehouse.internal:8000/v1 | kimi-k2 | configured |
API access
Point any OpenAI-compatible client at the gateway with a team key. Every call is routed by tag, checked against the team's budget, and lands in the books above.
Mint a team key
Connect
curl https://gw-v2.gatehouse.decawork.ai/llm/v1/chat/completions \
-H "Authorization: Bearer <your key>" \
-H "Content-Type: application/json" \
-d '{"messages":[{"role":"user","content":"hello"}],"tags":["basic"]}'from openai import OpenAI
client = OpenAI(base_url="https://gw-v2.gatehouse.decawork.ai/llm/v1", api_key="<your key>")
client.chat.completions.create(
model="tag-decides",
messages=[{"role": "user", "content": "hello"}],
extra_body={"tags": ["basic"]}, # basic -> cheap, complex -> frontier, sensitive -> self-hosted
)Daily spend
Recent requests
| Time | Team | Model | Tier | Tokens | Cost | Saved vs frontier |
|---|---|---|---|---|---|---|
| support | claude-opus-4-8 | frontier | 2,016 | $0.23 | – | |
| gtm | gpt-5-mini | cheap | 2,750 | $0.02 | – | |
| gtm | claude-opus-4-8 | frontier | 2,798 | $0.42 | – | |
| gtm | claude-sonnet-5 | mid | 2,532 | $0.02 | – | |
| gtm | gpt-5-mini | cheap | 3,859 | $0.02 | – | |
| support | gpt-5-mini | cheap | 3,798 | $0.02 | – | |
| gtm | gpt-5-mini | cheap | 1,844 | $0.02 | – | |
| support | gpt-5.2 | frontier | 3,672 | $0.45 | – |
Teams
| Team | Key | Spend, 30d | Budget | |
|---|---|---|---|---|
| gtm | dw-gtm-… | $203.91 | $220.00 | near budget |
| support | dw-sup-… | $118.47 | $180.00 | |
| ops | dw-ops-… | $61.28 | $140.00 |
Models
| Model | Tier | Calls, 30d | Cost, 30d |
|---|---|---|---|
| gpt-5.2 | frontier | 193 | $161.50 |
| claude-opus-4-8 | frontier | 174 | $102.12 |
| gpt-5-mini | cheap | 806 | $62.06 |
| claude-sonnet-5 | mid | 456 | $34.68 |
| kimi-k2 | self-hosted | 135 | $23.30 |