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 c910d58 commit a088297Copy full SHA for a088297
tests/test_doc.py
@@ -301,7 +301,7 @@ def test_stop_behavior_in_reasoning(self):
301
print(f"[DEBUG] Finish Reason: {final_finish_reason}")
302
303
# 1. 验证 reasoning 内容回来了 (Think 过程不应为空)
304
- assert len(collected_reasoning) > 10, "Expected significant reasoning content from R1 model."
+ assert len(collected_reasoning) > 10, f"Expected significant reasoning content from R1 model. {collected_reasoning}"
305
306
# 2. 验证 Stop 生效 (Content 应该包含 'The sun is like a ' 但不包含 'Banana')
307
assert "The sun" in collected_content
0 commit comments