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