BotSharp/src/Infrastructure/BotSharp.Abstraction/Conversations/Settings/RateLimitSetting.cs

9 lines
273 B
C#
Raw Normal View History

2024-03-24 17:33:41 +00:00
namespace BotSharp.Abstraction.Conversations.Settings;
public class RateLimitSetting
{
public int MaxConversationPerDay { get; set; } = 100;
public int MaxInputLengthPerRequest { get; set; } = 512;
2024-03-24 17:33:41 +00:00
public int MinTimeSecondsBetweenMessages { get; set; } = 2;
}