We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 955fe2d commit f556e4aCopy full SHA for f556e4a
CHANGELOG.md
@@ -1,5 +1,10 @@
1
# Release Notes for chatgpt-integration
2
3
+## 4.0.7 - 2025-02-26
4
+
5
+### Fixed
6
+- Error for new plugin installations (Issue #6)
7
8
## 4.0.6 - 2024-04-15
9
10
### Added
src/migrations/Install.php
@@ -40,6 +40,9 @@ protected function createTables(): void
40
'id' => $this->primaryKey(),
41
'label' => $this->string()->notNull(),
42
'promptTemplate' => $this->string()->notNull(),
43
+ 'temperature' => $this->float()->defaultValue(1),
44
+ 'frequencyPenalty' => $this->float()->defaultValue(0),
45
+ 'presencePenalty' => $this->float()->defaultValue(0),
46
'enabled' => $this->boolean()->notNull()->defaultValue(true),
47
'dateCreated' => $this->dateTime()->notNull(),
48
'dateUpdated' => $this->dateTime()->notNull(),
0 commit comments