changed change_model

This commit is contained in:
phixxy 2024-01-04 09:43:48 -08:00
parent 340d277cb5
commit bfb0749aa0

View file

@ -1405,8 +1405,8 @@ async def change_model(ctx, model_choice='0'):
await ctx.send(f"Already set to use {model_name}") await ctx.send(f"Already set to use {model_name}")
return return
else: else:
default = '\n'.join([f"{choice}: {name}" for choice, name in model_choices.items()]) output = '\n'.join([f"{choice}: {name}" for choice, name in model_choices.items()])
output += model_choices #output += model_choices
await ctx.send(output) await ctx.send(output)
@bot.command( @bot.command(