-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathnode.js
More file actions
246 lines (215 loc) · 7.27 KB
/
node.js
File metadata and controls
246 lines (215 loc) · 7.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
"use strict";
const OpenaiApi = require("./lib.js");
function resolveApiKeyType(config, credentials) {
return config.secureApiKeyValueType || credentials.secureApiKeyValueType || "cred";
}
function resolveApiKeyValue(config, credentials, apiKeyType) {
if (apiKeyType === "cred") {
return credentials.secureApiKeyValue;
}
const apiKeyRef = config.secureApiKeyValueRef;
if (typeof apiKeyRef === "string" && apiKeyRef.trim() !== "") {
return apiKeyRef;
}
if (apiKeyRef !== undefined && apiKeyRef !== null && apiKeyRef !== "") {
return apiKeyRef;
}
return credentials.secureApiKeyValue;
}
function normalizeApiKeyHeaderOrQueryName(headerOrQueryName) {
if (typeof headerOrQueryName !== "string") {
return "Authorization";
}
const trimmedHeaderOrQueryName = headerOrQueryName.trim();
return trimmedHeaderOrQueryName || "Authorization";
}
function resolveApiKeyQueryMode(isQueryValue) {
return isQueryValue === true || isQueryValue === "true";
}
module.exports = function (RED) {
class OpenaiApiNode {
constructor(config) {
RED.nodes.createNode(this, config);
let node = this;
node.service = RED.nodes.getNode(config.service);
node.config = config;
node._cleanupHandlers = [];
node.registerCleanupHandler = function (handler) {
node._cleanupHandlers.push(handler);
};
node.on("input", function (msg) {
if (!node.service) {
node.error("OpenAI service host is not configured", msg);
return;
}
Promise.all([
node.service.evaluateTypedAsync("secureApiKeyValue", msg, node),
node.service.evaluateTypedAsync("apiBase", msg, node),
node.service.evaluateTypedAsync("organizationId", msg, node),
node.service.evaluateTypedAsync(
"secureApiKeyHeaderOrQueryName",
msg,
node
),
])
.then(
([
clientApiKey,
clientApiBase,
clientOrganization,
clientApiKeyHeaderOrQueryName,
]) => {
if (!clientApiKey) {
node.error("OpenAI API key is not configured", msg);
return;
}
const resolvedApiKeyHeaderOrQueryName =
normalizeApiKeyHeaderOrQueryName(clientApiKeyHeaderOrQueryName);
const apiKeyIsQuery = resolveApiKeyQueryMode(
node.service.secureApiKeyIsQuery
);
let client = new OpenaiApi(
clientApiKey,
clientApiBase,
clientOrganization,
{
headerOrQueryName: resolvedApiKeyHeaderOrQueryName,
isQuery: apiKeyIsQuery,
}
);
let payload;
const propertyType = node.config.propertyType || "msg";
const propertyPath = node.config.property || "payload";
if (propertyType === "msg") {
payload = RED.util.getMessageProperty(msg, propertyPath);
} else {
// For flow and global contexts
payload = node.context()[propertyType].get(propertyPath);
}
const serviceName = node.config.method; // Set the service name to call.
let serviceParametersObject = {
_node: node,
payload: payload,
msg: msg,
};
// Dynamically call the function based on the service name
if (typeof client[serviceName] === "function") {
node.status({
fill: "blue",
shape: "dot",
text: "OpenaiApi.status.requesting",
});
client[serviceName](serviceParametersObject)
.then((payload) => {
if (payload !== undefined) {
// Update `msg.payload` with the payload from the API response, then send resonse to client.
msg.payload = payload;
node.send(msg);
node.status({});
}
})
.catch(function (error) {
node.status({
fill: "red",
shape: "ring",
text: "node-red:common.status.error",
});
let errorMessage = error.message;
node.error(errorMessage, msg);
});
} else {
console.error(`Function ${serviceName} does not exist on client.`);
}
}
)
.catch((error) => {
const errorMessage = error instanceof Error ? error.message : error;
node.error(errorMessage, msg);
});
});
node.on("close", function (done) {
Promise.all(node._cleanupHandlers.map((handler) => handler())).then(
() => done()
).catch(done);
});
}
}
RED.nodes.registerType("OpenAI API", OpenaiApiNode);
class ServiceHostNode {
constructor(n) {
RED.nodes.createNode(this, n);
this.apiBase = n.apiBase;
this.secureApiKeyHeaderOrQueryName = n.secureApiKeyHeaderOrQueryName;
this.secureApiKeyIsQuery = n.secureApiKeyIsQuery;
this.organizationId = n.organizationId;
const creds = this.credentials || {};
const apiKeyType = resolveApiKeyType(n, creds);
const apiKeyValue = resolveApiKeyValue(n, creds, apiKeyType);
this.typedConfig = {
apiBase: { value: n.apiBase, type: n.apiBaseType || "str" },
secureApiKeyHeaderOrQueryName: {
value: n.secureApiKeyHeaderOrQueryName,
type: n.secureApiKeyHeaderOrQueryNameType || "str",
},
secureApiKeyValue: {
value: apiKeyValue,
type: apiKeyType,
},
organizationId: {
value: n.organizationId,
type: n.organizationIdType || "str",
},
};
}
// Helper to resolve property value at runtime
evaluateTyped(prop, msg, node) {
const entry = this.typedConfig[prop];
if (!entry) {
return undefined;
}
return RED.util.evaluateNodeProperty(
entry.value,
entry.type || "str",
node || this,
msg
);
}
evaluateTypedAsync(prop, msg, node) {
const entry = this.typedConfig[prop];
if (!entry) {
return Promise.resolve(undefined);
}
if (entry.type === "flow" || entry.type === "global") {
return new Promise((resolve, reject) => {
RED.util.evaluateNodeProperty(
entry.value,
entry.type || "str",
node || this,
msg,
(error, value) => {
if (error) {
reject(error);
return;
}
resolve(value);
}
);
});
}
return Promise.resolve(
RED.util.evaluateNodeProperty(
entry.value,
entry.type || "str",
node || this,
msg
)
);
}
}
RED.nodes.registerType("Service Host", ServiceHostNode, {
credentials: {
secureApiKeyValue: { type: "password" },
temp: { type: "text" },
},
});
};