whatsapp-voice-agent-pipecat

(★ 25)

WhatsApp voice agent starter using Kapso + Pipecat. Answer calls with AI speech in real-time.

File Explorer

  • .env.example
  • .gitignore
  • .python-version
  • bot.py
  • CONTRIBUTING.md
  • Dockerfile
  • LICENSE
  • pcc-deploy.toml
  • pyproject.toml
  • README.md
  • uv.lock

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

docker login

View Details ▼

Log into a Docker registry.

docker login

Interactively log into a registry:

docker login {{[-u|--username]}} {{username}}

Log into a registry with a specific username (user will be prompted for a password):

docker login {{[-u|--username]}} {{username}} {{[-p|--password]}} {{password}} {{server}}

Log into a registry with username and password:

🔍

uv run

View Details ▼

Run a command or script in the project environment.

uv run {{path/to/script.py}}

Run a Python script:

uv run {{[-m|--module]}} {{module_name}}

Run a Python module:

uv run {{[-w|--with]}} {{package}} {{command}}

Run a command with additional packages installed temporarily:

🔍

uv sync

View Details ▼

Update the project's environment to match the lockfile.

uv sync

Sync the project environment with the lockfile:

uv sync --all-extras

Sync and include all optional dependencies:

uv sync --extra {{extra_name}}

Sync with specific optional dependencies:

// repository documentation