fixed bug in change_model

This commit is contained in:
phixxy 2023-07-13 22:21:26 -07:00
parent 484caf1f74
commit b8fe922bd5

View file

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