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 158b8c3 commit f7be7b2Copy full SHA for f7be7b2
docs/evals.md
@@ -341,8 +341,8 @@ async def double_number(input_value: int) -> int:
341
# Run evaluation with unlimited concurrency
342
t0 = time.time()
343
report_default = dataset.evaluate_sync(double_number)
344
-print(f'Evaluation took less than 0.5s: {time.time() - t0 < 0.5}')
345
-#> Evaluation took less than 0.5s: True
+print(f'Evaluation took less than 1s: {time.time() - t0 < 1}')
+#> Evaluation took less than 1s: True
346
347
report_default.print(include_input=True, include_output=True, include_durations=False) # (1)!
348
"""
0 commit comments