docs: work on README

This commit is contained in:
Stevan Freeborn
2024-07-06 08:46:40 -05:00
parent dd380c9253
commit 5c0cad2545
5 changed files with 669 additions and 7 deletions
+1 -1
View File
@@ -107,7 +107,7 @@ public class Tool
ArgumentValidator.ThrowIfNullOrWhitespace(tool.Description, nameof(tool.Description));
ArgumentValidator.ThrowIfNull(tool.Function, nameof(tool.Function));
return new Tool(tool.Name, tool.Description, new AnthropicFunction(tool.Function));
return new Tool(tool.Name, tool.Description, new AnthropicFunction(tool.Function, tool));
}
/// <summary>