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.
1 parent a0ca773 commit 6ce1a41Copy full SHA for 6ce1a41
1 file changed
tests/integration/test_conversation.py
@@ -68,4 +68,6 @@ def test_converse_alpha2_with_mixed_messages(client):
68
)
69
],
70
71
- assert response.outputs[0].choices[0].message.content
+ choice = response.outputs[0].choices[0]
72
+ assert choice.message.content == 'be brief\nhi\nhello'
73
+ assert choice.finish_reason == 'stop'
0 commit comments