@@ -57,15 +57,15 @@ public LLMObsCustomEvalProcessor(
57
57
58
58
@ Override
59
59
public void SubmitEvaluation (
60
- LLMObsSpan llmObsSpan , String label , double numericalValue , Map <String , Object > tags ) {
61
- SubmitEvaluation (llmObsSpan , label , numericalValue , defaultMLApp , tags );
60
+ LLMObsSpan llmObsSpan , String label , double scoreValue , Map <String , Object > tags ) {
61
+ SubmitEvaluation (llmObsSpan , label , scoreValue , defaultMLApp , tags );
62
62
}
63
63
64
64
@ Override
65
65
public void SubmitEvaluation (
66
66
LLMObsSpan llmObsSpan ,
67
67
String label ,
68
- double numericalValue ,
68
+ double scoreValue ,
69
69
String mlApp ,
70
70
Map <String , Object > tags ) {
71
71
if (llmObsSpan == null ) {
@@ -75,7 +75,7 @@ public void SubmitEvaluation(
75
75
long spanID = llmObsSpan .getSpanId ();
76
76
LLMObsEval .Score score =
77
77
new LLMObsEval .Score (
78
- traceID , spanID , System .currentTimeMillis (), mlApp , label , tags , numericalValue );
78
+ traceID , spanID , System .currentTimeMillis (), mlApp , label , tags , scoreValue );
79
79
if (!this .evalProcessingWorker .addToQueue (score )) {
80
80
LOGGER .warn (
81
81
"queue full, failed to add score eval, ml_app={}, trace_id={}, span_id={}, label={}" ,
0 commit comments