Skip to content

Commit 5d31a00

Browse files
committed
Boosts dalle3 limit
1 parent f1d2dd5 commit 5d31a00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Runner.Discord/Responders/DalleResponder.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public async Task ProcessMessage(IMessage message, CancellationToken token)
6161
const string dalle3Trigger = "dalle3 ";
6262
if (message.Content.StartsWith(dalle3Trigger, StringComparison.InvariantCultureIgnoreCase))
6363
{
64-
const int dalle3Limit = 1;
64+
const int dalle3Limit = 5;
6565
if (_featureFlags.DalleHqAttempts.Count >= dalle3Limit)
6666
{
6767
await message.Channel.SendMessageAsync("wait until the next day", options: token.ToRequestOptions());

0 commit comments

Comments
 (0)