Skip to content

Commit 8aa16ea

Browse files
authored
Merge pull request #431 from hchen2020/master
Increase MaxInputLengthPerRequest to 512.
2 parents 3ab3bc8 + d109468 commit 8aa16ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ namespace BotSharp.Abstraction.Conversations.Settings;
33
public class RateLimitSetting
44
{
55
public int MaxConversationPerDay { get; set; } = 100;
6-
public int MaxInputLengthPerRequest { get; set; } = 256;
6+
public int MaxInputLengthPerRequest { get; set; } = 512;
77
public int MinTimeSecondsBetweenMessages { get; set; } = 2;
88
}

0 commit comments

Comments
 (0)