Add ChatGPT

This commit is contained in:
na2na-p 2022-12-05 16:11:19 +09:00
parent 42c4d43f5f
commit 16f7c47419
No known key found for this signature in database
GPG key ID: ED5F3A50B6A4A98A
6 changed files with 90 additions and 0 deletions

View file

@ -14,6 +14,7 @@ type Config = {
mecabDic?: string;
memoryDir?: string;
earthQuakeMonitorPort?: number;
openAiApiKey?: string;
};
const config = require('../config.json');

View file

@ -0,0 +1,5 @@
const ENDPOINTS = {
OPEN_AI: 'https://api.openai.com/v1',
} as const;
export default ENDPOINTS;

View file

@ -0,0 +1,11 @@
/**
* @see https://beta.openai.com/docs/models/overview
*/
const GPT3_MODELS = {
davinci: 'text-davinci-003',
curie: 'text-curie-001',
babbage: 'text-babbage-001',
ada: 'text-ada-001',
};
export default GPT3_MODELS;

View file

@ -39,6 +39,7 @@ import Earthquake from './modules/earthquake';
import DicModule from './modules/dic';
import MenuModule from './modules/menu';
import GetColorModule from './modules/color';
import ChatGPT from './modules/chatGPT';
console.log(' __ ____ _____ ___ ');
console.log(' /__\\ (_ _)( _ )/ __)');
@ -72,6 +73,7 @@ promiseRetry((retry) => {
new (account, [
new CoreModule(),
new ReminderModule(),
new ChatGPT(),
new SummonCat(),
new EmojiModule(),
new EmojiReactModule(),

View file

@ -0,0 +1,29 @@
import autobind from 'autobind-decorator';
import Module from '@/module';
import Message from '@/message';
import fetchChatGPT from '@/utils/fetchChatGPT';
class ChatGPT extends Module {
public readonly name = 'ChatGPT';
@autobind
public install() {
return {
mentionHook: this.mentionHook,
};
}
@autobind
private async mentionHook(msg: Message) {
if (msg.text && (msg.text.includes('ChatGPT'))) {
// msg.textから"ChatGPT "を削除
const prompt = msg.text.replace('ChatGPT ', '');
msg.reply(await fetchChatGPT({prompt}));
return true;
} else {
return false;
}
}
}
export default ChatGPT;

42
src/utils/fetchChatGPT.ts Normal file
View file

@ -0,0 +1,42 @@
import {isNil} from 'lodash';
import ENDPOINTS from '@/constants/ENDPOINTS.js';
import GPT3_MODELS from '@/constants/GPT3_MODELS.js';
import config from '@/config';
const COMPLETION_ENDPOINT = `${ENDPOINTS.OPEN_AI}/completions`;
// 0~1
const TEMPERATURE = 0.9;
// 2048 or 4000
const MAX_TOKENS = 4000;
/**
* @see https://beta.openai.com/docs/api-reference/completions/create
*/
async function fetchChatGPT({prompt}: {prompt: string}): Promise<string> {
if (isNil(config.openAiApiKey)) {
return '利用する準備ができていないようです...?';
}
const options = {
model: GPT3_MODELS.davinci,
max_tokens: MAX_TOKENS,
temperature: TEMPERATURE,
prompt,
};
const response = await fetch(COMPLETION_ENDPOINT, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${config.openAiApiKey}`,
},
body: JSON.stringify(options),
});
const results = await response.json();
// results.choicesの中からランダムに返す
const randomIndex = Math.floor(Math.random() * results.choices.length);
return results.choices[randomIndex].text;
}
export default fetchChatGPT;