Files
ChatBot/ChatBot/Common/Constants/AIResponseConstants.cs
Leonid Pershin 7a3a0172cf many fixes
2025-10-16 07:11:30 +03:00

20 lines
603 B
C#

namespace ChatBot.Common.Constants
{
/// <summary>
/// Constants for AI response handling
/// </summary>
public static class AIResponseConstants
{
/// <summary>
/// Marker for empty AI responses that should be ignored
/// </summary>
public const string EmptyResponseMarker = "{empty}";
/// <summary>
/// Default error message for failed generation
/// </summary>
public const string DefaultErrorMessage =
"Извините, произошла ошибка при генерации ответа.";
}
}