> ## Documentation Index
> Fetch the complete documentation index at: https://docs.reactor.inc/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Reactor hosts multiple models, each with its own connect slug (modelName) and command/event schema. The catalog of every model — slug, typed SDK package, and links to its schema — is at /model-api-reference/overview. Some models expose one slug per experience (e.g. HappyOyster); always take the slug from the model's own pages, never guess it.
> Fastest path to a working app: `npx create-reactor-app my-app --model=<slug>` scaffolds a complete app with secure auth wired up. Typed TypeScript SDKs are published as @reactor-models/<model>; Python uses the base reactor-sdk package.
> Auth: exchange an API key (rk_...) for a JWT via POST https://api.reactor.inc/tokens from your server. Never put the API key in client-side code.
> Append .md to any docs URL for clean Markdown. Search these docs via the MCP server at https://docs.reactor.inc/mcp.

# reactor weights

> Upload and inspect model weights

```sh theme={"theme":{"light":"github-light","dark":"github-dark-high-contrast"}}
reactor weights [flags]
```

## Description

Manage model weights for a registered model release.

**Subcommands:**

* `upload [<model>:<release>] [<path>]`: Upload weight files (single file or bundle).
* `list [<model>:<release>]`: List uploaded artifacts for a release.
* `show [<model>:<release>]`: Show the bundle manifest summary.

Workspace-aware: when `<model>:<release>` is omitted, the
identity is read from the nearest enclosing `reactor.yaml`'s `model.name`
and `model.version` (walking up from the current directory, stopping at
the repository root). `upload` additionally defaults its \<path> to
`runtime.weights_path` from the same file (else `./weights/`).

**Examples:**

```sh theme={"theme":{"light":"github-light","dark":"github-dark-high-contrast"}}
reactor weights upload my-model:v1.0.0 ./weights.safetensors
reactor weights upload                  # identity + path from reactor.yaml
reactor weights list   my-model:v1.0.0
reactor weights show                    # identity from reactor.yaml
```

## Global options

| Flag              | Description                                                                           |
| ----------------- | ------------------------------------------------------------------------------------- |
| `--server string` | Reactor API server URL (default "[https://api.reactor.inc](https://api.reactor.inc)") |
| `-v, --verbose`   | Enable verbose output                                                                 |

## See also

* [reactor](/deploy/cli-reference/reactor) - The CLI for the Reactor platform
* [reactor weights list](/deploy/cli-reference/reactor_weights_list) - List uploaded artifacts for a model release
* [reactor weights show](/deploy/cli-reference/reactor_weights_show) - Show the bundle manifest summary for a model release
* [reactor weights upload](/deploy/cli-reference/reactor_weights_upload) - Upload model weights to the Reactor platform
