From 602b6a0c0e42e0641544ad0eb1dba6c2379e2825 Mon Sep 17 00:00:00 2001 From: Codex Date: Fri, 3 Apr 2026 15:35:04 +0800 Subject: [PATCH] docs: fix function arguments typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f166faed..2fc18b4b 100644 --- a/README.md +++ b/README.md @@ -795,7 +795,7 @@ static class GetSdkScore { ``` When your functions are defined, add them to the input parameters using `addTool(Class)` and then -call them if requested to do so in the AI model's response. `Function.argments(Class)` can be +call them if requested to do so in the AI model's response. `Function.arguments(Class)` can be used to parse a function's parameters in JSON form to an instance of your function-defining class. The fields of that instance will be set to the values of the parameters to the function call.