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 8e652f0 commit aca70ebCopy full SHA for aca70eb
docs/evals.md
@@ -525,8 +525,8 @@ class SpanTracingEvaluator(Evaluator[str, str]):
525
error_query: SpanQuery = {'name_contains': 'error'}
526
has_errors = span_tree.any(error_query)
527
528
- # Calculate a performance score (lower is better)
529
- performance_score = 1.0 if total_processing_time < 1.0 else 0.5
+ # Calculate a performance score
+ performance_score = 1.0 if total_processing_time < 2.0 else 0.5
530
531
return {
532
'has_spans': True,
0 commit comments