13 lines
274 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 Anthropic_Agent_With_Prompt_Caching.RunAsync();
}
}