mirror of
https://github.com/ErlichLiu/DeepClaude.git
synced 2026-04-25 05:05:57 +03:00
[GH-ISSUE #60] 使用派欧算力云无法获取到推理内容 #37
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
pull-request
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/DeepClaude#37
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @JaminYe on GitHub (Feb 27, 2025).
Original GitHub issue: https://github.com/ErlichLiu/DeepClaude/issues/60
@GowayLee commented on GitHub (Feb 27, 2025):
用同样的Prompt去外部聊天应用中对话是什么返回情况?
@JaminYe commented on GitHub (Feb 28, 2025):
使用cherry studio 加上提示词是可以推理的

@ErlichLiu commented on GitHub (Mar 4, 2025):
@JaminYe 我测试是正常的,检查你的配置。如果还是不正常,提供更多的信息,尤其是你的配置信息等细节,我们才能确定
@Moonlight-YS commented on GitHub (Mar 4, 2025):
在is_origin_reasoning=True模式下,代码直接处理每个chunk中的reasoning_content或content字段,没有对这些分片内容进行累积和完整性检查。当推理内容被拆分成多个chunk时,无法保证完整捕获。
我修改测试了一下,对每个chunk进行累积,等待一个完整对就可以解决这个问题。
@GowayLee commented on GitHub (Mar 4, 2025):
is_origin_reasoning=true是针对思考过程在reasoning_content中的情况的解析, 派欧云的Community模型是将思考过程放在
<think></think>中返回, 需要设置is_origin_reasoning=false@Moonlight-YS commented on GitHub (Mar 4, 2025):
感谢回复,这一块在文档中希望可以强调说明一下,可能很多朋友都会遇到这样的问题
@GowayLee commented on GitHub (Mar 4, 2025):
确实, 这块之前在配置文件中以注释的形式阐述了. 现在改成Web UI配置后没有对应加上.