mirror of
https://github.com/syuilo/ai.git
synced 2025-03-25 21:12:56 +00:00
aichatの文字列置換を正規表現に変更
This commit is contained in:
parent
ed3f60cb41
commit
95b5e5e702
1 changed files with 4 additions and 3 deletions
|
@ -174,10 +174,11 @@ export default class extends Module {
|
|||
} else if (msg.includes([kigo + 'plamo'])) {
|
||||
type = 'plamo';
|
||||
}
|
||||
const reName = RegExp(this.name, "i");
|
||||
const reKigoType = RegExp(kigo + type, "i");
|
||||
const question = msg.extractedText
|
||||
.toLowerCase()
|
||||
.replace(this.name, '')
|
||||
.replace(kigo + type, '')
|
||||
.replace(reName, '')
|
||||
.replace(reKigoType, '')
|
||||
.trim();
|
||||
|
||||
let text:string, aiChat:AiChat;
|
||||
|
|
Loading…
Reference in a new issue