You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test(node): Fix flaky Anthropic integration test (#21034)
This particular test was looking up the completion span by matching on
`GEN_AI_INPUT_MESSAGES_ATTRIBUTE` which is not unique. Four spans have
that same input message, with varying span ordering, the find lookup
could match on the wrong span which lacked `max_tokens`.
The fix is to find th espan by `GEN_AI_RESPONSE_ID_ATTRIBUTE` which
identifies the span better.
Closes: #21029
0 commit comments