mirror of
https://github.com/Jerryplusy/crystelf-plugin.git
synced 2025-12-05 15:41:56 +00:00
28 lines
1.0 KiB
JSON
28 lines
1.0 KiB
JSON
{
|
|
"//": "请不要修改以?开头的字段",
|
|
"?mode": "对话模式,mix为混合,ai为纯人工智能,keyword为纯关键词",
|
|
"mode": "mix",
|
|
"?stream": "是否开启流式输出,开启有助于提升速度,但可能存在问题",
|
|
"stream": false,
|
|
"?baseApi": "请求基础api",
|
|
"baseApi": "https://api.siliconflow.cn/v1",
|
|
"?apiKey": "api密钥",
|
|
"apiKey": "",
|
|
"?modelType": "模型名称,请根据baseApi填写的服务商的对应的模型",
|
|
"modelType": "deepseek-ai/DeepSeek-V3.2-Exp",
|
|
"?temperature": "聊天温度,可选0-2.0,温度越高创造性越高",
|
|
"temperature": 1.2,
|
|
"?concurrency": "聊天请求最大并发数",
|
|
"concurrency": 3,
|
|
"?tools": "是否允许ai调用工具",
|
|
"tools": true,
|
|
"?storage": "聊天记忆储存方式,sqlLite:更优的性能,json:方便修改",
|
|
"storage": "json",
|
|
"?timeout": "记忆默认超时时间(天)",
|
|
"timeout": 30,
|
|
"?blockGroup": "禁用的群聊(黑名单)",
|
|
"blockGroup": [],
|
|
"?whiteGroup": "白名单群聊,存在该部分时,黑名单将被禁用",
|
|
"whiteGroup": []
|
|
}
|