feat: add Poe Google-PaLM (#436)

* feat: add Poe Google-PaLM

* update src/services/clients/poe/index.mjs
This commit is contained in:
Anan
2023-06-30 07:28:13 +03:00
committed by GitHub
parent 9d6236aef0
commit 19c0ecb6c2
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -49,6 +49,7 @@ export const poeWebModelKeys = [
'poeAiWebClaude100k',
'poeAiWebCustom',
'poeAiWebChatGpt',
'poeAiWebGooglePaLM',
]
/**
@@ -76,6 +77,7 @@ export const Models = {
poeAiWebClaudePlus: { value: 'claude+', desc: 'Poe AI (Web, Claude+)' },
poeAiWebClaude: { value: 'claude', desc: 'Poe AI (Web, Claude)' },
poeAiWebClaude100k: { value: 'claude-instant-100k', desc: 'Poe AI (Web, Claude instant 100k)' },
poeAiWebGooglePaLM: { value: 'Google-PaLM', desc: 'Poe AI (Web, Google-PaLM)' },
chatgptApi4_8k: { value: 'gpt-4', desc: 'ChatGPT (GPT-4-8k)' },
chatgptApi4_32k: { value: 'gpt-4-32k', desc: 'ChatGPT (GPT-4-32k)' },
gptApiDavinci: { value: 'text-davinci-003', desc: 'GPT-3.5' },
+2
View File
@@ -143,6 +143,8 @@ export default class PoeAiClient {
bot = 'a2'
} else if (bot === 'chatgpt') {
bot = 'chinchilla'
} else if (bot === 'Google-PaLM') {
bot = 'acouchy'
}
this.bot = bot