mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 17:55:01 +00:00
style: Use lowercase 'k' for token budget display
This commit is contained in:
parent
1c736161c5
commit
67ebb2566d
1 changed files with 2 additions and 2 deletions
|
@ -229,9 +229,9 @@ class Coder:
|
|||
else:
|
||||
value = budget / 1000
|
||||
if value == int(value):
|
||||
formatted_budget = f"{int(value)}K"
|
||||
formatted_budget = f"{int(value)}k"
|
||||
else:
|
||||
formatted_budget = f"{value:.1f}K"
|
||||
formatted_budget = f"{value:.1f}k"
|
||||
output += f", {formatted_budget} think tokens"
|
||||
|
||||
lines.append(output)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue