Explicit resources
State the CPU and memory an agent gets directly on the deploy:pcc-deploy.toml:
2, 500m), memory with a binary suffix (1Gi, 512Mi). Explicit resources and an agent profile are mutually exclusive — a deploy specifies one or the other, and passing one on the command line clears the other from pcc-deploy.toml. Explicit resources are accepted only for agents in .
Explicit resources are not yet available for agents deployed from a linked Git
repository; use a profile for those.
pipecat cloud agent status shows the resolved CPU and memory of the current deployment.
Organization agent profiles
If you deploy many agents with the same shape, define a named profile once and select it by name, exactly like the platform profiles:
In the dashboard, profiles are managed under Settings → Agent profiles, and the agent form offers your profiles next to the platform ones for agents in a .
A profile is a template applied at deploy time, not a live setting: editing a profile changes nothing that is running, and any later deploy of a service using it — even an image-only change — picks up the new sizing. Disabling a profile stops new deploys from selecting it; existing deployments are unaffected. Profiles cannot be deleted while deployments reference them, which is why disabling is the retirement path.
Organization profiles can be used only in . The platform profiles (
agent-1x and so on) still work there and resolve to their CPU and memory, but carry no billing meaning in a region you host.
Architecture
Agents run onamd64 or arm64 nodes according to the architecture their deployment declares. Two things determine what is valid:
-
What the region supports. You declare it at registration (
pipecat cloud regions register … --architectures amd64,arm64 --default-architecture amd64) and can change it any time with the same command. Only declare architectures your cluster can actually schedule.pipecat cloud regions listshows every region’s supported and default architectures. -
What the deployment declares. Set it when your image is built for one architecture, so the agent schedules on matching nodes instead of failing at startup:
or
architecture = "arm64"inpcc-deploy.toml. Omitted, the region’s default applies.
pipecat cloud agent status shows the deployment’s architecture, and the dashboard agent form offers a selector when the region supports more than one.
Scaling limits
The per-organization replica limit that applies to does not apply to a :max_agents is bounded only by your cluster’s capacity. Plan agent-pool capacity from expected concurrency times the resources you assign per agent, and keep the autoscaler’s spare capacity in mind — by default a service keeps roughly two pods per active or pending session so that the next session finds a warm agent. See Configuration for the spare-capacity policy.