13 lines
267 B
C#
Raw Permalink Normal View History

2024-09-30 16:32:48 -07:00
// Copyright (c) Microsoft Corporation. All rights reserved.
// Program.cs
namespace AutoGen.Anthropic.Sample;
internal static class Program
{
2024-09-30 16:32:48 -07:00
public static async Task Main(string[] _)
{
await Anthropic_Agent_With_Prompt_Caching.RunAsync();
}
}