) {
})
}
+function updateOutputType(value: string | number | boolean | undefined) {
+ updateField('outputType', value === 'reasoning' ? 'reasoning' : 'standard')
+}
+
const selectedQualityRules = () => [
props.options.filterLowQuality ? 'low_quality' : '',
props.options.filterShortContent ? 'short_content' : '',
@@ -106,6 +110,28 @@ function modelMeta(model: ModelItem) {
+
+
+ 输出类型
+ 控制答案是否包含可用于推理模型训练的思维链内容
+
+
+ 标准回答
+ 思维链回答
+
+
+
+ 生成结果将按 <think>推理过程</think> 加最终答案的格式保存。
+
+ 仅保存最终答案,不包含推理过程。
+
+
+