David Luong 80ecbf900c
[.Net] Support tools for AnthropicClient and AnthropicAgent (#2944)
* Squash commits : support anthropic tools

* Support tool_choice

* Remove reference from TypeSafeFunctionCallCodeSnippet.cs and add own function in test proj
2024-06-30 23:21:34 +00:00

13 lines
271 B
C#

// Copyright (c) Microsoft Corporation. All rights reserved.
// Program.cs
namespace AutoGen.Anthropic.Samples;
internal static class Program
{
public static async Task Main(string[] args)
{
await Create_Anthropic_Agent_With_Tool.RunAsync();
}
}