@memberjunction/core-entities 2.126.1 → 2.128.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.
|
@@ -6115,6 +6115,7 @@ export declare const AIPromptModelSchema: z.ZodObject<{
|
|
|
6115
6115
|
ParallelConfigParam: z.ZodNullable<z.ZodString>;
|
|
6116
6116
|
__mj_CreatedAt: z.ZodDate;
|
|
6117
6117
|
__mj_UpdatedAt: z.ZodDate;
|
|
6118
|
+
EffortLevel: z.ZodNullable<z.ZodNumber>;
|
|
6118
6119
|
Prompt: z.ZodString;
|
|
6119
6120
|
Model: z.ZodString;
|
|
6120
6121
|
Vendor: z.ZodNullable<z.ZodString>;
|
|
@@ -6131,6 +6132,7 @@ export declare const AIPromptModelSchema: z.ZodObject<{
|
|
|
6131
6132
|
ParallelizationMode?: "None" | "ConfigParam" | "StaticCount";
|
|
6132
6133
|
ParallelCount?: number;
|
|
6133
6134
|
ParallelConfigParam?: string;
|
|
6135
|
+
EffortLevel?: number;
|
|
6134
6136
|
VendorID?: string;
|
|
6135
6137
|
ConfigurationID?: string;
|
|
6136
6138
|
Configuration?: string;
|
|
@@ -6150,6 +6152,7 @@ export declare const AIPromptModelSchema: z.ZodObject<{
|
|
|
6150
6152
|
ParallelizationMode?: "None" | "ConfigParam" | "StaticCount";
|
|
6151
6153
|
ParallelCount?: number;
|
|
6152
6154
|
ParallelConfigParam?: string;
|
|
6155
|
+
EffortLevel?: number;
|
|
6153
6156
|
VendorID?: string;
|
|
6154
6157
|
ConfigurationID?: string;
|
|
6155
6158
|
Configuration?: string;
|
|
@@ -28228,6 +28231,7 @@ export declare class AIPromptModelEntity extends BaseEntity<AIPromptModelEntityT
|
|
|
28228
28231
|
Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
28229
28232
|
/**
|
|
28230
28233
|
* Validate() method override for MJ: AI Prompt Models entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
|
|
28234
|
+
* * EffortLevel: Effort level must be between 1 and 100 whenever it is provided. This ensures that effort values stay within the allowed range.
|
|
28231
28235
|
* * ExecutionGroup: This rule ensures that the ExecutionGroup value must be zero or a positive number. Negative values are not allowed.
|
|
28232
28236
|
* * ParallelCount: This rule ensures that the ParallelCount value must always be at least 1.
|
|
28233
28237
|
* * Priority: This rule ensures that the priority value must be zero or a positive number; in other words, priority cannot be negative.
|
|
@@ -28238,6 +28242,13 @@ export declare class AIPromptModelEntity extends BaseEntity<AIPromptModelEntityT
|
|
|
28238
28242
|
*/
|
|
28239
28243
|
Validate(): ValidationResult;
|
|
28240
28244
|
/**
|
|
28245
|
+
* Effort level must be between 1 and 100 whenever it is provided. This ensures that effort values stay within the allowed range.
|
|
28246
|
+
* @param result - the ValidationResult object to add any errors or warnings to
|
|
28247
|
+
* @public
|
|
28248
|
+
* @method
|
|
28249
|
+
*/
|
|
28250
|
+
ValidateEffortLevelRange(result: ValidationResult): void;
|
|
28251
|
+
/**
|
|
28241
28252
|
* This rule ensures that the ExecutionGroup value must be zero or a positive number. Negative values are not allowed.
|
|
28242
28253
|
* @param result - the ValidationResult object to add any errors or warnings to
|
|
28243
28254
|
* @public
|
|
@@ -28396,6 +28407,14 @@ export declare class AIPromptModelEntity extends BaseEntity<AIPromptModelEntityT
|
|
|
28396
28407
|
*/
|
|
28397
28408
|
get __mj_UpdatedAt(): Date;
|
|
28398
28409
|
/**
|
|
28410
|
+
* * Field Name: EffortLevel
|
|
28411
|
+
* * Display Name: Effort Level
|
|
28412
|
+
* * SQL Data Type: int
|
|
28413
|
+
* * Description: Model-specific effort level override (1-100, where 1=minimal effort, 100=maximum effort). Allows customizing effort level per model - useful when a more capable model can use lower effort for tasks that require higher effort from lesser models. Takes precedence over agent and prompt effort levels but can be overridden by runtime parameters.
|
|
28414
|
+
*/
|
|
28415
|
+
get EffortLevel(): number | null;
|
|
28416
|
+
set EffortLevel(value: number | null);
|
|
28417
|
+
/**
|
|
28399
28418
|
* * Field Name: Prompt
|
|
28400
28419
|
* * Display Name: Prompt
|
|
28401
28420
|
* * SQL Data Type: nvarchar(255)
|