We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 915c2ad commit 8382fd5Copy full SHA for 8382fd5
1 file changed
py/src/braintrust/wrappers/agno/test_agno.py
@@ -94,7 +94,10 @@ def test_agno_simple_agent_execution(memory_logger):
94
assert root_span["metrics"]["duration"] > 0
95
96
llm_span = spans[1]
97
- assert llm_span["span_attributes"]["name"] == "OpenAI.response"
+ assert llm_span["span_attributes"]["name"] in {
98
+ "OpenAI.response",
99
+ "OpenAI Chat.response",
100
+ }
101
assert llm_span["span_attributes"]["type"].value == "llm"
102
assert llm_span["span_parents"] == [root_span["span_id"]]
103
assert llm_span["metadata"]["model"] == "gpt-4o-mini"
0 commit comments