mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-13 20:11:00 +00:00

* Add cache control to anthropic client and write unit test & exampel * PR comments * Fix import ordering for build * Fix import orderings --------- Co-authored-by: Xiaoyun Zhang <bigmiao.zhang@gmail.com>
13 lines
274 B
C#
13 lines
274 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 Anthropic_Agent_With_Prompt_Caching.RunAsync();
|
|
}
|
|
}
|