David Luong 0a2b667f3c
[.NET] Add cache control to Anthropic Client (#3372)
* 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>
2024-08-18 16:14:51 +00:00

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