From 8800603ab0baae2cefcfb00591cc971e4b7006a7 Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Thu, 23 Oct 2025 22:10:05 -0400 Subject: [PATCH] Remove proxy warning for telephony bots --- src/pipecat/runner/run.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/pipecat/runner/run.py b/src/pipecat/runner/run.py index 4c1d3135d..d721bc5b0 100644 --- a/src/pipecat/runner/run.py +++ b/src/pipecat/runner/run.py @@ -788,10 +788,6 @@ def main(): logger.error("For ESP32, you need to specify `--host IP` so we can do SDP munging.") return - if args.transport in TELEPHONY_TRANSPORTS and not args.proxy: - logger.error(f"For telephony transports, you need to specify `--proxy PROXY`.") - return - # Log level logger.remove() logger.add(sys.stderr, level="TRACE" if args.verbose else "DEBUG")