mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-24 14:25:00 +00:00
fix f-string
This commit is contained in:
parent
877dda2f3d
commit
a8b854fe8d
1 changed files with 1 additions and 1 deletions
|
@ -1013,7 +1013,7 @@ def check_model_availability(io, client, main_model):
|
||||||
except openai.NotFoundError:
|
except openai.NotFoundError:
|
||||||
# Azure sometimes returns 404?
|
# Azure sometimes returns 404?
|
||||||
# https://discord.com/channels/1131200896827654144/1182327371232186459
|
# https://discord.com/channels/1131200896827654144/1182327371232186459
|
||||||
io.tool_error("Unable to list available models, proceeding with {main_model.name}")
|
io.tool_error(f"Unable to list available models, proceeding with {main_model.name}")
|
||||||
return True
|
return True
|
||||||
|
|
||||||
model_ids = sorted(model.id for model in available_models)
|
model_ids = sorted(model.id for model in available_models)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue