@memberjunction/server 2.127.0 → 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.
|
@@ -8087,6 +8087,7 @@ let MJAIPromptModel_ = class MJAIPromptModel_ {
|
|
|
8087
8087
|
ParallelConfigParam;
|
|
8088
8088
|
_mj__CreatedAt;
|
|
8089
8089
|
_mj__UpdatedAt;
|
|
8090
|
+
EffortLevel;
|
|
8090
8091
|
Prompt;
|
|
8091
8092
|
Model;
|
|
8092
8093
|
Vendor;
|
|
@@ -8158,6 +8159,10 @@ __decorate([
|
|
|
8158
8159
|
MaxLength(10),
|
|
8159
8160
|
__metadata("design:type", Date)
|
|
8160
8161
|
], MJAIPromptModel_.prototype, "_mj__UpdatedAt", void 0);
|
|
8162
|
+
__decorate([
|
|
8163
|
+
Field(() => Int, { nullable: true, 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.` }),
|
|
8164
|
+
__metadata("design:type", Number)
|
|
8165
|
+
], MJAIPromptModel_.prototype, "EffortLevel", void 0);
|
|
8161
8166
|
__decorate([
|
|
8162
8167
|
Field(),
|
|
8163
8168
|
MaxLength(510),
|
|
@@ -8195,6 +8200,7 @@ let CreateMJAIPromptModelInput = class CreateMJAIPromptModelInput {
|
|
|
8195
8200
|
ParallelizationMode;
|
|
8196
8201
|
ParallelCount;
|
|
8197
8202
|
ParallelConfigParam;
|
|
8203
|
+
EffortLevel;
|
|
8198
8204
|
};
|
|
8199
8205
|
__decorate([
|
|
8200
8206
|
Field({ nullable: true }),
|
|
@@ -8244,6 +8250,10 @@ __decorate([
|
|
|
8244
8250
|
Field({ nullable: true }),
|
|
8245
8251
|
__metadata("design:type", String)
|
|
8246
8252
|
], CreateMJAIPromptModelInput.prototype, "ParallelConfigParam", void 0);
|
|
8253
|
+
__decorate([
|
|
8254
|
+
Field(() => Int, { nullable: true }),
|
|
8255
|
+
__metadata("design:type", Number)
|
|
8256
|
+
], CreateMJAIPromptModelInput.prototype, "EffortLevel", void 0);
|
|
8247
8257
|
CreateMJAIPromptModelInput = __decorate([
|
|
8248
8258
|
InputType()
|
|
8249
8259
|
], CreateMJAIPromptModelInput);
|
|
@@ -8261,6 +8271,7 @@ let UpdateMJAIPromptModelInput = class UpdateMJAIPromptModelInput {
|
|
|
8261
8271
|
ParallelizationMode;
|
|
8262
8272
|
ParallelCount;
|
|
8263
8273
|
ParallelConfigParam;
|
|
8274
|
+
EffortLevel;
|
|
8264
8275
|
OldValues___;
|
|
8265
8276
|
};
|
|
8266
8277
|
__decorate([
|
|
@@ -8311,6 +8322,10 @@ __decorate([
|
|
|
8311
8322
|
Field({ nullable: true }),
|
|
8312
8323
|
__metadata("design:type", String)
|
|
8313
8324
|
], UpdateMJAIPromptModelInput.prototype, "ParallelConfigParam", void 0);
|
|
8325
|
+
__decorate([
|
|
8326
|
+
Field(() => Int, { nullable: true }),
|
|
8327
|
+
__metadata("design:type", Number)
|
|
8328
|
+
], UpdateMJAIPromptModelInput.prototype, "EffortLevel", void 0);
|
|
8314
8329
|
__decorate([
|
|
8315
8330
|
Field(() => [KeyValuePairInput], { nullable: true }),
|
|
8316
8331
|
__metadata("design:type", Array)
|