mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-14 04:20:52 +00:00

* Squash commits : support anthropic tools * Support tool_choice * Remove reference from TypeSafeFunctionCallCodeSnippet.cs and add own function in test proj
13 lines
271 B
C#
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();
|
|
}
|
|
}
|