@memberjunction/server 2.54.0 → 2.55.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.
@@ -9394,6 +9394,7 @@ export declare class AIPromptRun_ {
9394
9394
  ResponseFormat?: string;
9395
9395
  LogProbs?: boolean;
9396
9396
  TopLogProbs?: number;
9397
+ DescendantCost?: number;
9397
9398
  Prompt: string;
9398
9399
  Model: string;
9399
9400
  Vendor: string;
@@ -9440,6 +9441,7 @@ export declare class CreateAIPromptRunInput {
9440
9441
  ResponseFormat: string | null;
9441
9442
  LogProbs: boolean | null;
9442
9443
  TopLogProbs: number | null;
9444
+ DescendantCost: number | null;
9443
9445
  }
9444
9446
  export declare class UpdateAIPromptRunInput {
9445
9447
  ID: string;
@@ -9479,6 +9481,7 @@ export declare class UpdateAIPromptRunInput {
9479
9481
  ResponseFormat?: string | null;
9480
9482
  LogProbs?: boolean | null;
9481
9483
  TopLogProbs?: number | null;
9484
+ DescendantCost?: number | null;
9482
9485
  OldValues___?: KeyValuePairInput[];
9483
9486
  }
9484
9487
  export declare class RunAIPromptRunViewResult {