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 5d22953 commit 94f110bCopy full SHA for 94f110b
model/parsers/qwen3vl.go
@@ -181,9 +181,6 @@ func (p *Qwen3VLParser) eat() ([]qwenEvent, bool) {
181
split := strings.SplitN(p.buffer.String(), thinkingCloseTag, 2)
182
// before := split[0]
183
before := strings.TrimRightFunc(split[0], unicode.IsSpace)
184
- if len(before) == 0 {
185
- slog.Warn("qwen tool call closing tag found but no content before it")
186
- }
187
after := strings.TrimLeftFunc(split[1], unicode.IsSpace)
188
if len(before) > 0 {
189
events = append(events, qwenEventThinkingContent{content: before})
0 commit comments