Fix <think> in keywords or question auto-generations. (#5021)

### What problem does this PR solve?

**#4983**

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
Kevin Hu 2025-02-17 11:20:57 +08:00 committed by GitHub
parent 6daae7f226
commit 810f997276
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -570,6 +570,7 @@ Requirements:
kwd = chat_mdl.chat(prompt, msg[1:], {"temperature": 0.2})
if isinstance(kwd, tuple):
kwd = kwd[0]
kwd = re.sub(r"<think>.*</think>", "", kwd)
if kwd.find("**ERROR**") >= 0:
return ""
return kwd
@ -599,6 +600,7 @@ Requirements:
kwd = chat_mdl.chat(prompt, msg[1:], {"temperature": 0.2})
if isinstance(kwd, tuple):
kwd = kwd[0]
kwd = re.sub(r"<think>.*</think>", "", kwd)
if kwd.find("**ERROR**") >= 0:
return ""
return kwd
@ -669,6 +671,7 @@ Output: What's the weather in Rochester on {tomorrow}?
###############
"""
ans = chat_mdl.chat(prompt, [{"role": "user", "content": "Output: "}], {"temperature": 0.2})
ans = re.sub(r"<think>.*</think>", "", ans)
return ans if ans.find("**ERROR**") < 0 else messages[-1]["content"]
@ -793,6 +796,7 @@ Output:
kwd = chat_mdl.chat(prompt, msg[1:], {"temperature": 0.5})
if isinstance(kwd, tuple):
kwd = kwd[0]
kwd = re.sub(r"<think>.*</think>", "", kwd)
if kwd.find("**ERROR**") >= 0:
raise Exception(kwd)