@inductiv/node-red-openai-api 0.8.0 → 1.0.1
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/README.md +50 -62
- package/examples/assistants.json +156 -189
- package/examples/chat.json +5 -3
- package/examples/embeddings.json +9 -2
- package/examples/fine-tuning.json +3 -1
- package/examples/messages.json +4 -2
- package/examples/models.json +3 -1
- package/examples/threads.json +3 -1
- package/lib.js +362 -333
- package/locales/de-DE/node.json +20 -2
- package/locales/en-US/node.json +18 -1
- package/locales/ja/node.json +18 -3
- package/locales/zh-CN/node.json +20 -2
- package/node.html +983 -148
- package/package.json +18 -11
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inductiv/node-red-openai-api",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Enhance your Node-RED flows with advanced AI capabilities. This package offers seamless integration with OpenAI's latest Assistants v2 API, including support for batch requests and vector store features, ensuring robust AIoT solutions with improved usability and stability.",
|
|
5
5
|
"main": "node.js",
|
|
6
6
|
"engines": {
|
|
7
7
|
"node": ">=12.0.0"
|
|
@@ -13,21 +13,28 @@
|
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
15
|
"keywords": [
|
|
16
|
+
"node-red",
|
|
17
|
+
"aiot",
|
|
16
18
|
"openai",
|
|
17
|
-
"
|
|
19
|
+
"ai",
|
|
20
|
+
"openai api",
|
|
21
|
+
"assistants v2",
|
|
22
|
+
"batch requests",
|
|
23
|
+
"vector store",
|
|
24
|
+
"iot",
|
|
25
|
+
"node-red-contrib",
|
|
18
26
|
"automation",
|
|
19
|
-
"
|
|
27
|
+
"smart devices",
|
|
28
|
+
"node-red-node",
|
|
29
|
+
"artificial intelligence",
|
|
30
|
+
"api integration",
|
|
20
31
|
"llm",
|
|
21
32
|
"slm",
|
|
22
|
-
"agent",
|
|
23
|
-
"
|
|
24
|
-
"node-red",
|
|
25
|
-
"nodered",
|
|
26
|
-
"low-code",
|
|
27
|
-
"ai"
|
|
33
|
+
"ai agent",
|
|
34
|
+
"low-code"
|
|
28
35
|
],
|
|
29
36
|
"dependencies": {
|
|
30
|
-
"openai": "^4.
|
|
37
|
+
"openai": "^4.38.5"
|
|
31
38
|
},
|
|
32
39
|
"devDependencies": {
|
|
33
40
|
"eslint": "^8.54.0",
|