We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 160d3a2 commit 8df1f5bCopy full SHA for 8df1f5b
src/llm_change_agent/evaluations/evaluator.py
@@ -240,6 +240,9 @@ def run_evaluate(model: str, provider: str):
240
"""Evaluate the LLM Change Agent."""
241
input_dir = Path(__file__).parent / "input"
242
output_dir = Path(__file__).parent / "output"
243
+ if (output_dir / "metrics.yaml").exists():
244
+ # delete file
245
+ os.remove(output_dir / "metrics.yaml")
246
247
logger.info("Downloading the ONTODIFF_DOCS into the input directory.")
248
0 commit comments