This commit is contained in:
jack ning
2025-07-18 11:37:30 +08:00
parent 62381e1262
commit 1ae8aee50f
3 changed files with 4 additions and 6 deletions

View File

@@ -2,7 +2,7 @@
* @Author: jackning 270580156@qq.com
* @Date: 2025-04-17 14:44:07
* @LastEditors: jackning 270580156@qq.com
* @LastEditTime: 2025-07-18 10:39:13
* @LastEditTime: 2025-07-18 11:08:09
* @Description: bytedesk.com https://github.com/Bytedesk/bytedesk
* Please be aware of the BSL license restrictions before installing Bytedesk IM
* selling, reselling, or hosting Bytedesk IM as a service is a breach of the terms and automatically terminates your rights under the license.
@@ -21,6 +21,7 @@ public enum LlmModelTypeEnum {
VISION("vision"), // 视觉模型
CODE("code"), // 代码模型
REASONING("reasoning"), // 推理模型
FUNCTION("function"), // 函数调用模型
TEXT2IMAGE("text2image"), // 文本生成图像模型
IMAGE2TEXT("image2text"), // 图像理解文本模型
AUDIO2TEXT("audio2text"), // 语音转文本模型

View File

@@ -2,7 +2,7 @@
* @Author: jackning 270580156@qq.com
* @Date: 2025-02-28 11:44:03
* @LastEditors: jackning 270580156@qq.com
* @LastEditTime: 2025-07-18 10:10:32
* @LastEditTime: 2025-07-18 11:30:10
* @Description: bytedesk.com https://github.com/Bytedesk/bytedesk
* Please be aware of the BSL license restrictions before installing Bytedesk IM
* selling, reselling, or hosting Bytedesk IM as a service is a breach of the terms and automatically terminates your rights under the license.

View File

@@ -2,7 +2,7 @@
* @Author: jackning 270580156@qq.com
* @Date: 2025-02-17 11:17:28
* @LastEditors: jackning 270580156@qq.com
* @LastEditTime: 2025-07-18 09:59:16
* @LastEditTime: 2025-07-18 11:34:20
* @Description: bytedesk.com https://github.com/Bytedesk/bytedesk
* Please be aware of the BSL license restrictions before installing Bytedesk IM
* selling, reselling, or hosting Bytedesk IM as a service is a breach of the terms and automatically terminates your rights under the license.
@@ -17,9 +17,6 @@ import org.springframework.ai.chat.client.ChatClient;
import org.springframework.ai.deepseek.DeepSeekChatModel;
import org.springframework.ai.deepseek.DeepSeekChatOptions;
import org.springframework.ai.deepseek.api.DeepSeekApi;
import org.springframework.ai.openai.OpenAiChatModel;
import org.springframework.ai.openai.OpenAiChatOptions;
import org.springframework.ai.openai.api.OpenAiApi;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.context.annotation.Bean;