Voice AI observability dev tool for Pipecat
Project description
Finchvox - elevated debugging for Pipecat Voice AI
Do your eyes bleed like a Vecna victim watching Pipecat logs fly by? Does flipping between audio recordings, transcripts, and logs damage your ⌘+tab keys from frequent use? If so, meet Finchvox, a local debugger purpose-built for Voice AI apps.
Finchvox unifies conversation audio, logs, and traces in a single UI, highlighting voice-specific problems like interruptions and high user <-> bot latency.
👇 Click the image for a short video:
Table of Contents
Prerequisites
- Python 3.10 or higher
- A Pipecat Voice AI application
Installation
# uv
uv add finchvox "pipecat-ai[tracing]"
# Or with pip
pip install finchvox "pipecat-ai[tracing]"
Setup
- Add the following to the top of your bot (e.g.,
bot.py):
import finchvox
from finchvox import FinchvoxProcessor
finchvox.init(service_name="my-voice-app")
- Add
FinchvoxProcessorto your pipeline, ensuring it comes aftertransport.output():
pipeline = Pipeline([
# SST, LLM, TTS, etc. processors
transport.output(),
FinchvoxProcessor(), # Must come after transport.output()
context_aggregator.assistant(),
])
- Initialize your
PipelineTaskwith metrics, tracing and turn tracking enabled:
task = PipelineTask(
pipeline,
params=PipelineParams(enable_metrics=True),
enable_tracing=True,
enable_turn_tracking=True,
)
Configuration
The finchvox.init() function accepts the following optional parameters:
| Parameter | Default | Description |
|---|---|---|
endpoint |
"http://localhost:4317" |
Finchvox collector endpoint |
insecure |
True |
Use insecure gRPC connection (no TLS) |
capture_logs |
True |
Send logs to collector alongside traces |
log_modules |
None |
Additional module prefixes to capture (e.g., ["myapp"]) |
By default, logs from pipecat.*, finchvox.*, and __main__ are captured. Use log_modules to include logs from your own modules.
Usage - Finchvox server
uv run finchvox start
For the list of available options, run:
uv run finchvox --help
Troubleshooting
No spans being written
- Check collector is running: Look for "OTLP collector listening on port 4317" log message
- Verify client endpoint: Ensure Pipecat is configured to send to
http://localhost:4317
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file finchvox-0.0.4.tar.gz.
File metadata
- Download URL: finchvox-0.0.4.tar.gz
- Upload date:
- Size: 8.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ecae25f9a821079904d9980ced0fb0a2da3e9fe921cca0122fecf004ce24b95
|
|
| MD5 |
2bb82a5db047295931fc3542c10513da
|
|
| BLAKE2b-256 |
a2ea5f565e1861295537665c3f9c5950b0a10160f72361492db9c79ba0000b24
|
File details
Details for the file finchvox-0.0.4-py3-none-any.whl.
File metadata
- Download URL: finchvox-0.0.4-py3-none-any.whl
- Upload date:
- Size: 123.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09c5b3c4faf8e495caa038f9cf531a77a019d16e04b2b5ae991460c3029f39a0
|
|
| MD5 |
46f5a247165f7c5c5ea86be1639aa522
|
|
| BLAKE2b-256 |
1a62e257dd3f7ef94e77d27b6b9b1c06b28df7b0d5855c7cc86d80bd5d4f7035
|