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 886fa38 commit 7fdb872Copy full SHA for 7fdb872
1 file changed
eval_protocol/adapters/langfuse.py
@@ -110,6 +110,15 @@ def convert_trace_to_evaluation_row(
110
elif tag.startswith("row_id:") and not row_id:
111
row_id = tag.split(":", 1)[1]
112
113
+ if (
114
+ execution_metadata.invocation_id
115
+ and execution_metadata.experiment_id
116
+ and execution_metadata.rollout_id
117
+ and execution_metadata.run_id
118
+ and row_id
119
+ ):
120
+ break # Break early if we've found all the metadata we need
121
+
122
return EvaluationRow(
123
messages=messages,
124
tools=tools,
0 commit comments