fixed bug in change_model
This commit is contained in:
parent
484caf1f74
commit
b8fe922bd5
1 changed files with 1 additions and 1 deletions
|
|
@ -1216,7 +1216,7 @@ 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:
|
||||||
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
|
output += model_options
|
||||||
await ctx.send(output)
|
await ctx.send(output)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue