From 692f2ed893c71f85b6b64a7ca65f98fdfdd7f52d Mon Sep 17 00:00:00 2001 From: nexy7574 Date: Sun, 9 Jun 2024 18:29:10 +0100 Subject: [PATCH] Kier -> Keir --- src/cogs/ollama.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cogs/ollama.py b/src/cogs/ollama.py index 1b93919..fb32179 100644 --- a/src/cogs/ollama.py +++ b/src/cogs/ollama.py @@ -1100,7 +1100,7 @@ class Ollama(commands.Cog): post_type = "tweet" elif entity == "Keir Starmer": system = ( - "Kier Starmer is the current leader of the Labour Party in the United Kingdom. Known for " + "Keir Starmer is the current leader of the Labour Party in the United Kingdom. Known for " "his measured and analytical approach, he exhibits a calm and collected demeanor. He " "has a strong legal background, which influences his meticulous and evidence-based " "decision-making. Starmer's personality has been described as compassionate and inclusive, " @@ -1319,16 +1319,16 @@ class Ollama(commands.Cog): @commands.command(aliases=["starmer"]) @commands.guild_only() - async def kier(self, ctx: commands.Context, latest: int = None): + async def keir(self, ctx: commands.Context, latest: int = None): """ - Generates a twitter post from Kier Starmer + Generates a twitter post from Keir Starmer - 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, "Kier Starmer", latest) + await self.generate_truth(ctx, "Keir Starmer", latest) @commands.command() @commands.guild_only()