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 64156f5 commit 851b022Copy full SHA for 851b022
tools/server/webui/src/lib/utils/thinking.ts
@@ -82,10 +82,7 @@ export function parseThinkingContent(content: string): {
82
* @returns True if the content contains an opening thinking tag
83
*/
84
export function hasThinkingStart(content: string): boolean {
85
- return (
86
- THINKING_FORMATS.some((format) => content.includes(format.startTag)) ||
87
- content.includes('<|channel|>analysis')
88
- );
+ return THINKING_FORMATS.some((format) => content.includes(format.startTag));
89
}
90
91
/**
0 commit comments