mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 01:04:59 +00:00
style: Format warning messages to adhere to line length limit
This commit is contained in:
parent
77101a96a1
commit
c01db8783d
1 changed files with 4 additions and 2 deletions
|
@ -791,7 +791,8 @@ def main(argv=None, input=None, output=None, force_git_root=None, return_coder=F
|
|||
if args.reasoning_effort is not None:
|
||||
if main_model.accepts_settings and "reasoning_effort" not in main_model.accepts_settings:
|
||||
io.tool_warning(
|
||||
f"Warning: The model {main_model.name} may not support the 'reasoning_effort' setting."
|
||||
f"Warning: The model {main_model.name} may not support the 'reasoning_effort'"
|
||||
" setting."
|
||||
)
|
||||
main_model.set_reasoning_effort(args.reasoning_effort)
|
||||
|
||||
|
@ -799,7 +800,8 @@ def main(argv=None, input=None, output=None, force_git_root=None, return_coder=F
|
|||
if args.thinking_tokens is not None:
|
||||
if main_model.accepts_settings and "thinking_tokens" not in main_model.accepts_settings:
|
||||
io.tool_warning(
|
||||
f"Warning: The model {main_model.name} may not support the 'thinking_tokens' setting."
|
||||
f"Warning: The model {main_model.name} may not support the 'thinking_tokens'"
|
||||
" setting."
|
||||
)
|
||||
main_model.set_thinking_tokens(args.thinking_tokens)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue