mirror of
https://github.com/wassname/chatGPTBox.git
synced 2026-07-27 11:20:47 +08:00
Update the name of Anthropic's Claude bots on Poe.com (#452)
* Update "Claude+" on Poe to "Claude 2 100k" * Update "Claude" on Poe to "Claude instant"
This commit is contained in:
@@ -44,7 +44,7 @@ export const githubThirdPartyApiModelKeys = ['waylaidwandererApi']
|
||||
export const poeWebModelKeys = [
|
||||
'poeAiWebSage',
|
||||
'poeAiWebGPT4',
|
||||
'poeAiWebClaudePlus',
|
||||
'poeAiWebClaude_2_100k',
|
||||
'poeAiWebClaude',
|
||||
'poeAiWebClaude100k',
|
||||
'poeAiWebCustom',
|
||||
@@ -74,8 +74,8 @@ export const Models = {
|
||||
bardWebFree: { value: '', desc: 'Bard (Web)' },
|
||||
poeAiWebSage: { value: 'sage', desc: 'Poe AI (Web, Sage)' },
|
||||
poeAiWebGPT4: { value: 'gpt-4', desc: 'Poe AI (Web, GPT-4)' },
|
||||
poeAiWebClaudePlus: { value: 'claude+', desc: 'Poe AI (Web, Claude+)' },
|
||||
poeAiWebClaude: { value: 'claude', desc: 'Poe AI (Web, Claude)' },
|
||||
poeAiWebClaude_2_100k: { value: 'claude-2-100k', desc: 'Poe AI (Web, Claude 2 100k)' },
|
||||
poeAiWebClaude: { value: 'claude-instant', desc: 'Poe AI (Web, Claude instant)' },
|
||||
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)' },
|
||||
@@ -164,7 +164,7 @@ export const defaultConfig = {
|
||||
'bingFreeSydney',
|
||||
'poeAiWebSage',
|
||||
'poeAiWebGPT4',
|
||||
'poeAiWebClaudePlus',
|
||||
'poeAiWebClaude_2_100k',
|
||||
'poeAiWebClaude100k',
|
||||
'chatgptApi4_8k',
|
||||
'customModel',
|
||||
|
||||
@@ -137,9 +137,9 @@ export default class PoeAiClient {
|
||||
bot = 'beaver'
|
||||
} else if (bot === 'claude-instant-100k') {
|
||||
bot = 'a2_100k'
|
||||
} else if (bot === 'claude+') {
|
||||
} else if (bot === 'claude-2-100k') {
|
||||
bot = 'a2_2'
|
||||
} else if (bot === 'claude') {
|
||||
} else if (bot === 'claude-instant') {
|
||||
bot = 'a2'
|
||||
} else if (bot === 'chatgpt') {
|
||||
bot = 'chinchilla'
|
||||
|
||||
Reference in New Issue
Block a user