mirror of
https://github.com/syuilo/ai.git
synced 2025-03-25 21:12:56 +00:00
aichatで引用先があれば引用先の文章を設定しておく
This commit is contained in:
parent
edc914efbe
commit
b11059d2fa
1 changed files with 14 additions and 1 deletions
|
@ -288,7 +288,6 @@ export default class extends Module {
|
|||
exist = this.aichatHist.findOne({
|
||||
postId: message.id
|
||||
});
|
||||
// 見つかった場合はそれを利用
|
||||
if (exist != null) return false;
|
||||
}
|
||||
}
|
||||
|
@ -309,6 +308,20 @@ export default class extends Module {
|
|||
createdAt: Date.now(),// 適当なもの
|
||||
type: type
|
||||
};
|
||||
// 引用している場合、情報を取得しhistoryとして与える
|
||||
if (msg.quoteId) {
|
||||
const quotedNote = await this.ai.api("notes/show", {
|
||||
noteId: msg.quoteId,
|
||||
});
|
||||
current.history = [
|
||||
{
|
||||
role: "user",
|
||||
content:
|
||||
"ユーザーが与えた前情報である、引用された文章: " +
|
||||
quotedNote.text,
|
||||
},
|
||||
];
|
||||
}
|
||||
// AIに問い合わせ
|
||||
const result = await this.handleAiChat(current, msg);
|
||||
|
||||
|
|
Loading…
Reference in a new issue