File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 1
1
# Release Notes for chatgpt-integration
2
2
3
+ ## 4.0.7 - 2025-02-26
4
+
5
+ ### Fixed
6
+ - Error for new plugin installations (Issue #6 )
7
+
3
8
## 4.0.6 - 2024-04-15
4
9
5
10
### Added
Original file line number Diff line number Diff line change @@ -40,6 +40,9 @@ protected function createTables(): void
40
40
'id ' => $ this ->primaryKey (),
41
41
'label ' => $ this ->string ()->notNull (),
42
42
'promptTemplate ' => $ this ->string ()->notNull (),
43
+ 'temperature ' => $ this ->float ()->defaultValue (1 ),
44
+ 'frequencyPenalty ' => $ this ->float ()->defaultValue (0 ),
45
+ 'presencePenalty ' => $ this ->float ()->defaultValue (0 ),
43
46
'enabled ' => $ this ->boolean ()->notNull ()->defaultValue (true ),
44
47
'dateCreated ' => $ this ->dateTime ()->notNull (),
45
48
'dateUpdated ' => $ this ->dateTime ()->notNull (),
You can’t perform that action at this time.
0 commit comments