CoreWeave Serverless sandboxes are in public preview.
Prerequisites
Before you begin, you need the following:- A macOS or Linux terminal, Python 3.12 or later, and
uv. - A W&B API key for sandbox access. The examples explicitly select W&B authentication. For other credentials, see Choose a credential.
- Credentials for a Pi-supported model provider. This guide uses W&B Serverless Inference, which requires inference credits.
- A public Git repository URL. Private repositories require separate Git authentication inside the sandbox.
SANDBOX_USER Identity and Access Management (IAM) action. That permission applies to CoreWeave API access tokens.
Prepare your local environment
Create a local project and install the Sandbox software development kit (SDK):[WANDB-API-KEY] with your W&B API key:
Create the sandbox
Save the following script ascreate_pi_sandbox.py. It creates a CPU sandbox, installs Pi 0.87.1, and clones the repository. The Node.js image supplies the runtime and Git. If setup fails, the script stops the sandbox before raising the error.
create_pi_sandbox.py
[REPOSITORY-URL] with your repository URL, then run:
0.87.1. The sandbox remains running after the script exits, until you stop it or its 4-hour lifetime expires. The lifetime includes startup time.
Attach your terminal
Save the following asattach_sandbox.py. It forwards your terminal input to a Bash shell in the sandbox and restores your local terminal settings when the shell exits.
attach_sandbox.py
[SANDBOX-ID] with your sandbox ID:
Choose a model provider
Choose one of the following options. Sandbox authentication and model authentication are separate, even when both use a W&B key. Pi can access credentials provided to its process and can send workspace content to the selected model provider.Use Serverless Inference
We recommend W&B Serverless Inference for this walkthrough. The example useszai-org/GLM-5.2. Choose another model from the model catalog if it better fits your task.
In the sandbox shell, enter your W&B inference key at the hidden prompt. If the account has inference credits, you can use the same W&B key as for sandbox access:
~/.pi/agent/models.json file. The quoted heredoc preserves the environment-variable reference so the file doesn’t contain the key:
/workspace/project and zai-org/GLM-5.2 in the status area. Submit a task in Run Pi and check its work to verify model access.
The configuration limits each response to 8,192 tokens. If you change models, update the model ID and capabilities to match the provider. For more configuration options, see Pi model configuration.
Use another provider
To use Anthropic or OpenAI directly, choose the corresponding API key and start Pi in the same sandbox shell:- Anthropic
- OpenAI
/model inside Pi to choose a model available to your provider. The Pi provider documentation linked in the prerequisites covers other providers and account sign-in options.
Run Pi and check its work
If Pi displays a project trust prompt, follow it. To check that Pi can create and read a file in the cloned repository, submit this task in Pi:/quit to return to the sandbox shell. Pi prints a To resume this session: line with a pi --session command. Keep that command to reopen this conversation.
Verify the file independently:
Hello from CoreWeave.
For an unattended task with the W&B setup, run Pi in print mode from the same shell:
Reconnect to a conversation
To reconnect while the sandbox is running, run theattach_sandbox.py script again. Re-enter any API keys supplied through the previous shell and return to the /workspace/project directory before starting Pi. To reopen your interactive conversation, replace [SESSION-ID] with the ID from the To resume this session: line Pi printed when you exited:
pi --continue resumes the most recent session for the project. If you ran the print-mode example after your interactive conversation, it resumes the print-mode session. Use --session to return to a specific conversation.
Retrieve the result and stop
Enterexit to leave the sandbox shell. In your local terminal, save the following as collect_pi_result.py:
collect_pi_result.py
[SANDBOX-ID] with your sandbox ID and run the script:
stop_pi_sandbox.py:
stop_pi_sandbox.py
Troubleshoot
Use these checks to resolve common issues:- If sandbox creation fails, check your W&B key and the sandbox authentication requirements linked in the prerequisites.
- If Pi can’t authenticate, check that the model credential is exported in the shell that starts Pi. With W&B, also check inference credits and the model ID.
- If Pi can’t reach its provider, check outbound access to the provider endpoint. Installation and cloning also require access to npm and your Git host.
- If your connection drops, attach again while the sandbox runs. If you need a process to survive terminal disconnections, use a terminal multiplexer such as
tmux.
Next steps
For more information, see the following resources:- Interactive shells covers terminal access through the SDK.
- File operations covers uploading and retrieving workspace files.
- Pi documentation covers sessions, model selection, and extensions.