mirror of
https://github.com/syuilo/ai.git
synced 2025-03-25 21:12:56 +00:00
fix #5
This commit is contained in:
parent
634215765f
commit
fc493a4d93
2 changed files with 62 additions and 1 deletions
|
@ -13,6 +13,7 @@ type Config = {
|
||||||
checkEmojisEnabled?: boolean;
|
checkEmojisEnabled?: boolean;
|
||||||
checkEmojisAtOnce?: boolean;
|
checkEmojisAtOnce?: boolean;
|
||||||
geminiProApiKey?: string;
|
geminiProApiKey?: string;
|
||||||
|
pLaMoApiKey?: string;
|
||||||
prompt?: string;
|
prompt?: string;
|
||||||
mecab?: string;
|
mecab?: string;
|
||||||
mecabDic?: string;
|
mecabDic?: string;
|
||||||
|
|
|
@ -18,6 +18,7 @@ type Base64Image = {
|
||||||
};
|
};
|
||||||
const GEMINI_15_FLASH_API = 'https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash: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';
|
const GEMINI_15_PRO_API = 'https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-pro:generateContent';
|
||||||
|
const PLAMO_API = 'https://platform.preferredai.jp/api/completion/v1/chat/completions';
|
||||||
|
|
||||||
export default class extends Module {
|
export default class extends Module {
|
||||||
public readonly name = 'aichat';
|
public readonly name = 'aichat';
|
||||||
|
@ -85,6 +86,47 @@ export default class extends Module {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@bindThis
|
||||||
|
private async genTextByPLaMo(aiChat: AiChat) {
|
||||||
|
this.log('Generate Text By PLaMo...');
|
||||||
|
|
||||||
|
let options = {
|
||||||
|
url: aiChat.api,
|
||||||
|
headers: {
|
||||||
|
Authorization: 'Bearer ' + aiChat.key
|
||||||
|
},
|
||||||
|
json: {
|
||||||
|
model: 'plamo-beta',
|
||||||
|
messages: [
|
||||||
|
{role: 'system', content: aiChat.prompt},
|
||||||
|
{role: 'user', content: aiChat.question},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
this.log(JSON.stringify(options));
|
||||||
|
let res_data:any = null;
|
||||||
|
try {
|
||||||
|
res_data = await got.post(options,
|
||||||
|
{parseJson: res => JSON.parse(res)}).json();
|
||||||
|
this.log(JSON.stringify(res_data));
|
||||||
|
if (res_data.hasOwnProperty('choices')) {
|
||||||
|
if (res_data.choices.length > 0) {
|
||||||
|
if (res_data.choices[0].hasOwnProperty('message')) {
|
||||||
|
if (res_data.choices[0].message.hasOwnProperty('content')) {
|
||||||
|
return res_data.choices[0].message.content;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (err: unknown) {
|
||||||
|
this.log('Error By Call PLaMo');
|
||||||
|
if (err instanceof Error) {
|
||||||
|
this.log(`${err.name}\n${err.message}\n${err.stack}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
@bindThis
|
@bindThis
|
||||||
private async note2base64Image(notesId: string) {
|
private async note2base64Image(notesId: string) {
|
||||||
const noteData = await this.ai.api('notes/show', { noteId: notesId });
|
const noteData = await this.ai.api('notes/show', { noteId: notesId });
|
||||||
|
@ -129,6 +171,8 @@ export default class extends Module {
|
||||||
type = 'chatgpt4';
|
type = 'chatgpt4';
|
||||||
} else if (msg.includes([kigo + 'chatgpt'])) {
|
} else if (msg.includes([kigo + 'chatgpt'])) {
|
||||||
type = 'chatgpt3.5';
|
type = 'chatgpt3.5';
|
||||||
|
} else if (msg.includes([kigo + 'plamo'])) {
|
||||||
|
type = 'plamo';
|
||||||
}
|
}
|
||||||
const question = msg.extractedText
|
const question = msg.extractedText
|
||||||
.toLowerCase()
|
.toLowerCase()
|
||||||
|
@ -160,7 +204,23 @@ export default class extends Module {
|
||||||
}
|
}
|
||||||
text = await this.genTextByGemini(aiChat, base64Image);
|
text = await this.genTextByGemini(aiChat, base64Image);
|
||||||
break;
|
break;
|
||||||
default:
|
|
||||||
|
case 'PLaMo':
|
||||||
|
// PLaMoの場合、APIキーが必須
|
||||||
|
if (!config.pLaMoApiKey) {
|
||||||
|
msg.reply(serifs.aichat.nothing(type));
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
aiChat = {
|
||||||
|
question: question,
|
||||||
|
prompt: prompt,
|
||||||
|
api: PLAMO_API,
|
||||||
|
key: config.pLaMoApiKey
|
||||||
|
};
|
||||||
|
text = await this.genTextByPLaMo(aiChat);
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
msg.reply(serifs.aichat.nothing(type));
|
msg.reply(serifs.aichat.nothing(type));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue