mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 18:25:00 +00:00
fix: Update model sanity check output format
This commit is contained in:
parent
ba0a328196
commit
d518493bb9
1 changed files with 1 additions and 1 deletions
|
@ -851,7 +851,7 @@ def sanity_check_model(io, model):
|
||||||
io.tool_warning(f"Warning: {model} expects these environment variables")
|
io.tool_warning(f"Warning: {model} expects these environment variables")
|
||||||
for key in model.missing_keys:
|
for key in model.missing_keys:
|
||||||
value = os.environ.get(key, "")
|
value = os.environ.get(key, "")
|
||||||
status = "✓ Set" if value else "✗ Not set"
|
status = "Set" if value else "Not set"
|
||||||
io.tool_output(f"- {key}: {status}")
|
io.tool_output(f"- {key}: {status}")
|
||||||
|
|
||||||
if platform.system() == "Windows" or True:
|
if platform.system() == "Windows" or True:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue