From f61bbd3d3dba55cad4191e4a56dc9e4e7481639b Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Fri, 25 Jul 2025 22:22:01 -0400 Subject: [PATCH] Console message for where to connect to the server --- src/pipecat/runner/cloud.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/pipecat/runner/cloud.py b/src/pipecat/runner/cloud.py index 08fb563f9..cb97fc05b 100644 --- a/src/pipecat/runner/cloud.py +++ b/src/pipecat/runner/cloud.py @@ -336,6 +336,18 @@ def main(): args = parser.parse_args() + # Print startup message + if args.transport == "webrtc": + print() + print(f"🚀 WebRTC server starting at http://{args.host}:{args.port}/client") + print(f" Open this URL in your browser to connect!") + print() + elif args.transport == "daily": + print() + print(f"🚀 Daily server starting at http://{args.host}:{args.port}") + print(f" Open this URL in your browser to start a session!") + print() + # Create the app with transport-specific setup app = _create_server_app(args.transport, args.host, args.proxy)