mirror of
https://github.com/wassname/chatGPTBox.git
synced 2026-06-27 19:14:37 +08:00
feat: add Poe Google-PaLM (#436)
* feat: add Poe Google-PaLM * update src/services/clients/poe/index.mjs
This commit is contained in:
@@ -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' },
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user