@inductiv/node-red-openai-api 1.4.0 → 1.5.0
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 +4 -6
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -40,12 +40,10 @@ After installation, find your node in the **AI** palette category labeled "OpenA
|
|
|
40
40
|
- **Configurable and Flexible**: Adapt to a wide range of project requirements, making it easy to integrate AI into your IoT solutions.
|
|
41
41
|
- **Powerful Combinations**: Utilize Node-RED's diverse nodes to build complex, AI-driven IoT workflows with ease.
|
|
42
42
|
|
|
43
|
-
## Release Notes (v1.
|
|
43
|
+
## Release Notes (v1.5.0)
|
|
44
44
|
|
|
45
|
-
- Upgraded to OpenAI Node API Library package dependency v4.
|
|
46
|
-
- Supporting OpenAI's new [
|
|
47
|
-
- Updated the node's documentation panel
|
|
48
|
-
- Code stability & formatting updates
|
|
45
|
+
- Upgraded to OpenAI Node API Library package dependency v4.68.0
|
|
46
|
+
- Supporting OpenAI's new [chat completion audio generation](https://platform.openai.com/docs/guides/audio) functionality with **gpt-4o-audio-preview** model capabilities
|
|
49
47
|
|
|
50
48
|
## What's New in Version 1.x
|
|
51
49
|
|
|
@@ -64,7 +62,7 @@ Version 1.0 of the **node-red-openai-api** node brings significant enhancements
|
|
|
64
62
|
- Some functions and settings from previous versions may no longer be compatible with this update.
|
|
65
63
|
- List responses now exist at the top level of the `msg.payload` object; previously `msg.payload.data`.
|
|
66
64
|
|
|
67
|
-
I recommend reviewing
|
|
65
|
+
I recommend reviewing existing flows and testing them with this new version in a development environment before updating to ensure a smooth transition. This will help you take full advantage of the enhanced features while managing any necessary adjustments in your existing applications.
|
|
68
66
|
|
|
69
67
|
## Contribute
|
|
70
68
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inductiv/node-red-openai-api",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "Enhance your Node-RED projects with advanced AI capabilities.",
|
|
5
5
|
"main": "node.js",
|
|
6
6
|
"engines": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"node-red",
|
|
17
17
|
"aiot",
|
|
18
18
|
"openai",
|
|
19
|
-
"gpt-4o",
|
|
19
|
+
"gpt-4o-audio-preview",
|
|
20
20
|
"ai",
|
|
21
21
|
"openai api",
|
|
22
22
|
"iot",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"low-code"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"openai": "~4.
|
|
33
|
+
"openai": "~4.68.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"eslint": "^9.2.0",
|