Skip to content

Commit

Permalink
feat: add Poe Google-PaLM (#436)
Browse files Browse the repository at this point in the history
* feat: add Poe Google-PaLM

* update src/services/clients/poe/index.mjs
  • Loading branch information
Mohamed3nan committed Jun 30, 2023
1 parent 9d6236a commit 19c0ecb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/config/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export const poeWebModelKeys = [
'poeAiWebClaude100k',
'poeAiWebCustom',
'poeAiWebChatGpt',
'poeAiWebGooglePaLM',
]

/**
Expand Down Expand Up @@ -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' },
Expand Down
2 changes: 2 additions & 0 deletions src/services/clients/poe/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 19c0ecb

Please sign in to comment.