mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 00:35:00 +00:00
feat: Add print of model release dates and names in sorted order
This commit is contained in:
parent
488c88da91
commit
25bcea6aec
1 changed files with 6 additions and 0 deletions
|
@ -155,6 +155,12 @@ class BenchmarkPlotter:
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
plotter = BenchmarkPlotter()
|
plotter = BenchmarkPlotter()
|
||||||
|
models = plotter.load_data("aider/website/_data/edit_leaderboard.yml")
|
||||||
|
|
||||||
|
# Print release dates and model names
|
||||||
|
for model in sorted(models, key=lambda x: x.release_date):
|
||||||
|
print(f"{model.release_date}: {model.name}")
|
||||||
|
|
||||||
plotter.plot("aider/website/_data/edit_leaderboard.yml")
|
plotter.plot("aider/website/_data/edit_leaderboard.yml")
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue