Skip to content

Releases: HaroldPetersInskipp/node-red-contrib-chatgpt

node-red-contrib-chatgpt-v1.2.12

07 Nov 14:14
bab4922
Compare
Choose a tag to compare

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

10 May 21:27
682a970
Compare
Choose a tag to compare

Change Log

[1.2.11] - 2023-05-10

Changed

  • Include msg with errors, so that catch 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

16 Apr 18:37
6b0dfce
Compare
Choose a tag to compare

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

08 Apr 19:24
e2174ab
Compare
Choose a tag to compare

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

29 Mar 21:52
5cc84d6
Compare
Choose a tag to compare

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

29 Mar 20:53
9165b03
Compare
Choose a tag to compare

Change Log

[1.2.7] - 2023-03-29

Changed

  • Fixed properly setting msg.topic to lowercase characters.

node-red-contrib-chatgpt-v1.2.6

29 Mar 15:14
8950d15
Compare
Choose a tag to compare

Change Log

[1.2.6] - 2023-03-29

Changed

  • Removed unnecessary whitespace in node edit dialog.

node-red-contrib-chatgpt-v1.2.5

29 Mar 14:50
1a01537
Compare
Choose a tag to compare

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

29 Mar 01:45
88ca52d
Compare
Choose a tag to compare

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 selecting read from msg.topic and setting the msg.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

23 Mar 16:38
7f9fc37
Compare
Choose a tag to compare

Change log

[1.2.3] - 2023-03-23

Added

  • Included preliminary support for for additional OpenAI model gpt-4. Set msg.topic to gpt4 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 to true.

Changed

  • Improved help information displayed in the info tab of the editor