Releases: HaroldPetersInskipp/node-red-contrib-chatgpt
Releases · HaroldPetersInskipp/node-red-contrib-chatgpt
node-red-contrib-chatgpt-v1.2.12
Change Log
[1.2.12] - 2023-11-7
Changed
- Include function calling with GPT-4 model with the
msg.functions
property - Updated documentation
node-red-contrib-chatgpt-v1.2.11
Change Log
[1.2.11] - 2023-05-10
Changed
- Include
msg
with errors, so thatcatch
nodes can be used properly. - Updated the example
generate-node-red-nodes.json
to support Mac OS generating Node-RED nodes and importing them directly into the editor automatically.
node-red-contrib-chatgpt-v1.2.10
Change Log
[1.2.10] - 2023-04-14
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.
node-red-contrib-chatgpt-v1.2.9
Change Log
[1.2.9] - 2023-04-08
Added
- 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.
node-red-contrib-chatgpt-v1.2.8
Change Log
[1.2.8] - 2023-03-29
Changed
- Updated help information displayed in the info tab of the editor. (improved formatting and documentation)
node-red-contrib-chatgpt-v1.2.7
Change Log
[1.2.7] - 2023-03-29
Changed
- Fixed properly setting
msg.topic
to lowercase characters.
node-red-contrib-chatgpt-v1.2.6
Change Log
[1.2.6] - 2023-03-29
Changed
- Removed unnecessary whitespace in node edit dialog.
node-red-contrib-chatgpt-v1.2.5
Change Log
[1.2.5] - 2023-03-29
Added
- Included support for using case insensitive topics input with the
msg.topic
property.
Changed
- 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
formating and usage information.
node-red-contrib-chatgpt-v1.2.4
Change Log
[1.2.4] - 2023-03-28
Added
- 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 (
msg.max_tokens
support is now documented) - Updated the included example to demonstrate new features
node-red-contrib-chatgpt-v1.2.3
Change log
[1.2.3] - 2023-03-23
Added
- Included preliminary support for for additional OpenAI model
gpt-4
. Setmsg.topic
togpt4
to select the new model. (untested, currently still on waitlist) - Included support for new message property
msg.suffix
, is expected to be a string that comes after a completion of inserted text. - Included support for new message property
msg.n
, is expected to be an number, the number of responses desired. - Included support for new message property
msg.temperature
, is expected to be an number, the sampling temperature to use. - Included support for new message property
msg.top_p
, is expected to be an number, an alternative to sampling with temperature. - Included support for new message property
msg.presence_penalty
, is expected to be an number, positive values penalize new tokens based on whether they appear in the text so far, increasing the model's likelihood to talk about new topics. - Included support for new message property
msg.frequency_penalty
, is expected to be an number, positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model's likelihood to repeat the same line verbatim. - Included support for new message property
msg.echo
, is expected to be a boolean, echos back the prompt in addition to the completion when set totrue
.
Changed
- Improved help information displayed in the info tab of the editor