Skip to content

Commit

Permalink
Change Poe bot "Sage" to "Assistant" (#466)
Browse files Browse the repository at this point in the history
* Change Poe bot "Sage" to "Assistant"

* Update index.mjs [comments](6c42167#comments)

---------

Co-authored-by: josc146 <[email protected]>
  • Loading branch information
Mohamed3nan and josStorer authored Jul 22, 2023
1 parent 3bef0c0 commit 3d6ef41
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/config/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export const Models = {
bingFree4: { value: '', desc: 'Bing (Web, GPT-4)' },
bingFreeSydney: { value: '', desc: 'Bing (Web, GPT-4, Sydney)' },
bardWebFree: { value: '', desc: 'Bard (Web)' },
poeAiWebSage: { value: 'sage', desc: 'Poe AI (Web, Sage)' },
poeAiWebSage: { value: 'Assistant', desc: 'Poe AI (Web, Assistant)' },
poeAiWebGPT4: { value: 'gpt-4', desc: 'Poe AI (Web, GPT-4)' },
poeAiWebGPT4_32k: { value: 'gpt-4-32k', desc: 'Poe AI (Web, GPT-4-32k)' },
poeAiWebClaudePlus: { value: 'claude-2-100k', desc: 'Poe AI (Web, Claude 2 100k)' },
Expand Down
4 changes: 2 additions & 2 deletions src/services/clients/poe/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default class PoeAiClient {
await this.getCredentials()
}
if (!this.bot) {
await this.initBot(model || 'sage')
await this.initBot(model || 'Assistant')
}
if (!this.chatId) {
await this.getChatId(this.bot)
Expand Down Expand Up @@ -131,7 +131,7 @@ export default class PoeAiClient {
}

async initBot(bot) {
if (bot === 'sage') {
if (bot === 'Assistant') {
bot = 'capybara'
} else if (bot === 'gpt-4') {
bot = 'beaver'
Expand Down

0 comments on commit 3d6ef41

Please sign in to comment.