From 74463b447ced7af3630a78a7cb165e14730cc786 Mon Sep 17 00:00:00 2001 From: Roger Wang Date: Wed, 13 May 2026 15:25:03 -0700 Subject: [PATCH] fix --- verify.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/verify.py b/verify.py index dbdb74d..6fffea2 100644 --- a/verify.py +++ b/verify.py @@ -144,6 +144,8 @@ def prepare_request(self, request: dict) -> dict: message["reasoning_content"] = reason_text if self.model: req["model"] = self.model + if self.stream: + req["stream"] = True # Remove custom fields, do not pass to API req.pop("check_type", None) req.pop("expected_tool_call", None)