File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
manager-api/src/main/java/xiaozhi/modules/security/controller Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ public Result<?> changePassword(@RequestBody PasswordDTO passwordDTO) {
121
121
@ Operation (summary = "公共配置" )
122
122
public Result <Map <String , Object >> pubConfig () {
123
123
Map <String , Object > config = new HashMap <>();
124
- config .put ("version" , "0.3.5 " );
124
+ config .put ("version" , "0.3.6 " );
125
125
config .put ("allowUserRegister" , sysUserService .getAllowUserRegister ());
126
126
return new Result <Map <String , Object >>().ok (config );
127
127
}
Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ selected_module:
147
147
Memory : nomem
148
148
# 意图识别模块开启后,可以播放音乐、控制音量、识别退出指令。
149
149
# 不想开通意图识别,就设置成:nointent
150
- # 意图识别可使用intent_llm,如果你的LLM是DifyLLM或CozeLLM,建议使用这个 。优点:通用性强,缺点:增加串行前置意图识别模块,会增加处理时间,这个意图识别暂时不支持控制音量大小等iot操作
150
+ # 意图识别可使用intent_llm。优点:通用性强,缺点:增加串行前置意图识别模块,会增加处理时间,这个意图识别暂时不支持控制音量大小等iot操作
151
151
# 意图识别可使用function_call,缺点:需要所选择的LLM支持function_call,优点:按需调用工具、速度快,理论上能全部操作所有iot指令
152
152
# 默认免费的ChatGLMLLM就已经支持function_call,但是如果像追求稳定建议把LLM设置成:DoubaoLLM,使用的具体model_name是:doubao-pro-32k-functioncall-241028
153
153
Intent : function_call
@@ -163,7 +163,7 @@ Intent:
163
163
type : intent_llm
164
164
# 配备意图识别独立的思考模型
165
165
# 如果这里不填,则会默认使用selected_module.LLM的模型作为意图识别的思考模型
166
- # 如果你的selected_module.LLM选择了DifyLLM或CozeLLM ,这里最好使用独立的LLM作为意图识别,例如使用免费的ChatGLMLLM
166
+ # 如果你的不想使用selected_module.LLM意图识别 ,这里最好使用独立的LLM作为意图识别,例如使用免费的ChatGLMLLM
167
167
llm : ChatGLMLLM
168
168
function_call :
169
169
# 不需要动type
Original file line number Diff line number Diff line change 3
3
from loguru import logger
4
4
from config .config_loader import load_config
5
5
6
- SERVER_VERSION = "0.3.5 "
6
+ SERVER_VERSION = "0.3.6 "
7
7
8
8
9
9
def get_module_abbreviation (module_name , module_dict ):
You can’t perform that action at this time.
0 commit comments