We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 86f4a42 + 498541b commit 7476057Copy full SHA for 7476057
tests/integrations/langchain/test_langchain.py
@@ -546,6 +546,9 @@ def test_langchain_openai_tools_agent(
546
# Verify that available tools are always recorded regardless of PII settings
547
for chat_span in chat_spans:
548
tools_data = chat_span["data"][SPANDATA.GEN_AI_REQUEST_AVAILABLE_TOOLS]
549
+ assert tools_data is not None, (
550
+ "Available tools should always be recorded regardless of PII settings"
551
+ )
552
assert "get_word_length" in tools_data
553
554
0 commit comments