Install with
npm install node-red-contrib-custom-chatgpt
or using the built in palette manager.
Recent updates (since last update post)
Added:
- Included additional example.
generate-node-red-nodes.json
demonstrates how to generate Node-RED nodes and import them directly into the editor automatically (proof of concept for Windows). OpenAI models will write the code for you based on simple parameters. - Included support for using a proxy to access the OpenAI API. Set the
BaseUrl
property value to the proxy/vpn service's url that you would like to use. - Included support for using case insensitive topics input with the
msg.topic
property. - Included the ability to set the behavior Topic in the node's edit dialog. Once set-up the node can be controlled with as little as a single required message property
msg.payload
. Behavior can still be set dynamically by selectingread from msg.topic
and setting themsg.topic
to the desired behavior.
Changed:
- Updated help information displayed in the info tab of the editor. (improved formatting and documentation)
- Fixed properly setting
msg.topic
to lowercase characters. - Removed unnecessary whitespace in node edit dialog.
- Updated help information displayed in the info tab of the editor. (less verbose "details" section)
- Updated error message and removed unnecessary whitespace.
- Updated
README.md
formatting and usage information. - Updated help information displayed in the info tab of the editor. (
msg.max_tokens
support is now documented) - Updated the included example to demonstrate new features.