From b11059d2faad7b070c77bed8d59468d8fe0d3106 Mon Sep 17 00:00:00 2001 From: tetsuya-ki <64536338+tetsuya-ki@users.noreply.github.com> Date: Mon, 13 Jan 2025 21:29:30 +0900 Subject: [PATCH] =?UTF-8?q?aichat=E3=81=A7=E5=BC=95=E7=94=A8=E5=85=88?= =?UTF-8?q?=E3=81=8C=E3=81=82=E3=82=8C=E3=81=B0=E5=BC=95=E7=94=A8=E5=85=88?= =?UTF-8?q?=E3=81=AE=E6=96=87=E7=AB=A0=E3=82=92=E8=A8=AD=E5=AE=9A=E3=81=97?= =?UTF-8?q?=E3=81=A6=E3=81=8A=E3=81=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/aichat/index.ts | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/src/modules/aichat/index.ts b/src/modules/aichat/index.ts index cf96454..ed13299 100644 --- a/src/modules/aichat/index.ts +++ b/src/modules/aichat/index.ts @@ -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);