Skip to content

Commit d109468

Browse files
author
Haiping Chen
committed
Increase MaxInputLengthPerRequest to 512.
1 parent 3ab3bc8 commit d109468

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)