forked from brianelizondo/ai-connectify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.01 KB
/
package.json
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
{
"name": "ai-connectify",
"version": "1.1.0",
"description": "A simple library for connecting to and interacting with various AI services",
"keywords": [
"ai",
"connectify",
"artificial",
"intelligence",
"machine",
"learning",
"openai",
"chatgpt",
"dalle",
"tensorflow",
"cohere"
],
"homepage": "https://github.com/brianelizondo/ai-connectify#readme",
"bugs": {
"url": "https://github.com/brianelizondo/ai-connectify/issues"
},
"license": "MIT",
"author": "Brian Elizondo <[email protected]> (https://github.com/brianelizondo)",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/brianelizondo/ai-connectify.git"
},
"scripts": {
"test": "jest"
},
"dependencies": {
"@tensorflow/tfjs-node": "^4.4.0",
"cohere-ai": "^6.2.2",
"openai": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.21.5",
"@babel/preset-env": "^7.21.5",
"babel-jest": "^29.5.0",
"jest": "^27.4.3"
}
}