mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-24 14:25:00 +00:00
chore: Add dump for debugging
This commit is contained in:
parent
236a7f68e9
commit
57a8eab1c3
1 changed files with 2 additions and 1 deletions
|
@ -4,7 +4,7 @@ import argparse
|
||||||
import json
|
import json
|
||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
from aider.dump import dump
|
||||||
import yaml
|
import yaml
|
||||||
|
|
||||||
|
|
||||||
|
@ -48,6 +48,7 @@ def analyze_exercise_solutions(dirs=None, topn=None):
|
||||||
# Filter out entries that don't load and sort by pass rate
|
# Filter out entries that don't load and sort by pass rate
|
||||||
valid_entries = []
|
valid_entries = []
|
||||||
for dirname, model in dir_entries:
|
for dirname, model in dir_entries:
|
||||||
|
dump(dirname, model)
|
||||||
results = load_results(dirname)
|
results = load_results(dirname)
|
||||||
if results:
|
if results:
|
||||||
# Calculate pass rate for sorting when using custom dirs
|
# Calculate pass rate for sorting when using custom dirs
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue