Merge pull request #431 from hchen2020/master

Increase MaxInputLengthPerRequest to 512.
This commit is contained in:
C. Oceania 2024-04-25 17:04:33 -05:00 committed by GitHub
commit 8aa16ea685
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,6 +3,6 @@ namespace BotSharp.Abstraction.Conversations.Settings;
public class RateLimitSetting
{
public int MaxConversationPerDay { get; set; } = 100;
public int MaxInputLengthPerRequest { get; set; } = 256;
public int MaxInputLengthPerRequest { get; set; } = 512;
public int MinTimeSecondsBetweenMessages { get; set; } = 2;
}