@memberjunction/server 2.38.0 → 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.
@@ -19146,6 +19146,7 @@ let AIModel_ = class AIModel_ {
19146
19146
  ModelSelectionInsights;
19147
19147
  InputTokenLimit;
19148
19148
  SupportedResponseFormats;
19149
+ SupportsEffortLevel;
19149
19150
  AIModelType;
19150
19151
  AIActions_DefaultModelIDArray;
19151
19152
  EntityDocuments_AIModelIDArray;
@@ -19235,6 +19236,10 @@ __decorate([
19235
19236
  MaxLength(200),
19236
19237
  __metadata("design:type", String)
19237
19238
  ], AIModel_.prototype, "SupportedResponseFormats", void 0);
19239
+ __decorate([
19240
+ Field(() => Boolean, { 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.` }),
19241
+ __metadata("design:type", Boolean)
19242
+ ], AIModel_.prototype, "SupportsEffortLevel", void 0);
19238
19243
  __decorate([
19239
19244
  Field(),
19240
19245
  MaxLength(100),
@@ -19295,6 +19300,7 @@ let CreateAIModelInput = class CreateAIModelInput {
19295
19300
  ModelSelectionInsights;
19296
19301
  InputTokenLimit;
19297
19302
  SupportedResponseFormats;
19303
+ SupportsEffortLevel;
19298
19304
  };
19299
19305
  __decorate([
19300
19306
  Field({ nullable: true }),
@@ -19352,6 +19358,10 @@ __decorate([
19352
19358
  Field({ nullable: true }),
19353
19359
  __metadata("design:type", String)
19354
19360
  ], CreateAIModelInput.prototype, "SupportedResponseFormats", void 0);
19361
+ __decorate([
19362
+ Field(() => Boolean, { nullable: true }),
19363
+ __metadata("design:type", Boolean)
19364
+ ], CreateAIModelInput.prototype, "SupportsEffortLevel", void 0);
19355
19365
  CreateAIModelInput = __decorate([
19356
19366
  InputType()
19357
19367
  ], CreateAIModelInput);
@@ -19372,6 +19382,7 @@ let UpdateAIModelInput = class UpdateAIModelInput {
19372
19382
  ModelSelectionInsights;
19373
19383
  InputTokenLimit;
19374
19384
  SupportedResponseFormats;
19385
+ SupportsEffortLevel;
19375
19386
  OldValues___;
19376
19387
  };
19377
19388
  __decorate([
@@ -19434,6 +19445,10 @@ __decorate([
19434
19445
  Field({ nullable: true }),
19435
19446
  __metadata("design:type", String)
19436
19447
  ], UpdateAIModelInput.prototype, "SupportedResponseFormats", void 0);
19448
+ __decorate([
19449
+ Field(() => Boolean, { nullable: true }),
19450
+ __metadata("design:type", Boolean)
19451
+ ], UpdateAIModelInput.prototype, "SupportsEffortLevel", void 0);
19437
19452
  __decorate([
19438
19453
  Field(() => [KeyValuePairInput], { nullable: true }),
19439
19454
  __metadata("design:type", Array)