node-red-contrib-ollama 0.1.2 → 0.1.4
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/package.json +8 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-red-contrib-ollama",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "A Node-RED module that wraps the ollama.js library, offering its functionalities as configurable nodes for easy integration into flows.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -15,6 +15,10 @@
|
|
|
15
15
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
16
16
|
},
|
|
17
17
|
"node-red": {
|
|
18
|
+
"version": ">=3.1.7",
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": ">=14.0.0"
|
|
21
|
+
},
|
|
18
22
|
"nodes": {
|
|
19
23
|
"ollama-chat": "nodes/ollama-chat.js",
|
|
20
24
|
"ollama-copy": "nodes/ollama-copy.js",
|
|
@@ -31,13 +35,14 @@
|
|
|
31
35
|
"dependencies": {
|
|
32
36
|
"ollama": "^0.5.0"
|
|
33
37
|
},
|
|
34
|
-
"author": "Jakub Burkiewicz",
|
|
35
38
|
"bugs": {
|
|
36
|
-
"url": "https://github.com/jakubburkiewicz/node-red-contrib-ollama/issues"
|
|
39
|
+
"url": "https://github.com/jakubburkiewicz/node-red-contrib-ollama/issues",
|
|
40
|
+
"email": "node-red-contrib-ollama@conx.eu"
|
|
37
41
|
},
|
|
38
42
|
"repository": {
|
|
39
43
|
"type": "git",
|
|
40
44
|
"url": "https://github.com/jakubburkiewicz/node-red-contrib-ollama"
|
|
41
45
|
},
|
|
46
|
+
"author": "Jakub Burkiewicz",
|
|
42
47
|
"license": "MIT"
|
|
43
48
|
}
|