interintel 1.0.9 → 1.0.11

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.
@@ -3,7 +3,7 @@ const path = require('path');
3
3
 
4
4
  // READING FOR INITAL REFERENCE
5
5
  function readSpecificFiles(filePath) {
6
- const configFilePath = path.join(__dirname, '../interintel.config.js');
6
+ const configFilePath = filePath;
7
7
 
8
8
  try {
9
9
  // Read the content of the config file
@@ -1,4 +1,4 @@
1
-
1
+ require('dotenv').config();
2
2
 
3
3
  const config = {
4
4
  apiKey: `${process.env.OPENAI_API_KEY}`,
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.9",
9
+ "version": "1.0.11",
10
10
  "main": "index.js",
11
11
  "directories": {
12
12
  "doc": "docs"