diff --git a/src/cogs/ollama.py b/src/cogs/ollama.py index a410152..4747878 100644 --- a/src/cogs/ollama.py +++ b/src/cogs/ollama.py @@ -1191,6 +1191,58 @@ class Ollama(commands.Cog): async with ctx.channel.typing(): await self.generate_truth(ctx, "tate", latest) + @commands.command() + @commands.guild_only() + async def rishi(self, ctx: commands.Context, latest: int = None): + """ + Generates a twitter post from Rishi Sunak + + - limit the training history to the latest tweets. + + This command may take a long time. + """ + async with ctx.channel.typing(): + await self.generate_truth(ctx, "Rishi Sunak", latest) + + @commands.command() + @commands.guild_only() + async def tommy(self, ctx: commands.Context, latest: int = None): + """ + Generates a twitter post from Tommy Robinson + + - limit the training history to the latest tweets. + + This command may take a long time. + """ + async with ctx.channel.typing(): + await self.generate_truth(ctx, "Tommy Robinson 🇬🇧", latest) + + @commands.command() + @commands.guild_only() + async def laurance(self, ctx: commands.Context, latest: int = None): + """ + Generates a twitter post from Laurence Fox + + - limit the training history to the latest tweets. + + This command may take a long time. + """ + async with ctx.channel.typing(): + await self.generate_truth(ctx, "Laurence Fox", latest) + + @commands.command() + @commands.guild_only() + async def nigel(self, ctx: commands.Context, latest: int = None): + """ + Generates a twitter post from Nigel Farage + + - limit the training history to the latest tweets. + + This command may take a long time. + """ + async with ctx.channel.typing(): + await self.generate_truth(ctx, "Nigel Farage", latest) + @commands.command() @commands.guild_only() async def impersonate(