Add even more truthing
All checks were successful
Build and Publish college-bot-v2 / build_and_publish (push) Successful in 17s

This commit is contained in:
Nexus 2024-06-09 17:09:14 +01:00
parent 7add90f801
commit fc0542afa6

View file

@ -1191,6 +1191,58 @@ class Ollama(commands.Cog):
async with ctx.channel.typing(): async with ctx.channel.typing():
await self.generate_truth(ctx, "tate", latest) 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
<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, "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
<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, "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
<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, "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
<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, "Nigel Farage", latest)
@commands.command() @commands.command()
@commands.guild_only() @commands.guild_only()
async def impersonate( async def impersonate(