@trii/types 2.10.488 → 2.10.489

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -94,6 +94,9 @@ exports.defaultNodeNodeAIChatBot = {
94
94
  labelKey: 'NODE_AICHATBOT_LLM_TEMPERATURE',
95
95
  optional: true,
96
96
  default: 0.7,
97
+ step: 0.1,
98
+ numberMin: 0,
99
+ numberMax: 1
97
100
  },
98
101
  {
99
102
  type: 'number',
@@ -102,6 +105,9 @@ exports.defaultNodeNodeAIChatBot = {
102
105
  labelKey: 'NODE_AICHATBOT_LLM_MAX_TOKENS',
103
106
  optional: true,
104
107
  default: 1000,
108
+ step: 1,
109
+ numberMin: 1,
110
+ numberMax: 4096
105
111
  },
106
112
  {
107
113
  type: 'number',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.488",
3
+ "version": "2.10.489",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",