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 11# Release Notes for chatgpt-integration
22
3+ ## 4.0.7 - 2025-02-26
4+
5+ ### Fixed
6+ - Error for new plugin installations (Issue #6 )
7+
38## 4.0.6 - 2024-04-15
49
510### Added
Original file line number Diff line number Diff line change @@ -40,6 +40,9 @@ protected function createTables(): void
4040 'id ' => $ this ->primaryKey (),
4141 'label ' => $ this ->string ()->notNull (),
4242 'promptTemplate ' => $ this ->string ()->notNull (),
43+ 'temperature ' => $ this ->float ()->defaultValue (1 ),
44+ 'frequencyPenalty ' => $ this ->float ()->defaultValue (0 ),
45+ 'presencePenalty ' => $ this ->float ()->defaultValue (0 ),
4346 'enabled ' => $ this ->boolean ()->notNull ()->defaultValue (true ),
4447 'dateCreated ' => $ this ->dateTime ()->notNull (),
4548 'dateUpdated ' => $ this ->dateTime ()->notNull (),
You can’t perform that action at this time.
0 commit comments