From ff8897c671fbb615100871c5efc9ea349159d6ee Mon Sep 17 00:00:00 2001 From: pi Date: Sat, 8 Aug 2026 04:16:04 +1200 Subject: [PATCH] docs: fix doubled 'the' and grammar in ai-framework-project README --- 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 f4a881988c..8dbe3fdb71 100644 --- a/10-ai-framework-project/README.md +++ b/10-ai-framework-project/README.md @@ -539,7 +539,7 @@ if(res.tool_calls): print("CONTENT: ",res.content) ``` -Now that we call `invoke` on this new llm, that has tools, we maybe the the property `tool_calls` populated. If so, any identified tools has a `name` and `args` property that identifies what tool should be called and with arguments. The full code looks like so: +Now that we call `invoke` on this new llm, that has tools, we may see the `tool_calls` property populated. If so, any identified tools has a `name` and `args` property that identifies what tool should be called and with arguments. The full code looks like so: ```python from langchain_core.messages import HumanMessage, SystemMessage