From 78dd6747fdb4913fbdc7fccd177eb661b1457435 Mon Sep 17 00:00:00 2001 From: xli Date: Tue, 25 Nov 2025 13:33:56 -0500 Subject: [PATCH] bug fix: chp3.03, python tutorial missing one line of code --- 03-GettingStarted/03-llm-client/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/03-GettingStarted/03-llm-client/README.md b/03-GettingStarted/03-llm-client/README.md index cc6d66d74..aca322c2b 100644 --- a/03-GettingStarted/03-llm-client/README.md +++ b/03-GettingStarted/03-llm-client/README.md @@ -503,6 +503,7 @@ Next step after listing server capabilities is to convert them into a format tha 1. Next, let's update our client code to leverage this function like so: ```python + functions = [] for tool in tools.tools: print("Tool: ", tool.name) print("Tool", tool.inputSchema["properties"])