forked from Ikaros-521/AI-Vtuber
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
本地问答板块 新增文本框用于json编辑,默认用于编辑 本地问答.json,方便修改内容,你也可以用作修改其他json文件。格式一定要对啊…
…;修复睿声格式报错错误的bug
- Loading branch information
1 parent
2e81ae7
commit 8467cf1
Showing
3 changed files
with
148 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,76 @@ | ||
[ | ||
{ | ||
"关键词": [ | ||
"这是触发的关键词", | ||
"触发的关键词可以是多个,注意json格式" | ||
], | ||
"回答": [ | ||
"这是触发关键词后对应的回答", | ||
"回答也可以是多个,随机挑一个,注意json格式", | ||
"支持这种[1|2|3],三选一的回答语法", | ||
"{username}这个大括号里面是要替换的用户名,这就是动态变量" | ||
] | ||
}, | ||
{ | ||
"关键词": [ | ||
"打卡" | ||
], | ||
"回答": [ | ||
"打卡成功喵", | ||
"感谢{username}的打卡,好感度加一", | ||
"感谢{username}打卡,给你颁发虚拟世界的打卡勋章!" | ||
] | ||
}, | ||
{ | ||
"关键词": [ | ||
"积分有什么用", | ||
"积分有啥用", | ||
"积分是什么", | ||
"积分是啥" | ||
], | ||
"回答": [ | ||
"积分暂时仅用于统计用户互动、投食数据,暂无实际作用" | ||
] | ||
}, | ||
{ | ||
"关键词": [ | ||
"在吗", | ||
"在?" | ||
], | ||
"回答": [ | ||
"在的", | ||
"在哟", | ||
"在的,{username}" | ||
] | ||
}, | ||
{ | ||
"关键词": [ | ||
"是录播吗" | ||
], | ||
"回答": [ | ||
"现在是{cur_time},不是录播哦" | ||
] | ||
}, | ||
{ | ||
"关键词": [ | ||
"你的主人是谁", | ||
"你主人叫什么", | ||
"你主人是谁" | ||
], | ||
"回答": [ | ||
"我的主人是Love丶伊卡洛斯喵~", | ||
"我主人是Love丶伊卡洛斯喵~" | ||
] | ||
}, | ||
{ | ||
"关键词": [ | ||
"你的主人呢", | ||
"你主人在哪" | ||
], | ||
"回答": [ | ||
"我的主人不是在摸鱼,就是在摸鱼的路上", | ||
"主人在摸鱼喵", | ||
"主人在摆烂喵" | ||
] | ||
} | ||
{ | ||
"关键词": [ | ||
"这是触发的关键词,注意关键词有相似度,相似度就是 关键词和发送内容的相似程度,0.8就是80%", | ||
"触发的关键词可以是多个,注意json格式" | ||
], | ||
"回答": [ | ||
"这是触发关键词后对应的回答", | ||
"回答也可以是多个,随机挑一个,注意json格式", | ||
"支持这种[1|2|3],三选一的回答语法", | ||
"{username}这个大括号里面是要替换的用户名,这就是动态变量" | ||
] | ||
}, | ||
{ | ||
"关键词": [ | ||
"打卡" | ||
], | ||
"回答": [ | ||
"打卡成功喵", | ||
"感谢{username}的打卡,好感度加一", | ||
"感谢{username}打卡,给你颁发虚拟世界的打卡勋章!" | ||
] | ||
}, | ||
{ | ||
"关键词": [ | ||
"积分有什么用", | ||
"积分有啥用", | ||
"积分是什么", | ||
"积分是啥" | ||
], | ||
"回答": [ | ||
"积分暂时仅用于统计用户互动、投食数据,暂无实际作用" | ||
] | ||
}, | ||
{ | ||
"关键词": [ | ||
"在吗", | ||
"在?" | ||
], | ||
"回答": [ | ||
"在的", | ||
"在哟", | ||
"在的,{username}" | ||
] | ||
}, | ||
{ | ||
"关键词": [ | ||
"是录播吗" | ||
], | ||
"回答": [ | ||
"现在是{cur_time},不是录播哦" | ||
] | ||
}, | ||
{ | ||
"关键词": [ | ||
"你的主人是谁", | ||
"你主人叫什么", | ||
"你主人是谁" | ||
], | ||
"回答": [ | ||
"我的主人是Love丶伊卡洛斯喵~", | ||
"我主人是Love丶伊卡洛斯喵~" | ||
] | ||
}, | ||
{ | ||
"关键词": [ | ||
"你的主人呢", | ||
"你主人在哪" | ||
], | ||
"回答": [ | ||
"我的主人不是在摸鱼,就是在摸鱼的路上", | ||
"主人在摸鱼喵", | ||
"主人在摆烂喵" | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters