From a2468629102442a023d86da64c4dab65c32e8628 Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Thu, 10 Jul 2025 11:40:50 -0700 Subject: [PATCH] run.py: Add example usage to the module docstring --- src/pipecat/examples/run.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/pipecat/examples/run.py b/src/pipecat/examples/run.py index be2834a28..afd7a86ac 100644 --- a/src/pipecat/examples/run.py +++ b/src/pipecat/examples/run.py @@ -9,6 +9,21 @@ This module provides a unified interface for running Pipecat examples across different transport types including Daily.co, WebRTC, and Twilio. It handles setup, configuration, and lifecycle management for each transport type. + +Example usage: + SmallWebRTCTransport:: + + python bot.py --transport webrtc + + DailyTransport:: + + python bot.py --transport daily + + Twilio:: + + python bot.py --transport twilio --proxy username.ngrok.io + # Note: Concurrently, run an ngrok tunnel to your local server: + # ngrok http 7860 """ import argparse