From a8574084bae04639202beda3c00f661421f0d5d1 Mon Sep 17 00:00:00 2001 From: Sunner Sun Date: Wed, 30 Aug 2023 09:39:22 +0800 Subject: [PATCH] feat: change default bots Add ChatGPT 4, Bard and Llama 2 70b, remove Llama 2 13b --- src/store/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/store/index.js b/src/store/index.js index e66f5c9996..f3cfd87fe2 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -86,10 +86,12 @@ export default createStore({ favBots: [ // default bots { classname: "ChatGPT35Bot", selected: true }, + { classname: "ChatGPT4Bot", selected: true }, { classname: "BingChatCreativeBot", selected: true }, { classname: "BingChatBalancedBot", selected: true }, { classname: "BingChatPreciseBot", selected: true }, - { classname: "Llama213bBot", selected: true }, + { classname: "BardBot", selected: true }, + { classname: "Llama270bBot", selected: true }, { classname: "VicunaBot", selected: true }, ], contexts: {},