@flowfuse/nr-assistant
Version:
FlowFuse Node-RED assistant plugin
54 lines (35 loc) • 1.4 kB
Markdown
A Node-RED plugin to assist FlowFuse users
```bash
npm install @flowfuse/nr-assistant
```
Client-side portion of the plugin is in `index.js`. The server side code is in `index.js`
This plugin is designed to assist users of the FlowFuse platform by providing tools to aid development of their Node-RED project.
The capabilities it adds to Node-RED can be found in Node-RED editor on the main toolbar and within the function node editor.
* Requires the settings.js file to contain the following:
```json
{
"flowforge": {
"assistant": {
"enabled": true,
"url": "https://", // URL of the AI service
"token": "", // API token for the AI service
"requestTimeout": 60000 // Timeout value for the AI service request
}
}
}
```
* Only function node generation is currently supported.
* Only a single function node can be generated at a time.
* The codelens feature is only supported for the on-message editor.
While in development, the version number of this package will remain at `0.x.y`.
`x` will be incremented for breaking changes, `y` for new features and patches.
Once plugin and API are stable, the version number will be updated to 1.0.0 and full SemVer rules will be applied.
Apache-2.0