Registry / devops / pipecatcloud

pipecatcloud

JSON →
library0.7.2pypypi✓ verified 79d ago

Pipecat Cloud is the official cloud hosting service for Pipecat AI applications, providing managed infrastructure for deploying and scaling voice AI pipelines. Version 0.7.2 supports Python >=3.11 and is actively maintained. Releases follow an iterative cadence with frequent minor version bumps.

pip install pipecatcloud
INSTALL
IMPORT
SIG · PIPECATCLOUD
P
pipecatcloud
devopspythonv0.7.2
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Session
from pipecatcloud import Session
from pipecatcloud import CloudConfig
SessionArguments
from pipecatcloud import SessionArguments
SmallWebRTCSessionManager
from pipecatcloud import SmallWebRTCSessionManager

Deploy a Pipecat AI pipeline to the cloud. Ensure GCP project ID is set via environment variable.

import os from pipecatcloud import CloudConfig, deploy config = CloudConfig( service_name="my-assistant", region="us-central1", project_id=os.environ.get('GCP_PROJECT', '') ) deploy(config, pipeline_module="assistant:pipeline")
Debug
Known issues
breakingImport path changed: use 'from pipecatcloud import …' not 'from pipecat.cloud import …'. The old import no longer exists as of 0.7.0.
fix
Update imports to 'from pipecatcloud import CloudConfig, deploy'
affects: >=0.7.0
deprecatedThe 'region' parameter in CloudConfig defaults to 'us-central1' but may be deprecated in favor of automatic region selection in future versions.
fix
Use 'region' currently; monitor changelog for updates.
affects: >=0.7.0
gotchaThe 'pipeline_module' argument in deploy() must be a string in the format 'module:callable'. Using a dotted path without colon or a class reference will fail silently.
fix
Pass a string like 'my_pipeline:pipeline' where 'my_pipeline.py' contains a callable named 'pipeline'.
affects: all
gotchaRequires Python >=3.11; using older Python versions will raise a version incompatibility error at install time.
fix
Ensure your environment uses Python 3.11 or later.
affects: >=0.7.0
Upgrade
Version history
0.7.2latest on PyPI · released May 29, 2026
Audit
Dependencies
pipecat-airequiredCore dependency for Pipecat AI pipeline logic
google-cloud-runoptionalDeployment target (applies when deploying to GCP)
Agent activity
10 hits · last 30 days
node
10
Resources

No resource links recorded.

pipecatcloud — pip install pipecatcloud · libregistry