We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c02046 commit de7d254Copy full SHA for de7d254
tests/unit/trace/dsl/test_filter.py
@@ -232,6 +232,17 @@ async def test_filter_translated(
232
"span_annotation_0_label_00000000000000000000000000000000 is not None",
233
id="double-quoted-annotation-name",
234
),
235
+ # Existence checks (bare annotation reference)
236
+ pytest.param(
237
+ """evals['Hallucination']""",
238
+ "span_annotation_0_exists_00000000000000000000000000000000",
239
+ id="bare-evals-exists",
240
+ ),
241
242
+ """annotations['Hallucination']""",
243
244
+ id="bare-annotations-exists",
245
246
],
247
)
248
def test_apply_eval_aliasing(filter_condition: str, expected: str) -> None:
0 commit comments