mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 10:14:59 +00:00
fix: Improve print statement to include model name in parameters output
This commit is contained in:
parent
08d48f42ad
commit
5e48f6898d
1 changed files with 1 additions and 1 deletions
|
@ -259,7 +259,7 @@ class ModelInfoManager:
|
|||
input_cost = 0 if input_cost_match else None
|
||||
output_cost = 0 if output_cost_match else None
|
||||
params = {"max_input_tokens": context_size, "input_cost": input_cost, "output_cost": output_cost}
|
||||
print("Parsed model parameters:", params)
|
||||
print(f"Model '{model}': Parsed parameters: {params}")
|
||||
return params
|
||||
except Exception as e:
|
||||
print("Error fetching openrouter info:", str(e))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue