mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-12 19:40:40 +00:00

Co-authored-by: Jack Gerrits <jack@jackgerrits.com> Co-authored-by: Ryan Sweet <rysweet@microsoft.com>
13 lines
267 B
C#
13 lines
267 B
C#
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Program.cs
|
|
|
|
namespace AutoGen.Anthropic.Sample;
|
|
|
|
internal static class Program
|
|
{
|
|
public static async Task Main(string[] _)
|
|
{
|
|
await Anthropic_Agent_With_Prompt_Caching.RunAsync();
|
|
}
|
|
}
|