Skip to content

Commit

Permalink
fix(nit): removed excessive newlines in eval output
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Sep 29, 2024
1 parent b4ff00e commit 780c8f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gptme/eval/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def main(

print("=== Running evals ===")
model_results = run_evals(evals_to_run, models, timeout, parallel)
print("\n=== Finished ===\n")
print("=== Finished ===")

print("\n=== Model Results ===")
print_model_results(model_results)
Expand Down
2 changes: 1 addition & 1 deletion gptme/eval/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ def execute(test: EvalSpec, agent: Agent, timeout: int, parallel: bool) -> EvalR
results.append(
CaseResult(name=name, passed=passed, duration=eval_duration)
)
print("--- End of results ---\n")
print("--- End of results ---")

time_eval = sum(r.duration for r in results)
else:
Expand Down

0 comments on commit 780c8f9

Please sign in to comment.