Skip to content
This repository was archived by the owner on Aug 18, 2023. It is now read-only.

Commit eb3b041

Browse files
authored
Merge pull request #2 from muharamdani/feature/added-new-bot
Feature | added new bot (ChatGPT)
2 parents e73d4c9 + fe4cd25 commit eb3b041

File tree

2 files changed

+8
-11
lines changed

2 files changed

+8
-11
lines changed

dist/index.js

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff 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
}
171172
const chatBot = new ChatBot();
172173
await chatBot.start();
173-
// later feature to automatically get credentials
174-
// await chatBot.getCredentials();

src/index.ts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff 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

183184
const chatBot = new ChatBot();
184185
await chatBot.start();
185-
186-
// later feature to automatically get credentials
187-
// await chatBot.getCredentials();

0 commit comments

Comments
 (0)