mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-23 04:54:59 +00:00
style: Line wrap long string literals
This commit is contained in:
parent
caf212c8d1
commit
a1c2eeb88a
2 changed files with 7 additions and 2 deletions
|
@ -143,7 +143,10 @@ def get_parser(default_config_files, git_root):
|
||||||
group.add_argument(
|
group.add_argument(
|
||||||
"--thinking-tokens",
|
"--thinking-tokens",
|
||||||
type=str,
|
type=str,
|
||||||
help="Set the thinking token budget for models that support it. Use 0 to disable. (default: not set)",
|
help=(
|
||||||
|
"Set the thinking token budget for models that support it. Use 0 to disable. (default:"
|
||||||
|
" not set)"
|
||||||
|
),
|
||||||
)
|
)
|
||||||
group.add_argument(
|
group.add_argument(
|
||||||
"--verify-ssl",
|
"--verify-ssl",
|
||||||
|
|
|
@ -1565,7 +1565,9 @@ class Commands:
|
||||||
else:
|
else:
|
||||||
formatted_budget = model.get_thinking_tokens()
|
formatted_budget = model.get_thinking_tokens()
|
||||||
budget = model.get_raw_thinking_tokens()
|
budget = model.get_raw_thinking_tokens()
|
||||||
self.io.tool_output(f"Set thinking token budget to {budget:,} tokens ({formatted_budget}).")
|
self.io.tool_output(
|
||||||
|
f"Set thinking token budget to {budget:,} tokens ({formatted_budget})."
|
||||||
|
)
|
||||||
|
|
||||||
self.io.tool_output()
|
self.io.tool_output()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue