forked from BrainbaseHQ/brainbase-kafka-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
executable file
·61 lines (54 loc) · 2.73 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env node
const readline = require('readline');
const { create_file, write_to_file, modify_file } = require('./functions');
// Create readline interface
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
// Function to handle user input
const handleUserInput = (userInput) => {
if (userInput.toLowerCase() === 'exit') {
console.log('Exiting chat...');
rl.close();
} else {
console.log(`You said: ${userInput}`);
promptUser(); // Keep the chat going
}
};
// Function to prompt user for input
const promptUser = () => {
rl.question('You: ', (input) => {
handleUserInput(input);
});
};
// Start the chat
const hero = `@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@ @@@
@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@ @@@@ @@@@
@@@@@@@@@ .@@@@@@@@ @@@@@@@@@@ @@@ @@@@
@@@@@@@ @@@@@@@ @@@@@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@ @@@@@@@@@ @@@@@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@
@@@@@ @@@@@@ @@@@@@@@@@ @@@@ @@@@ @@@@ @@@ @@@@ @@@@ @@@@ @@@@@@@@ @@@@ @@@@ @@@@@@@@ @@@
@@@@@@@ @@@@@@@@ @@@@ @@@ @@@@ @@@@@@@@@ @@@ @@@ @@@ @@@@ @@@ @@@@@@@@@ @@@@@@@ @@@@@@@@@@@
@@@@@@@@@ @@@@@@@@@ @@@@@@@@@@@ @@@@ @@@@@@@@@@@@@@@@@@@@ @@@ @@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@ @@@@ @@@@@@ @@@@@@@@@@@@ @@@ @@@ @@@@@@@@@@ @@@@@@ @@@@@@@@@@@@ @@@@@@@
@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@ `;
// Type out the hero line by line
const heroLines = hero.split('\n');
let i = 0;
const interval = setInterval(() => {
console.log(heroLines[i]);
i++;
if (i === heroLines.length) {
clearInterval(interval);
console.log(``);
console.log(`I'm Kafka, an internal assistant for Brainbase. Let's create some integrations! Type "exit" to leave the chat.`);
create_file('main.js');
write_to_file('main.js', 'console.log("Hello, World!");');
modify_file('main.js', '1-1', 'console.log("Hello, World!");');
promptUser();
}
}, 300);
/* console.log('Welcome to Terminal Chat! Type "exit" to leave the chat.');
promptUser(); */