Stronger prompt

This commit is contained in:
Paul Gauthier 2023-06-24 15:49:26 -07:00
parent ac560c2877
commit a1f4ae6a07
3 changed files with 14 additions and 7 deletions

View file

@ -116,6 +116,11 @@ def main():
projected_cost = avg_cost * total_tests
dump(projected_cost)
print(
f"Cost: ${avg_cost:.4f} average, ${total_cost:.2f} total,"
f" ${projected_cost:.2f} projected"
)
duration += results["duration"]
avg_duration = duration / completed_tests
dump(avg_duration)