Merge pinned master 84bde6c7 into V3 readiness repair

This commit is contained in:
Tianyi Cui
2026-09-08 13:16:35 +08:00
308 changed files with 5060 additions and 1314 deletions
+5
View File
@@ -109,6 +109,11 @@ def test_live_smoke_requires_fresh_external_content(live_smoke: SimpleNamespace)
@pytest.mark.parametrize("label", ["create", "verify"])
@pytest.mark.parametrize(("overrides", "message"), [
({"finish_reason": "error"}, "turn ended with 'error'"),
({"finish_reason": "error", "events": [{
"type": "turn/end", "data": {"turn": 1, "reason": {
"kind": "error", "error": {"code": "AUTH", "status": 401},
}},
}]}, "turn ended with.*AUTH.*401"),
({"events": []}, "turn made no model-requested tool call"),
({"final_response": "PYTHON_SDK_LIVE_OK extra"}, "turn returned"),
])