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"])