@misterscan/sesi 1.2.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bin/sesi.js CHANGED
@@ -8,7 +8,7 @@ const args = process.argv.slice(2);
8
8
 
9
9
  if (args.length === 0) {
10
10
  console.log(`
11
- Sesi Programming Language v1.2.0
11
+ Sesi Programming Language v1.2.1
12
12
 
13
13
  Usage:
14
14
  sesi <file> Run a Sesi program
@@ -36,11 +36,11 @@ if (args[0] === '--help' || args[0] === '-help' || args[0] === '-h') {
36
36
 
37
37
  const copilotPath = path.join(__dirname, '../main/sesi_db_chatbot.sesi');
38
38
  runSesiFile(copilotPath).catch((error) => {
39
- console.error('Fatal error in RAG Co-Pilot:', error.message);
39
+ console.error('Fatal error in Sesi Co-Pilot:', error.message);
40
40
  process.exit(1);
41
41
  });
42
42
  } else if (args[0] === '--version') {
43
- console.log('Sesi v1.2.0');
43
+ console.log('Sesi v1.2.1');
44
44
  process.exit(0);
45
45
  } else {
46
46
  const filePath = args[0];