From c4cf8c27fea6f0cd836eac8daf23b5b19cd1718d Mon Sep 17 00:00:00 2001 From: tetsuya-ki <64536338+tetsuya-ki@users.noreply.github.com> Date: Mon, 13 Jan 2025 15:35:52 +0900 Subject: [PATCH] =?UTF-8?q?aichat=E3=81=AB=E7=8F=BE=E5=9C=A8=E6=99=82?= =?UTF-8?q?=E5=88=BB=E3=82=92=E6=B8=A1=E3=81=99(AI=E3=81=8C=E4=BB=8A?= =?UTF-8?q?=E3=81=AE=E6=99=82=E9=96=93=E3=82=92=E5=8A=A0=E5=91=B3=E3=81=97?= =?UTF-8?q?=E3=81=9F=E8=BF=94=E7=AD=94=E3=81=95=E3=81=9B=E3=82=8B=E3=81=9F?= =?UTF-8?q?=E3=82=81)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/aichat/index.ts | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/modules/aichat/index.ts b/src/modules/aichat/index.ts index 172f40b..0afb5b5 100644 --- a/src/modules/aichat/index.ts +++ b/src/modules/aichat/index.ts @@ -106,7 +106,18 @@ export default class extends Module { private async genTextByGemini(aiChat: AiChat, files:base64File[]) { this.log('Generate Text By Gemini...'); let parts: GeminiParts = []; - const systemInstruction: GeminiSystemInstruction = {role: 'system', parts: [{text: aiChat.prompt}]}; + const now = new Date().toLocaleString('ja-JP', { + timeZone: 'Asia/Tokyo', + year: 'numeric', + month: '2-digit', + day: '2-digit', + hour: '2-digit', + minute: '2-digit', + second: '2-digit' + }); + // 設定のプロンプトに加え、現在時刻を渡す + let systemInstructionText = aiChat.prompt + "。また、現在日時は" + now + "である(他の日時は無効とすること)。"; + const systemInstruction: GeminiSystemInstruction = {role: 'system', parts: [{text: systemInstructionText}]}; parts = [{text: aiChat.question}]; // ファイルが存在する場合、画像を添付して問い合わせ