@inductiv/node-red-openai-api 0.3.8 → 0.4.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 +14 -0
- package/examples/assistants.json +60 -82
- package/examples/audio.json +182 -63
- package/examples/files.json +70 -32
- package/examples/images.json +56 -28
- package/lib.js +666 -688
- package/locales/de-DE/node.json +2 -1
- package/locales/en-US/node.json +1 -1
- package/locales/ja/node.json +2 -1
- package/locales/zh-CN/node.json +2 -1
- package/node.html +2562 -572
- package/node.js +61 -98
- package/package.json +2 -3
package/locales/de-DE/node.json
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
"method": "Method",
|
|
7
7
|
"host": "Host",
|
|
8
8
|
"header": "Auth Header",
|
|
9
|
+
"organizationId": "Org Id",
|
|
9
10
|
"apiKey": "API Key",
|
|
10
11
|
"isQuery": "isQuery"
|
|
11
12
|
},
|
|
@@ -48,7 +49,7 @@
|
|
|
48
49
|
"createTranslation": "create translation",
|
|
49
50
|
"listFiles": "list files",
|
|
50
51
|
"purpose": "purpose",
|
|
51
|
-
"
|
|
52
|
+
"uploadFile": "upload file",
|
|
52
53
|
"deleteFile": "delete file",
|
|
53
54
|
"file_id": "file_id",
|
|
54
55
|
"retrieveFile": "retrieve file",
|
package/locales/en-US/node.json
CHANGED
package/locales/ja/node.json
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
"method": "Method",
|
|
7
7
|
"host": "Host",
|
|
8
8
|
"header": "Auth Header",
|
|
9
|
+
"organizationId": "Org Id",
|
|
9
10
|
"apiKey": "API Key",
|
|
10
11
|
"isQuery": "isQuery"
|
|
11
12
|
},
|
|
@@ -48,7 +49,7 @@
|
|
|
48
49
|
"createTranslation": "create translation",
|
|
49
50
|
"listFiles": "list files",
|
|
50
51
|
"purpose": "purpose",
|
|
51
|
-
"
|
|
52
|
+
"uploadFile": "upload file",
|
|
52
53
|
"deleteFile": "delete file",
|
|
53
54
|
"file_id": "file_id",
|
|
54
55
|
"retrieveFile": "retrieve file",
|
package/locales/zh-CN/node.json
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
"method": "Method",
|
|
7
7
|
"host": "Host",
|
|
8
8
|
"header": "Auth Header",
|
|
9
|
+
"organizationId": "Org Id",
|
|
9
10
|
"apiKey": "API Key",
|
|
10
11
|
"isQuery": "isQuery"
|
|
11
12
|
},
|
|
@@ -48,7 +49,7 @@
|
|
|
48
49
|
"createTranslation": "create translation",
|
|
49
50
|
"listFiles": "list files",
|
|
50
51
|
"purpose": "purpose",
|
|
51
|
-
"
|
|
52
|
+
"uploadFile": "upload file",
|
|
52
53
|
"deleteFile": "delete file",
|
|
53
54
|
"file_id": "file_id",
|
|
54
55
|
"retrieveFile": "retrieve file",
|