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.
2 parents e6bfe4d + 7476057 commit 3891d5dCopy full SHA for 3891d5d
1 file changed
tests/integrations/langchain/test_langchain.py
@@ -730,6 +730,9 @@ def test_langchain_openai_tools_agent(
730
# Verify that available tools are always recorded regardless of PII settings
731
for chat_span in chat_spans:
732
tools_data = chat_span["data"][SPANDATA.GEN_AI_REQUEST_AVAILABLE_TOOLS]
733
+ assert tools_data is not None, (
734
+ "Available tools should always be recorded regardless of PII settings"
735
+ )
736
assert "get_word_length" in tools_data
737
738
0 commit comments