13 lines
271 B
C#
Raw Normal View History

// 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();
}
}