Files
westey e6bfc51367 Add additional integration tests and add OpenAIAssistant integration tests project. (#79)
* Add additional integration tests and add OpenAIAssistant integration tests project.

* Address PR comments.

* Address PR comments.
2025-06-17 11:43:29 +00:00

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