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