From fc0542afa653fe9e65f5a1bbceca8a9f71dee6ec Mon Sep 17 00:00:00 2001 From: nexy7574 Date: Sun, 9 Jun 2024 17:09:14 +0100 Subject: [PATCH] Add even more truthing --- src/cogs/ollama.py | 52 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) 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(