mirror of
https://github.com/wassname/chatGPTBox.git
synced 2026-07-24 13:00:14 +08:00
Add ChatGPT-16k & GPT-4-32k on Poe (#458)
* Add ChatGPT-16k on Poe * Add GPT-4-32k on Poe
This commit is contained in:
@@ -44,11 +44,13 @@ export const githubThirdPartyApiModelKeys = ['waylaidwandererApi']
|
||||
export const poeWebModelKeys = [
|
||||
'poeAiWebSage',
|
||||
'poeAiWebGPT4',
|
||||
'poeAiWebGPT4_32k',
|
||||
'poeAiWebClaude_2_100k',
|
||||
'poeAiWebClaude',
|
||||
'poeAiWebClaude100k',
|
||||
'poeAiWebCustom',
|
||||
'poeAiWebChatGpt',
|
||||
'poeAiWebChatGpt_16k',
|
||||
'poeAiWebGooglePaLM',
|
||||
]
|
||||
|
||||
@@ -74,6 +76,7 @@ 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)' },
|
||||
poeAiWebGPT4_32k: { value: 'gpt-4-32k', desc: 'Poe AI (Web, GPT-4-32k)' },
|
||||
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)' },
|
||||
@@ -86,6 +89,7 @@ export const Models = {
|
||||
waylaidwandererApi: { value: '', desc: 'Waylaidwanderer API (Github)' },
|
||||
poeAiWebCustom: { value: '', desc: 'Poe AI (Web, Custom)' },
|
||||
poeAiWebChatGpt: { value: 'chatgpt', desc: 'Poe AI (Web, ChatGPT)' },
|
||||
poeAiWebChatGpt_16k: { value: 'chatgpt-16k', desc: 'Poe AI (Web, ChatGPT-16k)' },
|
||||
}
|
||||
|
||||
for (const modelName in Models) {
|
||||
@@ -164,6 +168,7 @@ export const defaultConfig = {
|
||||
'bingFreeSydney',
|
||||
'poeAiWebSage',
|
||||
'poeAiWebGPT4',
|
||||
'poeAiWebGPT4_32k',
|
||||
'poeAiWebClaude_2_100k',
|
||||
'poeAiWebClaude100k',
|
||||
'chatgptApi4_8k',
|
||||
|
||||
@@ -135,6 +135,8 @@ export default class PoeAiClient {
|
||||
bot = 'capybara'
|
||||
} else if (bot === 'gpt-4') {
|
||||
bot = 'beaver'
|
||||
} else if (bot === 'gpt-4-32k') {
|
||||
bot = 'vizcacha'
|
||||
} else if (bot === 'claude-instant-100k') {
|
||||
bot = 'a2_100k'
|
||||
} else if (bot === 'claude-2-100k') {
|
||||
@@ -143,6 +145,8 @@ export default class PoeAiClient {
|
||||
bot = 'a2'
|
||||
} else if (bot === 'chatgpt') {
|
||||
bot = 'chinchilla'
|
||||
} else if (bot === 'chatgpt-16k') {
|
||||
bot = 'agouti'
|
||||
} else if (bot === 'Google-PaLM') {
|
||||
bot = 'acouchy'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user