interintel 1.0.10 → 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.
- package/functions/file-functions.js +1 -1
- package/index.js +1 -1
- package/interintel.config.template.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
const path = require('path')
|
|
3
3
|
const OpenAI = require('openai');
|
|
4
4
|
const readline = require('readline');
|
|
5
|
-
const configPath = path.join(
|
|
5
|
+
const configPath = path.join(process.cwd(), 'interintel.config.js');
|
|
6
6
|
const config = require(configPath);
|
|
7
7
|
require('dotenv').config();
|
|
8
8
|
require('colors');
|
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
|
+
"version": "1.0.11",
|
|
10
10
|
"main": "index.js",
|
|
11
11
|
"directories": {
|
|
12
12
|
"doc": "docs"
|