mirror of
https://github.com/syuilo/ai.git
synced 2024-11-22 05:08:00 +00: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…
Reference in a new issue