mirror of
https://github.com/nullnyat/NullcatChan.git
synced 2025-04-29 04:07:15 +09:00
CW付きの投稿からは学習しないように
This commit is contained in:
parent
70ed8655a4
commit
643f3a3d58
@ -43,7 +43,10 @@ export default class extends Module {
|
||||
limit: 30
|
||||
});
|
||||
|
||||
const interestedNotes = tl.filter(note => note.userId !== this.ai.account.id && note.text != null);
|
||||
const interestedNotes = tl.filter(note =>
|
||||
note.userId !== this.ai.account.id &&
|
||||
note.text != null &&
|
||||
note.cw == null);
|
||||
|
||||
let keywords: string[][] = [];
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user