Skip to content

Commit

Permalink
fix: changed tabulate tablefmt in eval output
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Sep 4, 2024
1 parent bfe5e1b commit 4251854
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gptme/eval/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ def print_model_results_table(model_results: dict[str, list[ExecResult]]):
row.append("❌ N/A")
table_data.append(row)

print(tabulate(table_data, headers=headers, tablefmt="grid"))
print(tabulate(table_data, headers=headers))


@click.command()
Expand Down

0 comments on commit 4251854

Please sign in to comment.