Skip to content

Commit bd2e2e7

Browse files
authored
update:更新版本号 (#874)
1 parent 6282ef1 commit bd2e2e7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

main/manager-api/src/main/java/xiaozhi/modules/security/controller/LoginController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public Result<?> changePassword(@RequestBody PasswordDTO passwordDTO) {
121121
@Operation(summary = "公共配置")
122122
public Result<Map<String, Object>> pubConfig() {
123123
Map<String, Object> config = new HashMap<>();
124-
config.put("version", "0.3.5");
124+
config.put("version", "0.3.6");
125125
config.put("allowUserRegister", sysUserService.getAllowUserRegister());
126126
return new Result<Map<String, Object>>().ok(config);
127127
}

main/xiaozhi-server/config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ selected_module:
147147
Memory: nomem
148148
# 意图识别模块开启后,可以播放音乐、控制音量、识别退出指令。
149149
# 不想开通意图识别,就设置成:nointent
150-
# 意图识别可使用intent_llm,如果你的LLM是DifyLLM或CozeLLM,建议使用这个。优点:通用性强,缺点:增加串行前置意图识别模块,会增加处理时间,这个意图识别暂时不支持控制音量大小等iot操作
150+
# 意图识别可使用intent_llm。优点:通用性强,缺点:增加串行前置意图识别模块,会增加处理时间,这个意图识别暂时不支持控制音量大小等iot操作
151151
# 意图识别可使用function_call,缺点:需要所选择的LLM支持function_call,优点:按需调用工具、速度快,理论上能全部操作所有iot指令
152152
# 默认免费的ChatGLMLLM就已经支持function_call,但是如果像追求稳定建议把LLM设置成:DoubaoLLM,使用的具体model_name是:doubao-pro-32k-functioncall-241028
153153
Intent: function_call
@@ -163,7 +163,7 @@ Intent:
163163
type: intent_llm
164164
# 配备意图识别独立的思考模型
165165
# 如果这里不填,则会默认使用selected_module.LLM的模型作为意图识别的思考模型
166-
# 如果你的selected_module.LLM选择了DifyLLM或CozeLLM,这里最好使用独立的LLM作为意图识别,例如使用免费的ChatGLMLLM
166+
# 如果你的不想使用selected_module.LLM意图识别,这里最好使用独立的LLM作为意图识别,例如使用免费的ChatGLMLLM
167167
llm: ChatGLMLLM
168168
function_call:
169169
# 不需要动type

main/xiaozhi-server/config/logger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from loguru import logger
44
from config.config_loader import load_config
55

6-
SERVER_VERSION = "0.3.5"
6+
SERVER_VERSION = "0.3.6"
77

88

99
def get_module_abbreviation(module_name, module_dict):

0 commit comments

Comments
 (0)