-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
270 lines (214 loc) · 7.72 KB
/
index.js
File metadata and controls
270 lines (214 loc) · 7.72 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
// Node-RED plugin entry point (Node.js/server-side)
// Registers AI flow builder HTTP endpoints and serves resources
const getEnv = require('./resources/config-loader')
const axios = require('axios')
let customNodes = []
const summarized = () => customNodes.map(n => ({
name: n.name,
fields: Object.keys(n.schema)
}))
module.exports = async function (RED) {
if (typeof getEnv.setSettings === 'function') {
getEnv.setSettings(RED.settings)
}
// 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)
}
context.customNodes = summarized()
// Generate flow using AI connector
const result = await connector.generateFlow(prompt, context)
output = result
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)
}
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)
}
// 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)
}
})
// 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')
}