mirror of
https://github.com/syuilo/ai.git
synced 2024-11-09 23:48:01 +00:00
CW付きの投稿からは学習しないように
This commit is contained in:
parent
70ed8655a4
commit
643f3a3d58
|
@ -43,7 +43,10 @@ export default class extends Module {
|
||||||
limit: 30
|
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[][] = [];
|
let keywords: string[][] = [];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue