Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions skills/together-dedicated-containers/references/jig-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,8 @@ curl https://api.together.ai/v1/deployment-request/my-deployment/health \

Secrets are encrypted environment variables injected at runtime.

A name cannot appear in both `[tool.jig.deploy.environment_variables]` and a secret. `together beta jig deploy` fails and lists each colliding name if the same name is defined in both places. Remove the duplicate from `pyproject.toml` or run `together beta jig secrets unset --name <name>`.

### jig secrets set

```shell
Expand Down Expand Up @@ -442,6 +444,8 @@ model = load_model(device=device)

Runtime environment variables injected into your container. For sensitive values, use secrets instead.

Each name must be unique across `[tool.jig.deploy.environment_variables]` and secrets. `together beta jig deploy` rejects duplicate names.

```toml
[tool.jig.deploy.environment_variables]
MODEL_PATH = "/models/weights"
Expand Down
Loading