fix: Correct import path in cog block for model stats

This commit is contained in:
Paul Gauthier (aider) 2024-12-13 12:48:29 -08:00
parent e77d80bda5
commit 9967efe45a

View file

@ -218,7 +218,7 @@ Below is a table showing the models I use,
extracted from the [public log of my aider analytics](https://github.com/aider-ai/aider/blob/main/aider/website/assets/sample-analytics.jsonl).
<!--[[[cog
from .scripts.my_models import collect_model_stats
import scripts.my_models as my_models
stats = my_models.collect_model_stats()
html = my_models.format_html_table(stats)
cog.out(html)