infrastructure · runpod ← all features

Rapid Pod Deployments.

One command ships your whole canvas onto a GPU pod. DISPATCH provisions an A100 80GB on RunPod, serves a 70B-class model, and wires the endpoint back into every node — no containers, no inference server to stand up.

Planning dispatch deploy --pod
RunPod· A100 80GB· 70B-class served· minutes, not infra
what it is

Your canvas is the deployable unit.

A DISPATCH workflow is already a self-contained graph — nodes, bindings, tools and edges in one file. Rapid Pod Deployments lifts that file onto a GPU pod, serves a 70B-class model on it, and repoints every node at the pod's local endpoint. No Dockerfile, no Kubernetes.

one command

From local canvas to served pod.

DISPATCH snapshots the graph, requests the GPU, boots an inference server, and rebinds the nodes. The chain you tested on a hosted model now runs against one you serve yourself — on hardware big enough to hold it.

$ dispatch deploy --pod --gpu a100-80gb --model llama-3.1-70b
the pod

A100 80GB, 70B-class served.

provider
runpod
gpu
A100 80GB
model
70B-class
endpoint
pod-local /v1
status
served
why it matters

Big models, no rig.

A 70B-class model won't fit on a laptop. The pod gives every node — Investigate, Plan, Create — a frontier-scale model without buying a GPU.

why it matters

Co-located, low latency.

Orchestration and weights sit on the same pod, so a 20-wide Parallel fan-out talks to the model over loopback — no public round-trip per token.

why it matters

Ephemeral by default.

Spin the pod up for a run, tear it down after. You pay for GPU-minutes, not a standing cluster — and the canvas file is the only thing you keep.

try it

Press deploy. Watch the pod come up.

A live run of dispatch deploy --pod — canvas packaged, GPU acquired, weights loaded into VRAM, endpoint bound back to the nodes.

deploy · live idle
$ dispatch deploy --pod --gpu a100-80gb
00:00
canvas packagedqueued
runpod · A100 80GB acquiredqueued
pulling 70B-class weightsqueued
serving model · /v1 upqueued
endpoint → orchestrationqueued
pod not provisioned
VRAM · 70B-class weights 0 / 80 GB
gpu
model
throughput
0 tok/s
running on the pod awaiting endpoint
Investigateweb_search
Plan70B-class
Create70B-class
Reviewgate
Back to all features all features
how it works

Same graph. New place to run it.

DISPATCH treats the pod as a managed target. Standing up a serving stack used to be a day of infra — here it's one line.

the old way infra by hand

Stand up a serving stack.

rent a GPU instance, SSH in
install drivers, CUDA, an inference server
download + shard 70B weights
expose an endpoint, hand-wire every node
remember to tear it all down
with dispatch one command

Ship the canvas.

dispatch deploy --pod
A100 80GB acquired on RunPod
70B-class served out of the box
nodes auto-bound to the pod endpoint
ephemeral — torn down after the run