feat: add Poe Llama-2-70b, Llama-2-13b, Llama-2-7b (#482)

This commit is contained in:
Anan
2023-07-27 12:53:09 +08:00
committed by GitHub
parent 819eb161d0
commit 1d10ea8b36
2 changed files with 14 additions and 2 deletions
+6
View File
@@ -149,6 +149,12 @@ export default class PoeAiClient {
bot = 'agouti'
} else if (bot === 'Google-PaLM') {
bot = 'acouchy'
} else if (bot === 'Llama-2-7b') {
bot = 'llama_2_7b_chat'
} else if (bot === 'Llama-2-13b') {
bot = 'llama_2_13b_chat'
} else if (bot === 'Llama-2-70b') {
bot = 'llama_2_70b_chat'
}
this.bot = bot