From 9f7fd4ebe883bde0b8674a52c46472e0a7f2019b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=80=A1=E6=81=AA?= Date: Mon, 12 May 2025 20:22:00 +0800 Subject: [PATCH] fix: print msg --- examples/getting_started/simple_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/getting_started/simple_server.py b/examples/getting_started/simple_server.py index 958fa1c..f7a2804 100644 --- a/examples/getting_started/simple_server.py +++ b/examples/getting_started/simple_server.py @@ -175,7 +175,7 @@ def handle_task(self, task): print("\n=== What's Next? ===") print("1. Connect to this server using 'simple_client.py':") - print(f" python simple_client.py http://localhost:{port}") + print(f" python simple_client.py --external http://localhost:{port}") print("2. Try 'function_calling.py' to add function calling capability") print("3. Explore more examples to build more powerful agents")