diff --git a/src/modules/aichat/index.ts b/src/modules/aichat/index.ts index deb4466..817e1d8 100644 --- a/src/modules/aichat/index.ts +++ b/src/modules/aichat/index.ts @@ -16,8 +16,8 @@ type Base64Image = { type: string; base64: string; }; -const GEMINI_API = 'https://generativelanguage.googleapis.com/v1beta/models/gemini-pro:generateContent'; -const GEMINI_VISION_API = 'https://generativelanguage.googleapis.com/v1beta/models/gemini-pro-vision:generateContent'; +const GEMINI_15_FLASH_API = 'https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash:generateContent'; +const GEMINI_15_PRO_API = 'https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-pro:generateContent'; export default class extends Module { public readonly name = 'aichat'; @@ -131,6 +131,7 @@ export default class extends Module { type = 'chatgpt3.5'; } const question = msg.extractedText + .toLowerCase() .replace(this.name, '') .replace(kigo + type, '') .trim(); @@ -142,6 +143,7 @@ export default class extends Module { } switch(type) { case 'gemini': + // geminiの場合、APIキーが必須 if (!config.geminiProApiKey) { msg.reply(serifs.aichat.nothing(type)); return false; @@ -150,11 +152,11 @@ export default class extends Module { aiChat = { question: question, prompt: prompt, - api: GEMINI_API, + api: GEMINI_15_PRO_API, key: config.geminiProApiKey }; - if (base64Image !== null) { - aiChat.api = GEMINI_VISION_API; + if (msg.includes([kigo + 'gemini-flash'])) { + aiChat.api = GEMINI_15_FLASH_API; } text = await this.genTextByGemini(aiChat, base64Image); break; @@ -165,7 +167,7 @@ export default class extends Module { if (text == null) { this.log('The result is invalid. It seems that tokens and other items need to be reviewed.') - msg.reply(serifs.aichat.nothing(type)); + msg.reply(serifs.aichat.error(type)); return false; } diff --git a/src/serifs.ts b/src/serifs.ts index 2fe0c15..4bf19b2 100644 --- a/src/serifs.ts +++ b/src/serifs.ts @@ -390,6 +390,7 @@ export default { aichat: { nothing: type => `あぅ... ${type}のAPIキーが登録されてないみたいです`, + error: type => `うぇ...${type}でエラーが発生しちゃったみたいです。gemini-flashだと動くかも?`, post: (text, type) => `${text} (${type}) #aichat`, },