fix: use platform llm grants for builder
All checks were successful
build / build (push) Successful in 2s

This commit is contained in:
robert
2026-05-26 09:49:40 -03:00
parent ca559b8346
commit 98a8c57c83
4 changed files with 21 additions and 10 deletions

View File

@@ -47,7 +47,7 @@ Three platform-managed bits land on the inner skill via `RunContext`:
| Field | Source | Required? |
|---|---|---|
| `ctx.workspace.bucket` | grant minted by the orchestrator | yes |
| `ctx.llm` | caller's LLM creds (Card declares `llm_provisioning=caller_provided`) | yes — the LLM bill goes to the caller |
| `ctx.llm` | platform-scoped LiteLLM grant (Card declares `llm_provisioning=platform`) | yes |
| `ctx.cp_jwt` | caller's CP JWT (Card declares `wants_cp_jwt=True`) | yes — used by `cp_deploy_tarball` |
The user opts into all three when they pick `agent-builder` from the
@@ -55,8 +55,8 @@ marketplace — the dashboard already surfaces these on the agent card.
## Pricing
`$0.10 / call`, plus your LLM cost via your own provider. The deployed
agent is yours forever; subsequent invocations of YOUR agent run on
`$0.10 / call` during the current pricing model. The deployed
agent is yours forever; subsequent invocations of your agent run on
their own pricing (whatever you set when generating it).
## How to call it