Skip to content

Commit

Permalink
Remove completion_cost
Browse files Browse the repository at this point in the history
  • Loading branch information
aorwall committed Jan 17, 2025
1 parent dfb27a8 commit eff49ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/run_evaluation.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def handle_event(self, event):
resolved = data.get("resolved")
status = "✓" if resolved is True else "✗" if resolved is False else "-"
instance = self.evaluation.get_instance(instance_id)
log_msg = f"{instance_id}: Completed [{status}] - Cost: ${instance.usage.completion_cost:.2f}, Iterations: {instance.iterations}"
log_msg = f"{instance_id}: Completed [{status}] - Iterations: {instance.iterations}"

elif event_type == "instance_error":
error = data.get("error", "Unknown error")
Expand Down

0 comments on commit eff49ea

Please sign in to comment.