mirror of
https://github.com/ErlichLiu/DeepClaude.git
synced 2026-04-25 05:05:57 +03:00
[GH-ISSUE #74] GEMINI沒有等DEEPSEEK的回覆就自己回了 #51
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#51
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 @longneck84 on GitHub (Mar 5, 2025).
Original GitHub issue: https://github.com/ErlichLiu/DeepClaude/issues/74
有沒有人有這個問題?
@GowayLee commented on GitHub (Mar 5, 2025):
Please provide more detailed information like log or your configuration.
@longneck84 commented on GitHub (Mar 5, 2025):
INFO: 172.17.0.1:45344 - "POST /v1/chat/completions HTTP/1.0" 200 OK
2025-03-05 05:27:54 - DeepClaude - INFO - 开始处理 DeepSeek 流,使用模型:deepseek-reasoner
2025-03-05 05:27:54 - DeepClaude - INFO - 等待获取 DeepSeek 的推理内容...
2025-03-05 05:27:55 - DeepClaude - INFO - 提取内容信息,推理阶段结束:
2025-03-05 05:27:55 - DeepClaude - INFO - DeepSeek 推理完成,收集到的推理内容长度:0
2025-03-05 05:27:55 - DeepClaude - INFO - DeepSeek 任务处理完成,标记结束
2025-03-05 05:27:55 - DeepClaude - WARNING - 未能获取到有效的推理内容,将使用默认提示继续
2025-03-05 05:27:55 - DeepClaude - INFO - 开始处理 OpenAI 兼容流,使用模型: gemini-2.0-flash
2025-03-05 05:27:55 - DeepClaude - INFO - OpenAI 兼容任务处理完成,标记结束
2025-03-05 05:28:05 - DeepClaude - INFO - API密钥验证通过
@GowayLee commented on GitHub (Mar 5, 2025):
请将日志设置为DEBUG级别再尝试一下看看
@longneck84 commented on GitHub (Mar 5, 2025):
problem solved. i was using ppio deepseek, it looks like they have changed the output format which deepclaude couldnt fetch the content. I changed to siliconflow deepseek then it worked again~
@GowayLee commented on GitHub (Mar 5, 2025):
If you are using PPIO deepseek community version, the reasoning content will be wrapped by
<think></think>. Then, you need to setis_origin_reasoning=falsein config page. This issue has not been mentioned in README.md, we will add it soon.@longneck84 commented on GitHub (Mar 5, 2025):
oh got it ! thanks!