This commit is contained in:
jack ning
2025-09-25 21:09:26 +08:00
parent b5cf424209
commit c1c9d086f5
13 changed files with 15 additions and 15 deletions

View File

@@ -157,7 +157,7 @@ services:
SERVER_PORT: 9003
# bytedesk config
BYTEDESK_DEBUG: "false"
BYTEDESK_VERSION: 0.9.7
BYTEDESK_VERSION: 0.9.8
# 申请licenseKey
# https://www.weiyuai.cn/docs/zh-CN/docs/faq#%E9%97%AE%E9%A2%9813%E5%A6%82%E4%BD%95%E8%8E%B7%E5%8F%96%E8%AF%95%E7%94%A8%E7%89%88license
BYTEDESK_LICENSE_KEY:

View File

@@ -177,7 +177,7 @@ services:
SERVER_PORT: 9003
# bytedesk config
BYTEDESK_DEBUG: "false"
BYTEDESK_VERSION: 0.9.7
BYTEDESK_VERSION: 0.9.8
# 申请licenseKey
# https://www.weiyuai.cn/docs/zh-CN/docs/faq#%E9%97%AE%E9%A2%9813%E5%A6%82%E4%BD%95%E8%8E%B7%E5%8F%96%E8%AF%95%E7%94%A8%E7%89%88license
BYTEDESK_LICENSE_KEY:

View File

@@ -157,7 +157,7 @@ services:
SERVER_PORT: 9003
# bytedesk config
BYTEDESK_DEBUG: "false"
BYTEDESK_VERSION: 0.9.7
BYTEDESK_VERSION: 0.9.8
# 申请licenseKey
# https://www.weiyuai.cn/docs/zh-CN/docs/faq#%E9%97%AE%E9%A2%9813%E5%A6%82%E4%BD%95%E8%8E%B7%E5%8F%96%E8%AF%95%E7%94%A8%E7%89%88license
BYTEDESK_LICENSE_KEY:

View File

@@ -10,7 +10,7 @@ data:
# 微语配置
BYTEDESK_DEBUG: "false"
BYTEDESK_VERSION: "0.9.7"
BYTEDESK_VERSION: "0.9.8"
BYTEDESK_LICENSE_KEY: ""
# 自定义配置

View File

@@ -2,7 +2,7 @@
* @Author: jackning 270580156@qq.com
* @Date: 2024-09-25 17:03:32
* @LastEditors: jackning 270580156@qq.com
* @LastEditTime: 2025-07-17 14:20:28
* @LastEditTime: 2025-09-25 20:45:44
* @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,7 +21,7 @@ import org.springframework.web.bind.annotation.RestController;
import org.springframework.context.annotation.Description;
import com.bytedesk.core.base.BaseRestController;
import com.bytedesk.core.base.LlmProviderConfigDefault;
import com.bytedesk.core.llm.LlmProviderConfigDefault;
import com.bytedesk.core.utils.JsonResult;
import jakarta.servlet.http.HttpServletResponse;

View File

@@ -27,7 +27,7 @@ import org.springframework.context.annotation.Description;
import com.bytedesk.ai.provider.LlmProviderJsonLoader.ProviderJson;
import com.bytedesk.core.base.BaseRestService;
import com.bytedesk.core.base.LlmProviderConfigDefault;
import com.bytedesk.core.llm.LlmProviderConfigDefault;
import com.bytedesk.core.constant.AvatarConsts;
import com.bytedesk.core.enums.LevelEnum;
import com.bytedesk.core.llm.LlmConfigUtils;

View File

@@ -32,7 +32,7 @@ import com.bytedesk.ai.robot.RobotJsonLoader.Robot;
import com.bytedesk.ai.robot.RobotJsonLoader.RobotConfiguration;
import com.bytedesk.ai.utils.ConvertAiUtils;
import com.bytedesk.core.base.BaseRestServiceWithExport;
import com.bytedesk.core.base.LlmProviderConfigDefault;
import com.bytedesk.core.llm.LlmProviderConfigDefault;
import com.bytedesk.core.category.CategoryTypeEnum;
import com.bytedesk.core.category.CategoryEntity;
import com.bytedesk.core.category.CategoryRequest;

View File

@@ -2,7 +2,7 @@
* @Author: jackning 270580156@qq.com
* @Date: 2025-01-27 10:00:00
* @LastEditors: jackning 270580156@qq.com
* @LastEditTime: 2025-09-16 10:50:25
* @LastEditTime: 2025-09-25 20:44:58
* @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.
@@ -18,9 +18,9 @@ import static org.junit.jupiter.api.Assertions.*;
import org.junit.jupiter.api.Test;
import org.springframework.mock.env.MockEnvironment;
import com.bytedesk.core.base.LlmProviderConfigDefault;
import com.bytedesk.core.llm.LlmConfigUtils;
import com.bytedesk.core.llm.LlmDefaults;
import com.bytedesk.core.llm.LlmProviderConfigDefault;
class LlmConfigUtilsTest {

View File

@@ -29,7 +29,7 @@ import org.springframework.stereotype.Service;
import org.springframework.util.StringUtils;
import com.bytedesk.core.base.BaseRestService;
import com.bytedesk.core.base.LlmProviderConfigDefault;
import com.bytedesk.core.llm.LlmProviderConfigDefault;
import com.bytedesk.core.category.CategoryRequest;
import com.bytedesk.core.category.CategoryResponse;
import com.bytedesk.core.category.CategoryRestService;

View File

@@ -38,7 +38,7 @@
<springdoc.version>2.8.8</springdoc.version>
<spring-ai.version>1.0.2</spring-ai.version>
<spring-ai-alibaba.version>1.0.0.3</spring-ai-alibaba.version>
<revision>0.9.7</revision>
<revision>0.9.8</revision>
</properties>
<dependencies>

View File

@@ -2,7 +2,7 @@
#=默认不起用ai
# ===============================
bytedesk.debug=true
bytedesk.version=0.9.7
bytedesk.version=0.9.8
# 申请实际的license
# https://www.weiyuai.cn/docs/zh-CN/docs/faq#%E9%97%AE%E9%A2%9813%E5%A6%82%E4%BD%95%E8%8E%B7%E5%8F%96%E8%AF%95%E7%94%A8%E7%89%88license
bytedesk.licenseKey=

View File

@@ -2,7 +2,7 @@
#=bytedesk
# ===============================
bytedesk.debug=true
bytedesk.version=0.9.7
bytedesk.version=0.9.8
# 申请实际的license
# https://www.weiyuai.cn/docs/zh-CN/docs/faq#%E9%97%AE%E9%A2%9813%E5%A6%82%E4%BD%95%E8%8E%B7%E5%8F%96%E8%AF%95%E7%94%A8%E7%89%88license
bytedesk.licenseKey=

View File

@@ -5,7 +5,7 @@
# ===============================
spring.application.name=bytedesk
application.title=https://www.weiyuai.cn
application.version=0.9.7
application.version=0.9.8
server.port=9003
# ===============================