From b15188e1b79dc768c596af63857790a222ec5424 Mon Sep 17 00:00:00 2001 From: tetsuya-ki <64536338+tetsuya-ki@users.noreply.github.com> Date: Mon, 13 Jan 2025 22:29:52 +0900 Subject: [PATCH] =?UTF-8?q?aichat=E3=81=AE=E6=99=82=E5=88=BB=E6=83=85?= =?UTF-8?q?=E5=A0=B1=E3=81=AE=E4=B8=BB=E5=BC=B5=E3=81=8C=E5=BC=B7=E3=81=84?= =?UTF-8?q?=E3=81=AE=E3=81=A7=E3=81=A1=E3=82=87=E3=81=A3=E3=81=A8=E5=BC=B1?= =?UTF-8?q?=E3=82=81=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/aichat/index.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/modules/aichat/index.ts b/src/modules/aichat/index.ts index ed13299..8990350 100644 --- a/src/modules/aichat/index.ts +++ b/src/modules/aichat/index.ts @@ -113,11 +113,10 @@ export default class extends Module { month: '2-digit', day: '2-digit', hour: '2-digit', - minute: '2-digit', - second: '2-digit' + minute: '2-digit' }); // 設定のプロンプトに加え、現在時刻を渡す - let systemInstructionText = aiChat.prompt + "。また、現在日時は" + now + "である(他の日時は無効とすること)。"; + let systemInstructionText = aiChat.prompt + "。また、現在日時は" + now + "であり、これは回答の参考にし、時刻を聞かれるまで時刻情報は提供しないこと(なお、他の日時は無効とすること)。"; // 名前を伝えておく if (aiChat.friendName != undefined) { systemInstructionText += "なお、会話相手の名前は" + aiChat.friendName + "とする。";