From 728a2ae3f1709282c56093cea63fca0b88383956 Mon Sep 17 00:00:00 2001 From: nex Date: Tue, 14 Nov 2023 22:39:18 +0000 Subject: [PATCH] Limit to 3 concurrent uses --- cogs/other.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/other.py b/cogs/other.py index eb7803f..3442f8e 100644 --- a/cogs/other.py +++ b/cogs/other.py @@ -1834,7 +1834,7 @@ class OtherCog(commands.Cog): self.stop() @commands.slash_command() - @commands.max_concurrency(1, commands.BucketType.user, wait=False) + @commands.max_concurrency(3, commands.BucketType.user, wait=False) async def ollama( self, ctx: discord.ApplicationContext,