Kier -> Keir
All checks were successful
Build and Publish college-bot-v2 / build_and_publish (push) Successful in 14s

This commit is contained in:
Nexus 2024-06-09 18:29:10 +01:00
parent 7657f9b07c
commit 692f2ed893

View file

@ -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
<latest> - limit the training history to the latest <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()