Skip to content

Commit 19c0ecb

Browse files
authored
feat: add Poe Google-PaLM (#436)
* feat: add Poe Google-PaLM * update src/services/clients/poe/index.mjs
1 parent 9d6236a commit 19c0ecb

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/config/index.mjs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ export const poeWebModelKeys = [
4949
'poeAiWebClaude100k',
5050
'poeAiWebCustom',
5151
'poeAiWebChatGpt',
52+
'poeAiWebGooglePaLM',
5253
]
5354

5455
/**
@@ -76,6 +77,7 @@ export const Models = {
7677
poeAiWebClaudePlus: { value: 'claude+', desc: 'Poe AI (Web, Claude+)' },
7778
poeAiWebClaude: { value: 'claude', desc: 'Poe AI (Web, Claude)' },
7879
poeAiWebClaude100k: { value: 'claude-instant-100k', desc: 'Poe AI (Web, Claude instant 100k)' },
80+
poeAiWebGooglePaLM: { value: 'Google-PaLM', desc: 'Poe AI (Web, Google-PaLM)' },
7981
chatgptApi4_8k: { value: 'gpt-4', desc: 'ChatGPT (GPT-4-8k)' },
8082
chatgptApi4_32k: { value: 'gpt-4-32k', desc: 'ChatGPT (GPT-4-32k)' },
8183
gptApiDavinci: { value: 'text-davinci-003', desc: 'GPT-3.5' },

src/services/clients/poe/index.mjs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,8 @@ export default class PoeAiClient {
143143
bot = 'a2'
144144
} else if (bot === 'chatgpt') {
145145
bot = 'chinchilla'
146+
} else if (bot === 'Google-PaLM') {
147+
bot = 'acouchy'
146148
}
147149

148150
this.bot = bot

0 commit comments

Comments
 (0)