|
1 | 1 | # Changelog
|
2 | 2 |
|
| 3 | +## 1.0-beta-1.11 | May 22, 2024 |
| 4 | + |
| 5 | +- Added `GPT-4o` chat completions model. |
| 6 | + |
3 | 7 | ## 1.0-beta-1.10
|
4 | 8 |
|
5 |
| - - Fixed an issue where different cache keys could be generated with the same input resulting in different responses. |
| 9 | +- Fixed an issue where different cache keys could be generated with the same input resulting in different responses. |
6 | 10 |
|
7 | 11 | ## 1.0-beta-1.9
|
8 | 12 |
|
9 |
| - - Removed the `completions` and `edit` endpoints which have been deprecated by OpenAI. Feeds using these endpoints will be automatically converted to the `chat/completions` endpoint. |
| 13 | +- Removed the `completions` and `edit` endpoints which have been deprecated by OpenAI. Feeds using these endpoints will be automatically converted to the `chat/completions` endpoint. |
10 | 14 |
|
11 | 15 | ## 1.0-beta-1.8
|
12 | 16 |
|
13 |
| - - Added `gpt-4-1106-preview` as an available model for the Chat Completions endpoint. |
14 |
| - - Added a filter to the OpenAI response. |
| 17 | +- Added `gpt-4-1106-preview` as an available model for the Chat Completions endpoint. |
| 18 | +- Added a filter to the OpenAI response. |
15 | 19 |
|
16 | 20 | ## 1.0-beta-1.7
|
17 | 21 |
|
18 |
| - - Added a `log_debug()` call before any request. |
19 |
| - - Fixed issue where the `gf_openai_chat_completions_message` filter hook would not run during merge tag replacement. |
| 22 | +- Added a `log_debug()` call before any request. |
| 23 | +- Fixed issue where the `gf_openai_chat_completions_message` filter hook would not run during merge tag replacement. |
20 | 24 |
|
21 | 25 | ## 1.0-beta-1.6
|
22 | 26 |
|
23 |
| - - Added new `gf_openai_chat_completions_message` PHP filter hook. |
24 |
| - - Fixed potential PHP notices. |
| 27 | +- Added new `gf_openai_chat_completions_message` PHP filter hook. |
| 28 | +- Fixed potential PHP notices. |
25 | 29 |
|
26 | 30 | ## 1.0-beta-1.5
|
27 | 31 |
|
28 |
| - - Added OpenAI feeds to form export/import. (Closes #17) |
29 |
| - - Added support for re-ordering feeds. (Closes #10) |
| 32 | +- Added OpenAI feeds to form export/import. (Closes #17) |
| 33 | +- Added support for re-ordering feeds. (Closes #10) |
30 | 34 |
|
31 | 35 | ## 1.0-beta-1.4
|
32 | 36 |
|
33 |
| - - Added gpt-3.5-turbo-16k as an available model for the Chat Completions endpoint. |
| 37 | +- Added gpt-3.5-turbo-16k as an available model for the Chat Completions endpoint. |
34 | 38 |
|
35 | 39 | ## 1.0-beta-1.3
|
36 | 40 |
|
37 |
| - - Added `gpt-4` and `gpt-4-32k` as available models for the Chat Completions endpoint. |
| 41 | +- Added `gpt-4` and `gpt-4-32k` as available models for the Chat Completions endpoint. |
38 | 42 |
|
39 | 43 | ## 1.0-beta-1.2
|
40 | 44 |
|
41 |
| - - Fixed issue where merge tag completion values would sometimes be blank. |
42 |
| - - Fixed issue where non-OpenAI merge tag output for multi-input field types such as checkboxes could get inadvertently cleared out. |
43 |
| - - Fixed issues with Open AI feed not duplicating when form was duplicated. |
44 |
| - - Added hook `gf_openai_post_save_result_to_field` to trigger after OpenAI result is stored on an entry. |
45 |
| - - Added new `gf_openai_cache_responses` filter hook that can be used to disable caching OpenAI responses. |
| 45 | +- Fixed issue where merge tag completion values would sometimes be blank. |
| 46 | +- Fixed issue where non-OpenAI merge tag output for multi-input field types such as checkboxes could get inadvertently cleared out. |
| 47 | +- Fixed issues with Open AI feed not duplicating when form was duplicated. |
| 48 | +- Added hook `gf_openai_post_save_result_to_field` to trigger after OpenAI result is stored on an entry. |
| 49 | +- Added new `gf_openai_cache_responses` filter hook that can be used to disable caching OpenAI responses. |
46 | 50 |
|
47 | 51 | ## 1.0-beta-1.1
|
48 | 52 |
|
49 |
| - - Fixed potential PHP warnings/errors caused by `php-scoper`. |
| 53 | +- Fixed potential PHP warnings/errors caused by `php-scoper`. |
50 | 54 |
|
51 | 55 | ## 1.0-beta-1
|
52 | 56 |
|
53 |
| - - Added a Gravity Flow Step Type for OpenAI. Credit: @Idealien |
54 |
| - - Added new `nl2br` modifier that can be used on merge tags to convert newlines into `<br />`'s. This is useful when outputting plain-text responses into HTML using Live Merge Tags. Example: `@{:1:openai_feed_5,nl2br}`. |
55 |
| - - Fixed issue where feed conditional logic and feed status (active/inactive) were not checked during validation for the Moderations endpoint. |
56 |
| - - Fixed issue where feed status was not taken into account during merge tag replacement so inactive feeds would still have their merge tags replaced. |
57 |
| - - Added new Chat Completions endpoint. |
58 |
| - - Added auto-updater powered by GitHub Releases. |
59 |
| - - Added new capabilities to grant/deny access to OpenAI settings and to uninstall it. |
| 57 | +- Added a Gravity Flow Step Type for OpenAI. Credit: @Idealien |
| 58 | +- Added new `nl2br` modifier that can be used on merge tags to convert newlines into `<br />`'s. This is useful when outputting plain-text responses into HTML using Live Merge Tags. Example: `@{:1:openai_feed_5,nl2br}`. |
| 59 | +- Fixed issue where feed conditional logic and feed status (active/inactive) were not checked during validation for the Moderations endpoint. |
| 60 | +- Fixed issue where feed status was not taken into account during merge tag replacement so inactive feeds would still have their merge tags replaced. |
| 61 | +- Added new Chat Completions endpoint. |
| 62 | +- Added auto-updater powered by GitHub Releases. |
| 63 | +- Added new capabilities to grant/deny access to OpenAI settings and to uninstall it. |
60 | 64 |
|
61 | 65 | ## 1.0-alpha-1.8
|
62 | 66 |
|
63 |
| - - Fixed an issue where GP Populate Anything values would not get populated when Gravity Forms OpenAI was enabled. |
64 |
| - - Fixed an issue where OpenAI responses could be displayed in the Form Editor. |
| 67 | +- Fixed an issue where GP Populate Anything values would not get populated when Gravity Forms OpenAI was enabled. |
| 68 | +- Fixed an issue where OpenAI responses could be displayed in the Form Editor. |
65 | 69 |
|
66 | 70 | ## 1.0-alpha-1.7
|
67 | 71 |
|
68 |
| - - Removed `Perk: True` from the plugin header to address potential PHP errors. |
| 72 | +- Removed `Perk: True` from the plugin header to address potential PHP errors. |
69 | 73 |
|
70 | 74 | ## 1.0-alpha-1.6
|
71 | 75 |
|
72 |
| - - Added new `raw` modifier that can be used in the feed merge tags. This allows for fetching specific properties from the OpenAI response. Example usage: `{:1:openai_feed_2,raw[usage/total_tokens]}` |
| 76 | +- Added new `raw` modifier that can be used in the feed merge tags. This allows for fetching specific properties from the OpenAI response. Example usage: `{:1:openai_feed_2,raw[usage/total_tokens]}` |
73 | 77 |
|
74 | 78 | ## 1.0-alpha-1.5
|
75 | 79 |
|
76 |
| - - Updated feed merge tags to evaluate feed conditional logic (if configured) before returning a result. If the conditional logic does not evaluate as truthy, an empty string is returned. |
77 |
| - - Updated secret key setting to be a masked input. |
| 80 | +- Updated feed merge tags to evaluate feed conditional logic (if configured) before returning a result. If the conditional logic does not evaluate as truthy, an empty string is returned. |
| 81 | +- Updated secret key setting to be a masked input. |
78 | 82 |
|
79 | 83 | ## 1.0-alpha-1.4
|
80 | 84 |
|
81 |
| - - Added new `gf_openai_request_body` PHP filter for customizing requests that go to OpenAI. |
82 |
| - - Added support for using custom/fine-tuned models when using the Completions endpoint. |
| 85 | +- Added new `gf_openai_request_body` PHP filter for customizing requests that go to OpenAI. |
| 86 | +- Added support for using custom/fine-tuned models when using the Completions endpoint. |
83 | 87 |
|
84 | 88 | ## 1.0-alpha-1.3
|
85 | 89 |
|
86 |
| - - Added kses/strip_all_tags (depending on if field is using rich text editor) to `maybe_save_result_to_field()`. |
87 |
| - - Fixed regression where field map values weren't correctly saving (they would work in notifications/confirmation, however). |
88 |
| - - Added conditional logic for feeds. |
| 90 | +- Added kses/strip_all_tags (depending on if field is using rich text editor) to `maybe_save_result_to_field()`. |
| 91 | +- Fixed regression where field map values weren't correctly saving (they would work in notifications/confirmation, however). |
| 92 | +- Added conditional logic for feeds. |
89 | 93 |
|
90 | 94 | ## 1.0-alpha-1.2
|
91 | 95 |
|
92 |
| - - Fixed issue where results in mapped fields would not show in notifications. |
| 96 | +- Fixed issue where results in mapped fields would not show in notifications. |
93 | 97 |
|
94 | 98 | ## 1.0-alpha-1.1
|
95 | 99 |
|
96 |
| - - Added README.md and copyright. |
97 |
| - - Added changelog. |
98 |
| - - Added GPLv2 license and removed unneeded files. |
| 100 | +- Added README.md and copyright. |
| 101 | +- Added changelog. |
| 102 | +- Added GPLv2 license and removed unneeded files. |
99 | 103 |
|
100 | 104 | ## 1.0-alpha-1
|
101 | 105 |
|
102 |
| - - Hello World! |
| 106 | +- Hello World! |
0 commit comments