Skip to main content

Wavix WebSocket serializer for Pipecat

Reason this release was yanked:

Python 3.14 is not supported

Project description

pipecat-wavix

Stream real-time audio between Pipecat and Wavix using WebSockets.

pipecat-wavix converts audio between Pipecat frames and the Wavix media stream format so you can build voice-enabled applications quickly.


What this project does

This repository contains the source code for the Wavix Frame Serializer for Pipecat.

It lets you stream audio between Pipecat and Wavix by converting audio data between their formats in real time.


What’s included

This project includes:

  • WavixFrameSerializer Converts audio between Pipecat frames and the Wavix WebSocket media stream format.

  • bot.py A minimal example that runs a Pipecat development bot and connects to a Wavix media stream. Use this if you want full control over call handling.

  • server.py A complete example that handles the full Wavix call flow, including webhooks, call answering, and media streaming. Use this if you want a ready-to-run setup with minimal configuration.


When to use this

Use this project if you want to:

  • Build voice applications with Pipecat and Wavix
  • Stream real-time audio over WebSockets
  • Prototype or test telephony integration

Wavix audio format

Wavix uses the following audio format:

  • Format: PCM16
  • Sample rate: 24 kHz
  • Bit depth: 16-bit
  • Frame size: 20 ms
  • Channels: mono
  • Endianness: little-endian

Prerequisites

Wavix account

Before you start, make sure you have:

Environment variables

Set these environment variables:

  • WAVIX_API_KEY – your Wavix API key
  • OPENAI_API_KEY – your OpenAI API key
  • DEEPGRAM_API_KEY – your Deepgram API key
  • CARTESIA_API_KEY – your Cartesia API key

System requirements

  • Python 3.12
  • uv package manager
  • ngrok (for local development)

Setup

Install the package:

pip install pipecat-wavix

If you use uv, add it to your pyproject.toml:

[project]
dependencies = [
    "pipecat-wavix>=1.0.0"
]

Then install dependencies:

uv sync

Use with a Pipecat pipeline

Import the serializer:

from pipecat_wavix import WavixFrameSerializer

Configure it:

WAVIX_SAMPLE_RATE = 24000
BOT_SAMPLE_RATE = 16000

serializer = WavixFrameSerializer(
    stream_id=stream_id,
    params=WavixFrameSerializer.InputParams(
        wavix_sample_rate=WAVIX_SAMPLE_RATE,
        sample_rate=BOT_SAMPLE_RATE,
        audio_track="inbound",
    ),
)

Set up the transport:

transport = FastAPIWebsocketTransport(
    websocket=websocket,
    params=FastAPIWebsocketParams(
        audio_in_enabled=True,
        audio_in_passthrough=True,
        audio_in_sample_rate=BOT_SAMPLE_RATE,
        audio_out_enabled=True,
        audio_out_sample_rate=WAVIX_SAMPLE_RATE,
        add_wav_header=False,
        serializer=serializer,
        audio_out_10ms_chunks=2,
        fixed_audio_packet_size=960,
    ),
)

Outbound audio is automatically converted to Wavix’s required format: PCM16, 24 kHz, mono, little-endian, 20 ms frames.


Run the example

Option 1: run server.py (recommended)

Use server.py to handle the full Wavix call flow.

Run:

uv run server.py

The server:

  • Starts a FastAPI app

  • Opens an ngrok tunnel

  • Exposes:

    • POST /wavix/inbound (webhook)
    • GET /health (health check)
    • WS /ws (WebSocket for media stream)

When a call reaches your Wavix number, the server:

  • Answers the call
  • Starts bidirectional streaming to /ws
  • Launches the bot from bot.py

What you’ll see

The server prints:

  • Local URL (for example, http://localhost:7860)
  • Public ngrok URL
  • Webhook URL (https://.../wavix/inbound)
  • WebSocket URL (wss://.../ws)

Configure Wavix

Set your Wavix number’s voice webhook to:

https://your-public-url/wavix/inbound

To update your number:

  1. Sign in to your Wavix account.
  2. Go to Numbers & trunks > My numbers.
  3. Select your number.
  4. Choose Edit number.
  5. Paste the webhook URL.
  6. Select Save.

Then call your number. The server handles the rest.

Important

  • Don’t start ngrok manually in this mode.
  • Don’t call Wavix APIs manually — server.py handles everything.

Run bot.py (standalone mode)

Use bot.py if you want to run the Pipecat development runner and manage Wavix calls yourself.

What it does

  • Starts the Pipecat development runner
  • Accepts a WebSocket connection
  • Parses the Wavix handshake
  • Builds the audio pipeline

What it doesn’t do

  • Doesn’t answer calls
  • Doesn’t create streams
  • Doesn’t replace server.py

Run the bot

uv run bot.py --transport wavix --proxy your-public-hostname

Example:

uv run bot.py --transport wavix --proxy your-ngrok-url.ngrok-free.dev

Expose your local server

Start ngrok in a separate terminal:

ngrok http 7860

Use the ngrok hostname as the --proxy value (don’t include https://, unless required).


Set up Wavix (standalone mode)

In this mode, you must handle call control yourself.

Typical flow

  1. Get the call_id from Wavix webhooks https://docs.wavix.com/api-reference/call-webhooks/on-call-event

  2. Answer the call:

curl -L "https://api.wavix.com/v1/calls/$CALL_ID/answer" \
  -H "Authorization: Bearer $WAVIX_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
  1. Start streaming:
curl -L "https://api.wavix.com/v1/calls/$CALL_ID/streams" \
  -H "Authorization: Bearer $WAVIX_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "stream_url": "wss://your-public-hostname/ws",
    "stream_type": "twoway",
    "stream_channel": "inbound"
  }'

When to use each mode

Use server.py if you want:

  • A complete, ready-to-run setup
  • Automatic webhook handling
  • Minimal configuration

Use bot.py if you want:

  • Full control over call handling
  • Integration with your own backend
  • A development or testing setup

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pipecat_wavix-1.0.2.tar.gz (7.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pipecat_wavix-1.0.2-py3-none-any.whl (7.4 kB view details)

Uploaded Python 3

File details

Details for the file pipecat_wavix-1.0.2.tar.gz.

File metadata

  • Download URL: pipecat_wavix-1.0.2.tar.gz
  • Upload date:
  • Size: 7.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pipecat_wavix-1.0.2.tar.gz
Algorithm Hash digest
SHA256 8d795bd7690ff0dad561c21464180d6571461ad54437ebcb213c490e27ab65e2
MD5 17a4a5c65e011c5fa7745774f9ddd6bd
BLAKE2b-256 b941bf7cb7aeb80cd3551675bcfbdb5432f5ee33383d3e5b01332305ef0377b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pipecat_wavix-1.0.2.tar.gz:

Publisher: publish.yml on Wavix/pipecat-wavix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pipecat_wavix-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: pipecat_wavix-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 7.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pipecat_wavix-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 464c43a72b35f73202c644552b4a8e44981c8564de46575d2cf051d87164c78c
MD5 0421acf10a828fa4b08c86b6fbf88581
BLAKE2b-256 8f762ea561aab5d4b1473f51a4b125ff137c501cc3859bbecb6c2ecb0f837c32

See more details on using hashes here.

Provenance

The following attestation bundles were made for pipecat_wavix-1.0.2-py3-none-any.whl:

Publisher: publish.yml on Wavix/pipecat-wavix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page