interintel 1.0.12 → 1.0.13

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.
Files changed (2) hide show
  1. package/index.js +5 -4
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -100,9 +100,10 @@ async function main() {
100
100
  }
101
101
  }
102
102
 
103
- main();
104
-
105
-
106
103
  exports.printMsg = function() {
107
104
  console.log("totally logging dude")
108
- }
105
+ }
106
+ exports.main = function() {
107
+ main()
108
+ }
109
+
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  },
7
7
  "name": "interintel",
8
8
  "description": "The application `Interintel` is a command line interface (CLI) application implemented in Node.js. It essentially is an interactive communication tool between the user and an AI model, only openai models for now.",
9
- "version": "1.0.12",
9
+ "version": "1.0.13",
10
10
  "main": "index.js",
11
11
  "directories": {
12
12
  "doc": "docs"