mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 08:14:59 +00:00
remove gpt-4o-mini from the gpt-4 trendline
This commit is contained in:
parent
5ccdebf2c0
commit
822a8ab671
2 changed files with 96 additions and 90 deletions
|
@ -7,14 +7,21 @@ from aider.dump import dump # noqa: 401
|
|||
|
||||
|
||||
def get_model_color(model):
|
||||
if "-4o" in model and "gpt-4o-mini" not in model:
|
||||
default = "lightblue"
|
||||
|
||||
if model == "gpt-4o-mini":
|
||||
return default
|
||||
|
||||
if "-4o" in model:
|
||||
return "purple"
|
||||
elif "gpt-4" in model:
|
||||
|
||||
if "gpt-4" in model:
|
||||
return "red"
|
||||
elif "gpt-3.5" in model:
|
||||
|
||||
if "gpt-3.5" in model:
|
||||
return "green"
|
||||
else:
|
||||
return "lightblue"
|
||||
|
||||
return default
|
||||
|
||||
|
||||
def plot_over_time(yaml_file):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue