Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flowfuse/nr-assistant
https://github.com/flowfuse/nr-assistant
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/flowfuse/nr-assistant
- Owner: FlowFuse
- License: apache-2.0
- Created: 2024-07-01T12:52:41.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-10-21T06:22:20.000Z (25 days ago)
- Last Synced: 2024-10-23T01:55:12.119Z (23 days ago)
- Language: HTML
- Size: 103 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FlowFuse Node-RED Assistant
A Node-RED plugin to assist FlowFuse users
## Installation
```bash
npm install @flowfuse/nr-assistant
```## Development
Client-side portion of the plugin is in `index.js`. The server side code is in `index.js`
## About
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.
## NOTES:
* 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
}
}
}
```## Limitations
* 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.## Versioning
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.
## License
Apache-2.0