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 4f7c555 commit 46d5521Copy full SHA for 46d5521
tests/agent_features/test_llm_custom_attributes.py
@@ -25,7 +25,6 @@ def test_llm_custom_attributes():
25
with WithLlmCustomAttributes({"test": "attr", "test1": "attr1"}):
26
assert transaction._llm_context_attrs == {"llm.test": "attr", "llm.test1": "attr1"}
27
28
- assert transaction._llm_context_attrs is None
29
30
31
@pytest.mark.parametrize("context_attrs", (None, "not-a-dict"))
@@ -44,5 +43,3 @@ def test_llm_custom_attributes_prefixed_attrs():
44
43
with WithLlmCustomAttributes({"llm.test": "attr", "test1": "attr1"}):
45
# Validate API does not prefix attributes that already begin with "llm."
46
47
-
48
0 commit comments