This repository was archived by the owner on Aug 18, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +8
-11
lines changed
Expand file tree Collapse file tree 2 files changed +8
-11
lines changed Original file line number Diff line number Diff line change @@ -59,9 +59,10 @@ class ChatBot {
5959 name : "bot" ,
6060 message : "Select" ,
6161 choices : [
62- { title : "Claude - a2" , value : "a2" } ,
63- { title : "Capybara (logical)" , value : "capybara" } ,
64- { title : "Nutria (simpler)" , value : "nutria" } ,
62+ { title : "Claude (Powered by Anthropic)" , value : "a2" } ,
63+ { title : "Sage (Powered by OpenAI - logical)" , value : "capybara" } ,
64+ { title : "Dragonfly (Powered by OpenAI - simpler)" , value : "nutria" } ,
65+ { title : "ChatGPT (Powered by OpenAI - current)" , value : "chinchilla" } ,
6566 { title : "exit" , value : "exit" }
6667 ] ,
6768 } ) ;
@@ -170,5 +171,3 @@ class ChatBot {
170171}
171172const chatBot = new ChatBot ( ) ;
172173await chatBot . start ( ) ;
173- // later feature to automatically get credentials
174- // await chatBot.getCredentials();
Original file line number Diff line number Diff line change @@ -64,9 +64,10 @@ class ChatBot {
6464 name : "bot" ,
6565 message : "Select" ,
6666 choices : [
67- { title : "Claude - a2" , value : "a2" } ,
68- { title : "Capybara (logical)" , value : "capybara" } ,
69- { title : "Nutria (simpler)" , value : "nutria" } ,
67+ { title : "Claude (Powered by Anthropic)" , value : "a2" } ,
68+ { title : "Sage (Powered by OpenAI - logical)" , value : "capybara" } ,
69+ { title : "Dragonfly (Powered by OpenAI - simpler)" , value : "nutria" } ,
70+ { title : "ChatGPT (Powered by OpenAI - current)" , value : "chinchilla" } ,
7071 { title : "exit" , value : "exit" }
7172 ] ,
7273 } ) ;
@@ -182,6 +183,3 @@ class ChatBot {
182183
183184const chatBot = new ChatBot ( ) ;
184185await chatBot . start ( ) ;
185-
186- // later feature to automatically get credentials
187- // await chatBot.getCredentials();
You can’t perform that action at this time.
0 commit comments