@memberjunction/server 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.
@@ -2991,6 +2991,7 @@ export declare class AIModel_ {
2991
2991
  ModelSelectionInsights?: string;
2992
2992
  InputTokenLimit?: number;
2993
2993
  SupportedResponseFormats: string;
2994
+ SupportsEffortLevel: boolean;
2994
2995
  AIModelType: string;
2995
2996
  AIActions_DefaultModelIDArray: AIAction_[];
2996
2997
  EntityDocuments_AIModelIDArray: EntityDocument_[];
@@ -3017,6 +3018,7 @@ export declare class CreateAIModelInput {
3017
3018
  ModelSelectionInsights: string | null;
3018
3019
  InputTokenLimit: number | null;
3019
3020
  SupportedResponseFormats?: string;
3021
+ SupportsEffortLevel?: boolean;
3020
3022
  }
3021
3023
  export declare class UpdateAIModelInput {
3022
3024
  ID: string;
@@ -3034,6 +3036,7 @@ export declare class UpdateAIModelInput {
3034
3036
  ModelSelectionInsights?: string | null;
3035
3037
  InputTokenLimit?: number | null;
3036
3038
  SupportedResponseFormats?: string;
3039
+ SupportsEffortLevel?: boolean;
3037
3040
  OldValues___?: KeyValuePairInput[];
3038
3041
  }
3039
3042
  export declare class RunAIModelViewResult {