BotSharp/src/Infrastructure/BotSharp.Abstraction/Conversations/Settings/RateLimitSetting.cs
2024-04-25 17:03:34 -05:00

9 lines
273 B
C#

namespace BotSharp.Abstraction.Conversations.Settings;
public class RateLimitSetting
{
public int MaxConversationPerDay { get; set; } = 100;
public int MaxInputLengthPerRequest { get; set; } = 512;
public int MinTimeSecondsBetweenMessages { get; set; } = 2;
}