mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
e6bfc51367
* Add additional integration tests and add OpenAIAssistant integration tests project. * Address PR comments. * Address PR comments.
10 lines
220 B
C#
10 lines
220 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
namespace AgentConformance.IntegrationTests.Support;
|
|
|
|
internal static class Constants
|
|
{
|
|
public const int RetryCount = 3;
|
|
public const int RetryDelay = 5000;
|
|
}
|