From b5e68a9a90ee3ba51d46e8a2cacaa0bf48b832b5 Mon Sep 17 00:00:00 2001 From: Lee Stott Date: Sat, 11 Oct 2025 11:44:01 +0100 Subject: [PATCH] Update 10-ai-framework-project/README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- 10-ai-framework-project/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/10-ai-framework-project/README.md b/10-ai-framework-project/README.md index 1376241d..2e2233e8 100644 --- a/10-ai-framework-project/README.md +++ b/10-ai-framework-project/README.md @@ -190,7 +190,7 @@ functions = { } ``` -What we're doing here is to create a description of a tool called `add`. By inheriting from `TypedDict` and adding members like `a` and `b` of type `Annotated` this can be converted to a schema that the LLM can understand. Ther creation of functions is a dictionary that ensures that we know what to do if a specific tool is identified. +What we're doing here is to create a description of a tool called `add`. By inheriting from `TypedDict` and adding members like `a` and `b` of type `Annotated` this can be converted to a schema that the LLM can understand. The creation of functions is a dictionary that ensures that we know what to do if a specific tool is identified. Let's see how we call the LLM with this tool next: