mirror of
https://github.com/syuilo/ai.git
synced 2025-03-25 21:12:56 +00:00
aichatに現在時刻を渡す(AIが今の時間を加味した返答させるため)
This commit is contained in:
parent
d19ba9562f
commit
c4cf8c27fe
1 changed files with 12 additions and 1 deletions
|
@ -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}];
|
||||
// ファイルが存在する場合、画像を添付して問い合わせ
|
||||
|
|
Loading…
Reference in a new issue