-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
429 lines (346 loc) · 13.3 KB
/
Copy pathindex.js
File metadata and controls
429 lines (346 loc) · 13.3 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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
// Node-RED plugin entry point (Node.js/server-side)
// Registers AI flow builder HTTP endpoints and serves resources
const axios = require('axios')
const getEnv = require('./resources/config-loader')
const audit = require('./resources/audit')
let customNodes = []
const summarized = () => customNodes.map(n => ({
name: n.name,
fields: Object.keys(n.schema)
}))
// Auto-deploy gate: NODE_ENV must be set AND not "production".
// Blank/undefined fails closed — blank NODE_ENV means unknown environment,
// and unknown should not deploy. Enabling the auto-verify switch is itself
// the user's consent to deploy, so no second flag is required.
const isAutoDeployAllowed = () => {
const nodeEnv = process.env.NODE_ENV
if (!nodeEnv || nodeEnv === 'production') {
return false
}
return true
}
const getAutoVerifySettings = () => ({
autoVerifyDefault: getEnv('SFL_AUTO_VERIFY_DEFAULT', true),
maxAttempts: getEnv('SFL_AUTO_VERIFY_MAX_ATTEMPTS', 3),
maxRestarts: getEnv('SFL_AUTO_VERIFY_MAX_RESTARTS', 3),
timeoutMs: getEnv('SFL_AUTO_VERIFY_TIMEOUT_MS', 60000),
canAutoDeploy: isAutoDeployAllowed()
})
module.exports = async function (RED) {
if (typeof getEnv.setSettings === 'function') {
getEnv.setSettings(RED.settings)
}
audit.setRED(RED)
// Determine which AI connector to use (default: azure-openai)
const connectorName = getEnv('AI_CONNECTOR', 'azure-openai')
// Dynamically load the connector module
let connector
const packageInfoCache = new Map()
const packageInfoCacheUrl = getEnv('PACKAGE_INFO_CACHE_URL', '')
const packageInfoCacheRaw = getEnv('PACKAGE_INFO_CACHE', [])
const setPackageInfoCache = arr => {
arr.forEach(pkgInfo => {
const { name, description } = pkgInfo
packageInfoCache.set(name, description)
})
}
const ensurePackageInfoCache = async () => {
setPackageInfoCache(packageInfoCacheRaw)
if (packageInfoCacheUrl) {
try {
const { data } = await axios.get(packageInfoCacheUrl, { timeout: 5000 })
setPackageInfoCache(data)
} catch (e) {
// continue silently
}
}
}
try {
// eslint-disable-next-line import/no-dynamic-require, global-require
connector = require(`./resources/ai-connectors/${connectorName}-connector-node`)
} catch (e) {
RED.log.error(`[semantic-flow-language] Failed to load connector "${connectorName}": ${e.message}`)
}
const packageInfo = async name => {
let description = packageInfoCache.get(name) || ''
if (!description) {
try {
// Try npm registry
const registryRes = await axios.get(`https://registry.npmjs.org/${encodeURIComponent(name)}`, { timeout: 5000 })
const { data } = registryRes
const latest = data['dist-tags'] && data['dist-tags'].latest
const info = latest && data.versions ? data.versions[latest] : data
const desc = (info && info.description) || data.description || ''
packageInfoCache.set(name, description)
description = desc
} catch (e) {
// try unpkg fallback
try {
const unpkgRes = await axios.get(`https://unpkg.com/${name}/package.json`, { timeout: 5000 })
const info = unpkgRes.data
const desc = info && info.description ? info.description : ''
packageInfoCache.set(name, description)
description = desc
} catch (er) {
// Give up and return empty description
packageInfoCache.set(name, '')
}
}
}
return description
}
// Receive client-provided custom node metadata
RED.httpAdmin.post('/ai/custom-nodes', async (req, res) => {
const { nodes } = req.body || {}
if (!Array.isArray(nodes)) {
return res.status(400).json({ success: false, error: 'nodes must be an array' })
}
await Promise.all(nodes.map(async n => {
n.description = await packageInfo(n.packageName)
delete n.packageName
}))
customNodes = nodes
RED.log.info(`[semantic-flow-language] Stored ${customNodes.length} custom nodes`)
return res.json({ success: true })
})
// Register HTTP endpoint for AI flow generation
// eslint-disable-next-line consistent-return
RED.httpAdmin.post('/ai/build-flow', async (req, res) => {
let output = { success: false, flow: [], error: '' }
try {
const { prompt, context = {} } = req.body
if (!prompt || !prompt.trim()) {
output.error = 'Prompt is required'
return res.status(400).json(output)
}
// Validate AI configuration
const aiConfig = connector.getConfig()
const validation = connector.validateConfig(aiConfig)
if (!validation.valid) {
output.error = `AI not configured: ${validation.errors.join(', ')}`
return res.status(500).json(output)
}
// Generate a prompt_id that scopes all subsequent audit events for this
// prompt (auto_verify_attempt, auto_verify_complete). Returned to the
// client so it can include it in events it emits from the verify loop.
const promptId = audit.generatePromptId()
audit.emit({
event_type: 'prompt_received',
prompt_id: promptId,
prompt_text: prompt,
ai_mode: 'flow_generation'
}, req)
context.customNodes = summarized()
// Generate flow using AI connector
const result = await connector.generateFlow(prompt, context)
output = result
output.promptId = promptId
if (result.success) {
RED.log.info(`[ai-flow-builder] Generated ${result.flow.length} nodes from prompt`)
} else {
RED.log.warn(`[ai-flow-builder] Failed: ${result.error}`)
}
res.json(output)
} catch (e) {
output.error = e.message || 'Internal server error'
RED.log.error(`[ai-flow-builder] Error: ${e.message}`)
res.status(500).json(output)
}
})
// Register HTTP endpoint for AI node re-sync
// eslint-disable-next-line consistent-return
RED.httpAdmin.post('/ai/resync-node', async (req, res) => {
let output = { success: false, updatedNode: null, error: '' }
try {
const {
nodeId,
nodeType,
nodeName,
info,
currentConfig
} = req.body
if (!nodeId || !info || !info.trim()) {
output.error = 'Node ID and info are required'
return res.status(400).json(output)
}
// Validate AI configuration
const aiConfig = connector.getConfig()
const validation = connector.validateConfig(aiConfig)
if (!validation.valid) {
output.error = `AI not configured: ${validation.errors.join(', ')}`
return res.status(500).json(output)
}
audit.emit({
event_type: 'prompt_received',
prompt_id: audit.generatePromptId(),
prompt_text: info,
ai_mode: 'node_update'
}, req)
currentConfig.customNodes = summarized()
// Generate updated node config using AI connector
const result = await connector.resyncNode(
nodeId,
nodeType,
info,
currentConfig,
false,
nodeName
)
output = result
if (result.success) {
RED.log.info(`[ai-resync] Re-synced node ${nodeId} based on info change`)
} else {
RED.log.warn(`[ai-resync] Failed to re-sync node ${nodeId}: ${result.error}`)
}
res.json(output)
} catch (e) {
output.error = e.message || 'Internal server error'
RED.log.error(`[ai-resync] Error: ${e.message}`)
res.status(500).json(output)
}
})
// Register HTTP endpoint for generating semantic description from logic
// eslint-disable-next-line consistent-return
RED.httpAdmin.post('/ai/generate-description', async (req, res) => {
let output = { success: false, description: '', error: '' }
try {
const {
nodeId,
nodeType,
nodeName,
currentConfig
} = req.body
if (!nodeId || !currentConfig) {
output.error = 'Node ID and config are required'
return res.status(400).json(output)
}
// Validate AI configuration
const aiConfig = connector.getConfig()
const validation = connector.validateConfig(aiConfig)
if (!validation.valid) {
output.error = `AI not configured: ${validation.errors.join(', ')}`
return res.status(500).json(output)
}
audit.emit({
event_type: 'prompt_received',
prompt_id: audit.generatePromptId(),
prompt_text: `(generate-description for ${nodeType} ${nodeId})`,
ai_mode: 'description_generation'
}, req)
// Generate semantic description using AI connector
const result = await connector.generateDescription(
nodeId,
nodeType,
currentConfig,
false,
nodeName
)
output = result
if (result.success) {
RED.log.info(`[ai-generate-description] Generated description for node ${nodeId}`)
} else {
RED.log.warn(`[ai-generate-description] Failed for node ${nodeId}: ${result.error}`)
}
res.json(output)
} catch (e) {
output.error = e.message || 'Internal server error'
RED.log.error(`[ai-generate-description] Error: ${e.message}`)
res.status(500).json(output)
}
})
// Returns auto-verify settings + auto-deploy gate result to the editor.
RED.httpAdmin.get('/ai/auto-verify/settings', (req, res) => {
res.json({ success: true, settings: getAutoVerifySettings() })
})
// Self-correction endpoint: takes the current (failing) flow, the correction
// diff, and the error summary; asks the AI for a corrected flow.
// The AI's "existing flow context" is built ONLY from currentFlow — we do not
// accept (and do not look at) any other client-supplied flow context, so the
// model never sees unrelated tabs from the user's project.
// eslint-disable-next-line consistent-return
RED.httpAdmin.post('/ai/auto-verify/correct', async (req, res) => {
let output = { success: false, flow: [], error: '' }
try {
const {
prompt = '',
currentFlow = [],
correctionDiff = '',
errorSummary = '',
errorSignature = '',
attemptNumber = 1,
phase = ''
} = req.body || {}
if (!errorSummary && !correctionDiff) {
output.error = 'errorSummary or correctionDiff is required'
return res.status(400).json(output)
}
const aiConfig = connector.getConfig()
const validation = connector.validateConfig(aiConfig)
if (!validation.valid) {
output.error = `AI not configured: ${validation.errors.join(', ')}`
return res.status(500).json(output)
}
const correctionContext = {
nodes: Array.isArray(currentFlow) ? currentFlow : [],
customNodes: summarized()
}
const correctionRules = getEnv('AUTO_VERIFY_CORRECTION_PROMPT', '')
.replace(/\{customNodes\}/g, JSON.stringify(summarized()))
.replace(/\{CUSTOM_NODES\}/g, getEnv('CUSTOM_NODES', ''))
// The failing flow is fed to the AI via correctionContext.nodes — which
// the connector's buildUserPrompt() embeds via USER_PROMPT_WITH_CONTEXT.
// Don't duplicate it here; just give the model the rules + error context.
// `phase` tells the AI whether this is a static syntax fix (required
// fields, JSONata syntax, wires, config refs) or a runtime fix (errors
// emitted by the running flow).
const correctionPrompt = [
correctionRules,
'',
'CORRECTION CONTEXT',
`ORIGINAL USER REQUEST: ${prompt || '(not provided)'}`,
`PHASE: ${phase || 'unspecified'}`,
`ATTEMPT NUMBER: ${attemptNumber}`,
`ERROR SIGNATURE: ${errorSignature || '(none)'}`,
'',
`ERROR SUMMARY:\n${errorSummary || '(none)'}`,
'',
`CORRECTION DIFF (changes between the prior attempt and this attempt):\n${correctionDiff || '(none)'}`
].join('\n')
const result = await connector.generateFlow(correctionPrompt, correctionContext)
output = result
if (result.success) {
RED.log.info(`[ai-auto-verify] Correction attempt ${attemptNumber} returned ${result.flow.length} nodes`)
} else {
RED.log.warn(`[ai-auto-verify] Correction attempt ${attemptNumber} failed: ${result.error}`)
}
res.json(output)
} catch (e) {
output.error = e.message || 'Internal server error'
RED.log.error(`[ai-auto-verify] Error: ${e.message}`)
res.status(500).json(output)
}
})
// Audit event sink for the client-driven auto-verify loop. Server stamps the
// user identity FRESH on each arrival (per spec) before routing through the
// audit module. Fire-and-forget: respond immediately, never block the client.
// eslint-disable-next-line consistent-return
RED.httpAdmin.post('/ai/audit/event', (req, res) => {
const body = req.body || {}
const allowedTypes = new Set([
'prompt_received',
'auto_verify_attempt',
'auto_verify_complete'
])
if (!body.event_type || !allowedTypes.has(body.event_type)) {
return res.status(400).json({ success: false, error: 'invalid event_type' })
}
audit.emit(body, req)
res.json({ success: true })
})
// Register plugin with Node-RED
RED.plugins.registerPlugin('node-red-semantic-flow-language', {
type: 'node-red-theme'
})
await ensurePackageInfoCache()
RED.log.info('[semantic-flow-language] Plugin registered with AI flow builder endpoint')
}