@memberjunction/core-entities 2.37.1 → 2.39.0
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.
|
@@ -1144,6 +1144,12 @@ exports.AIModelSchema = zod_1.z.object({
|
|
|
1144
1144
|
* * SQL Data Type: nvarchar(100)
|
|
1145
1145
|
* * Default Value: Any
|
|
1146
1146
|
* * Description: A comma-delimited string indicating the supported response formats for the AI model. Options include Any, Text, Markdown, JSON, and ModelSpecific. Defaults to Any if not specified.`),
|
|
1147
|
+
SupportsEffortLevel: zod_1.z.boolean().describe(`
|
|
1148
|
+
* * Field Name: SupportsEffortLevel
|
|
1149
|
+
* * Display Name: Supports Effort Level
|
|
1150
|
+
* * SQL Data Type: bit
|
|
1151
|
+
* * Default Value: 0
|
|
1152
|
+
* * Description: Specifies if the model supports the concept of an effort level. For example, for a reasoning model, the options often include low, medium, and high.`),
|
|
1147
1153
|
AIModelType: zod_1.z.string().describe(`
|
|
1148
1154
|
* * Field Name: AIModelType
|
|
1149
1155
|
* * Display Name: AIModel Type
|
|
@@ -12671,6 +12677,19 @@ let AIModelEntity = class AIModelEntity extends core_1.BaseEntity {
|
|
|
12671
12677
|
this.Set('SupportedResponseFormats', value);
|
|
12672
12678
|
}
|
|
12673
12679
|
/**
|
|
12680
|
+
* * Field Name: SupportsEffortLevel
|
|
12681
|
+
* * Display Name: Supports Effort Level
|
|
12682
|
+
* * SQL Data Type: bit
|
|
12683
|
+
* * Default Value: 0
|
|
12684
|
+
* * Description: Specifies if the model supports the concept of an effort level. For example, for a reasoning model, the options often include low, medium, and high.
|
|
12685
|
+
*/
|
|
12686
|
+
get SupportsEffortLevel() {
|
|
12687
|
+
return this.Get('SupportsEffortLevel');
|
|
12688
|
+
}
|
|
12689
|
+
set SupportsEffortLevel(value) {
|
|
12690
|
+
this.Set('SupportsEffortLevel', value);
|
|
12691
|
+
}
|
|
12692
|
+
/**
|
|
12674
12693
|
* * Field Name: AIModelType
|
|
12675
12694
|
* * Display Name: AIModel Type
|
|
12676
12695
|
* * SQL Data Type: nvarchar(50)
|