@memberjunction/core-entities 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.
@@ -728,6 +728,7 @@ export declare const AIModelSchema: z.ZodObject<{
728
728
  ModelSelectionInsights: z.ZodNullable<z.ZodString>;
729
729
  InputTokenLimit: z.ZodNullable<z.ZodNumber>;
730
730
  SupportedResponseFormats: z.ZodString;
731
+ SupportsEffortLevel: z.ZodBoolean;
731
732
  AIModelType: z.ZodString;
732
733
  }, "strip", z.ZodTypeAny, {
733
734
  ID?: string;
@@ -747,6 +748,7 @@ export declare const AIModelSchema: z.ZodObject<{
747
748
  ModelSelectionInsights?: string;
748
749
  InputTokenLimit?: number;
749
750
  SupportedResponseFormats?: string;
751
+ SupportsEffortLevel?: boolean;
750
752
  AIModelType?: string;
751
753
  }, {
752
754
  ID?: string;
@@ -766,6 +768,7 @@ export declare const AIModelSchema: z.ZodObject<{
766
768
  ModelSelectionInsights?: string;
767
769
  InputTokenLimit?: number;
768
770
  SupportedResponseFormats?: string;
771
+ SupportsEffortLevel?: boolean;
769
772
  AIModelType?: string;
770
773
  }>;
771
774
  export type AIModelEntityType = z.infer<typeof AIModelSchema>;
@@ -8880,6 +8883,15 @@ export declare class AIModelEntity extends BaseEntity<AIModelEntityType> {
8880
8883
  get SupportedResponseFormats(): string;
8881
8884
  set SupportedResponseFormats(value: string);
8882
8885
  /**
8886
+ * * Field Name: SupportsEffortLevel
8887
+ * * Display Name: Supports Effort Level
8888
+ * * SQL Data Type: bit
8889
+ * * Default Value: 0
8890
+ * * 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.
8891
+ */
8892
+ get SupportsEffortLevel(): boolean;
8893
+ set SupportsEffortLevel(value: boolean);
8894
+ /**
8883
8895
  * * Field Name: AIModelType
8884
8896
  * * Display Name: AIModel Type
8885
8897
  * * SQL Data Type: nvarchar(50)