Ollama的思考内容已经改为思考字段了,如何在maxkb上配置呢?

思考内容已经不是一起在内容中返回了
ollama 版本:0.13.1
llm 版本:qwen3:14b-q4_K_M
maxkb版本:社区版 v2.3.1

官方示例:

{"model":"deepseek-r1",
"created_at":"2025-05-29T09:35:56.836222Z",
"message":
    {"role": "assistant",
    "content": "The word \"strawberry\" contains **three** instances of the letter 'R' ..."
    "thinking": "First, the question is: \"how many r in the word  strawberry?\" I need to count the number of times the letter 'r' appears in the word \"strawberry\". Let me write down the word:...",
    "done_reason":"stop",
    "done":true,
    "total_duration":47975065417,
    "load_duration":29758167,
    "prompt_eval_count":10,
    "prompt_eval_duration":174191542,
    "eval_count":2514,
    "eval_duration":47770692833
    }
}

实际调用ollama接口内容:
image
image


我这边测试是这样的哈

是的,思考的内容已经不在content以标签的形式展示了,maxkb已经无法输出思考了
image

这个可以实际测试一下,开启输出思考,如果不符合,会把思考的标签一起输出出来

开启输出思考了,但是思考的内容在thinking字段中,maxkb只能输出content的内容,所以思考内容无法显示了

[Bug] maxkb cannot correctly identify custom thinking content · Issue #3834 · 1Panel-dev/MaxKB,在模型参数中添加参数 reasoning 将值设置为 true(使用开关类型)就可以输出思考过程了