A template name identifies a runtime environment. Tags mark a specific build of a template with a stage or version, such as prod, staging, or v1, for canary rollout and rollback.
Before you begin, complete the connection setup in the Quickstart.
Template names
We recommend that you include the business scenario, language or base image, key dependency versions, and a date so names are easy to identify and group:
agent-python313-20260704
code-review-node22-20260704
data-analysis-py313-v1
Reference a template by name when creating a sandbox:
const sandbox = await Sandbox.create("agent-python313-20260704");
Python example:
sandbox = Sandbox.create(template="agent-python313-20260704")
Recommendations
For a new release, validate the new template or tag before switching application references. Keep complex rollout rules in your application or release system.