20 lines
603 B
C#
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 =
|
|
"Извините, произошла ошибка при генерации ответа.";
|
|
}
|
|
}
|