diff --git a/Dockerfile b/Dockerfile index 5a5fcf1..0685bfc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ RUN if [ $enable_mecab -ne 0 ]; then apt-get update \ && apt-get clean \ && rm -rf /var/lib/apt-get/lists/* \ && cd /opt \ - && git clone --depth 1 https://github.com/neologd/mecab-ipadic-neologd.git \ + && git clone --depth 1 https://github.com/yokomotod/mecab-ipadic-neologd.git \ && cd /opt/mecab-ipadic-neologd \ && ./bin/install-mecab-ipadic-neologd -n -y \ && rm -rf /opt/mecab-ipadic-neologd \ diff --git a/src/modules/aichat/index.ts b/src/modules/aichat/index.ts index feb13ef..636cfbe 100644 --- a/src/modules/aichat/index.ts +++ b/src/modules/aichat/index.ts @@ -33,6 +33,7 @@ type AiChatHist = { const KIGO = '&'; const TYPE_GEMINI = 'gemini'; const TYPE_PLAMO = 'plamo'; + 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 PLAMO_API = 'https://platform.preferredai.jp/api/completion/v1/chat/completions'; @@ -123,6 +124,7 @@ export default class extends Module { try { res_data = await got.post(options, {parseJson: (res: string) => JSON.parse(res)}).json(); + {parseJson: res => JSON.parse(res)}).json(); this.log(JSON.stringify(res_data)); if (res_data.hasOwnProperty('candidates')) { if (res_data.candidates.length > 0) {