mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-26 02:11:24 +00:00
11 lines
361 B
C#
11 lines
361 B
C#
![]() |
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|||
|
// AnthropicTestUtils.cs
|
|||
|
|
|||
|
namespace AutoGen.Anthropic;
|
|||
|
|
|||
|
public static class AnthropicTestUtils
|
|||
|
{
|
|||
|
public static string ApiKey => Environment.GetEnvironmentVariable("ANTHROPIC_API_KEY") ??
|
|||
|
throw new Exception("Please set ANTHROPIC_API_KEY environment variable.");
|
|||
|
}
|