We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b6e9f70 + 4dc9f04 commit ce30f2bCopy full SHA for ce30f2b
1 file changed
tests/integrations/langchain/test_langchain.py
@@ -314,6 +314,9 @@ def test_langchain_agent(
314
# Verify that available tools are always recorded regardless of PII settings
315
for chat_span in chat_spans:
316
tools_data = chat_span["data"][SPANDATA.GEN_AI_REQUEST_AVAILABLE_TOOLS]
317
+ assert tools_data is not None, (
318
+ "Available tools should always be recorded regardless of PII settings"
319
+ )
320
assert "get_word_length" in tools_data
321
322
0 commit comments