feat: update ChatRequest and DeepSeekChatImpl for DeepSeek integration

This commit is contained in:
ZhangYue
2025-09-10 09:55:47 +08:00
parent 13da60e151
commit 4baa970118
2 changed files with 264 additions and 7 deletions

View File

@@ -72,6 +72,11 @@ public class ChatRequest {
*/
private Boolean hasAttachment;
/**
* 是否启用深度思考
*/
private Boolean enableThinking;
/**
* 是否自动切换模型
*/
@@ -82,9 +87,4 @@ public class ChatRequest {
*/
private String token;
/**
* 消息ID保存消息成功后设置用于后续扣费更新
*/
private Long messageId;
}