You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Program.cs 271 B

123456789101112
  1. // Copyright (c) Microsoft Corporation. All rights reserved.
  2. // Program.cs
  3. namespace AutoGen.Anthropic.Samples;
  4. internal static class Program
  5. {
  6. public static async Task Main(string[] args)
  7. {
  8. await Create_Anthropic_Agent_With_Tool.RunAsync();
  9. }
  10. }