node-red-contrib-ollama 0.1.8 → 0.1.10
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/LICENSE +0 -0
- package/README.md +3 -1
- package/examples/Example.json +0 -0
- package/node-red-contrib-ollama-logo.png +0 -0
- package/nodes/ollama-chat.html +0 -0
- package/nodes/ollama-chat.js +0 -0
- package/nodes/ollama-copy.html +0 -0
- package/nodes/ollama-copy.js +0 -0
- package/nodes/ollama-create.html +0 -0
- package/nodes/ollama-create.js +0 -0
- package/nodes/ollama-delete.html +0 -0
- package/nodes/ollama-delete.js +0 -0
- package/nodes/ollama-embeddings.html +0 -0
- package/nodes/ollama-embeddings.js +0 -0
- package/nodes/ollama-generate.html +0 -0
- package/nodes/ollama-generate.js +0 -0
- package/nodes/ollama-list.html +0 -0
- package/nodes/ollama-list.js +0 -0
- package/nodes/ollama-pull.html +0 -0
- package/nodes/ollama-pull.js +0 -0
- package/nodes/ollama-push.html +0 -0
- package/nodes/ollama-push.js +0 -0
- package/nodes/ollama-show.html +0 -0
- package/nodes/ollama-show.js +0 -0
- package/package.json +2 -2
package/LICENSE
CHANGED
|
File without changes
|
package/README.md
CHANGED
|
@@ -4,13 +4,15 @@
|
|
|
4
4
|
|
|
5
5
|
# node-red-contrib-ollama
|
|
6
6
|
|
|
7
|
+
Add AI functionality to your flows! This module includes a set of nodes that enable easy communication with Ollama, enriching your projects with intelligent solutions.
|
|
8
|
+
|
|
7
9
|
A Node-RED module that wraps the [ollama.js](https://github.com/ollama/ollama-js) library, offering its functionalities as configurable nodes for easy integration into flows.
|
|
8
10
|
|
|
9
11
|
## Requirements
|
|
10
12
|
|
|
11
13
|
To use it, you need to have Node-RED installed on your system. For more information on how to install Node-RED, refer to the official [Node-RED documentation](https://nodered.org/docs/getting-started/).
|
|
12
14
|
|
|
13
|
-
|
|
15
|
+
You also need Ollama running on the same or a different system. For detailed instructions on how to install Ollama, please refer to the official [Ollama site](https://ollama.com/).
|
|
14
16
|
|
|
15
17
|
## Installation
|
|
16
18
|
|
package/examples/Example.json
CHANGED
|
File without changes
|
|
File without changes
|
package/nodes/ollama-chat.html
CHANGED
|
File without changes
|
package/nodes/ollama-chat.js
CHANGED
|
File without changes
|
package/nodes/ollama-copy.html
CHANGED
|
File without changes
|
package/nodes/ollama-copy.js
CHANGED
|
File without changes
|
package/nodes/ollama-create.html
CHANGED
|
File without changes
|
package/nodes/ollama-create.js
CHANGED
|
File without changes
|
package/nodes/ollama-delete.html
CHANGED
|
File without changes
|
package/nodes/ollama-delete.js
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/nodes/ollama-generate.js
CHANGED
|
File without changes
|
package/nodes/ollama-list.html
CHANGED
|
File without changes
|
package/nodes/ollama-list.js
CHANGED
|
File without changes
|
package/nodes/ollama-pull.html
CHANGED
|
File without changes
|
package/nodes/ollama-pull.js
CHANGED
|
File without changes
|
package/nodes/ollama-push.html
CHANGED
|
File without changes
|
package/nodes/ollama-push.js
CHANGED
|
File without changes
|
package/nodes/ollama-show.html
CHANGED
|
File without changes
|
package/nodes/ollama-show.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-red-contrib-ollama",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.10",
|
|
4
|
+
"description": "Add AI functionality to your flows! This module includes a set of nodes that enable easy communication with Ollama, enriching your projects with intelligent solutions.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
7
7
|
"llama",
|