Quickstart
This guide walks you through installingkvcdn and uploading your first KV cache artifact to KV Cache Store.
1. Install the CLI
kvcdn is an x86-64 Linux binary. ARM64 support is planned for a future release.
2. Sign in to the portal
Open https://kvcachestore.com and sign in with the configured OIDC provider. The first time you sign in, KV Cache Store creates:- a customer record,
- a default organization,
- a default project,
- and a storage namespace for your uploads.
3. Create an API key
In the dashboard, go to Settings > API Keys and create a key. Copy the secret — it is shown only once. Set it in the CLI:4. Generate a KV cache artifact
kvcdn verify runs a model against a context, produces a reusable .kv artifact, and checks that loading the artifact gives the same result as a full prefill:
model_name, dtype, and num_tokens.
5. Upload the artifact
kvcdn upload reads the artifact metadata, asks the portal for a presigned upload URL, PUTs the file to object storage, and then confirms the upload.
6. View the artifact in the dashboard
Go to https://kvcachestore.com/app. The artifact appears with its model, dtype, token count, size, and visibility. You can toggle visibility betweenprivate and public from the artifact page.
7. Share or consume the artifact
For a public artifact, the dashboard shows a public URL:Next steps
- Learn about authentication and API keys.
- Browse the full CLI reference.
- Understand how the CLI, portal, and Worker fit together.