mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 16:54:59 +00:00
Show model warnings in normal color, not red/error
This commit is contained in:
parent
2e3a68ba6c
commit
470b8d0251
1 changed files with 3 additions and 3 deletions
|
@ -453,17 +453,17 @@ def sanity_check_model(io, model):
|
||||||
io.tool_error(f"- {key}")
|
io.tool_error(f"- {key}")
|
||||||
elif not model.keys_in_environment:
|
elif not model.keys_in_environment:
|
||||||
show = True
|
show = True
|
||||||
io.tool_error(f"Model {model}: Unknown which environment variables are required.")
|
io.tool_output(f"Model {model}: Unknown which environment variables are required.")
|
||||||
|
|
||||||
if not model.info:
|
if not model.info:
|
||||||
show = True
|
show = True
|
||||||
io.tool_error(
|
io.tool_output(
|
||||||
f"Model {model}: Unknown model, context window size and token costs unavailable."
|
f"Model {model}: Unknown model, context window size and token costs unavailable."
|
||||||
)
|
)
|
||||||
|
|
||||||
possible_matches = fuzzy_match_models(model.name)
|
possible_matches = fuzzy_match_models(model.name)
|
||||||
if possible_matches:
|
if possible_matches:
|
||||||
io.tool_error("Did you mean one of these?")
|
io.tool_output("Did you mean one of these?")
|
||||||
for match in possible_matches:
|
for match in possible_matches:
|
||||||
fq, m = match
|
fq, m = match
|
||||||
if fq == m:
|
if fq == m:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue