Get a GPU-backed Jupyter Lab environment running in under five minutes. Your AI agent deploys the instance, installs JupyterLab, and returns the access URL.Documentation Index
Fetch the complete documentation index at: https://runcrate.ai/docs/llms.txt
Use this file to discover all available pages before exploring further.
”Spin up a Jupyter Lab environment on an RTX 4090.”
The agent handles the full setup:list_gpu_types— confirms RTX 4090 availability ($0.35/hr)create_instance— deploysjupyter-devwith RTX 4090instance_status— polls until runningssh_execute— installs JupyterLab and common ML packages:ssh_execute— starts JupyterLab with no-auth for quick access:get_instance— retrieves the public IP
JupyterLab is running at:Specs: RTX 4090 (24 GB VRAM) | Cost: $0.35/hr Pre-installed packages: PyTorch, torchvision, NumPy, Pandas, Matplotlib, scikit-learn. Open the URL in your browser and start coding.
This setup uses no authentication token for convenience. For longer-running notebooks, set a token:
--NotebookApp.token='your-secret'.”Install some extra packages on my Jupyter instance — I need HuggingFace and Weights & Biases.”
The agent installs without interrupting the running server:ssh_execute—pip install transformers datasets accelerate wandbssh_execute—python -c "import transformers; print(transformers.__version__)"to verify
Installed on jupyter-dev:All available in your running JupyterLab session. Restart the kernel if you had a notebook open.
- transformers 4.44.0
- datasets 3.0.1
- accelerate 0.34.0
- wandb 0.18.0
”I’m done with the Jupyter instance. Download my notebook and shut it down.”
The agent saves your work and cleans up:ssh_execute—ls /root/*.ipynb /workspace/*.ipynb 2>/dev/nullto find notebooksfile_download— downloads/workspace/experiment.ipynbbilling_usage— checks how much the session costdelete_instance— terminatesjupyter-dev
Downloaded experiment.ipynb (142 KB). Session summary:Instance jupyter-dev terminated. Billing stopped.
- Duration: 3.5 hours
- Cost: $1.23
- GPU: RTX 4090
Tools used in this workflow
| Tool | Purpose |
|---|---|
list_gpu_types | Check GPU options and pricing |
create_instance / instance_status | Deploy and wait for readiness |
ssh_execute | Install JupyterLab, packages, start the server |
get_instance | Get the public IP for the Jupyter URL |
file_download | Save notebooks before teardown |
delete_instance | Clean up when done |