(text: string)
| 62 | * 导致正文内容被错误截断或丢失。 |
| 63 | */ |
| 64 | export function hasLeadingThinking(text: string): boolean { |
| 65 | if (!text) return false; |
| 66 | return /^\s*<thinking>/.test(text); |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * 只解析“前导 thinking 块”。 |
no outgoing calls
no test coverage detected