mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 08:44:59 +00:00
feat: add new color for all "-4o-" models except "gpt-4o-mini"
This commit is contained in:
parent
1f59687e9d
commit
c4f70d81b7
1 changed files with 4 additions and 1 deletions
|
@ -50,7 +50,10 @@ def plot_over_time(yaml_file):
|
|||
spine.set_linewidth(0.5)
|
||||
|
||||
colors = [
|
||||
"red" if "gpt-4" in model else "green" if "gpt-3.5" in model else "blue" for model in models
|
||||
"orange" if "-4o-" in model and "gpt-4o-mini" not in model
|
||||
else "red" if "gpt-4" in model
|
||||
else "green" if "gpt-3.5" in model
|
||||
else "blue" for model in models
|
||||
]
|
||||
ax.scatter(dates, pass_rates, c=colors, alpha=0.5, s=120)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue