@memberjunction/server 2.67.0 → 2.68.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.
@@ -1004,9 +1004,9 @@ export declare class AIPrompt_ {
1004
1004
  StopSequences?: string;
1005
1005
  IncludeLogProbs?: boolean;
1006
1006
  TopLogProbs?: number;
1007
+ FailoverStrategy: string;
1007
1008
  FailoverMaxAttempts?: number;
1008
1009
  FailoverDelaySeconds?: number;
1009
- FailoverStrategy: string;
1010
1010
  FailoverModelStrategy: string;
1011
1011
  FailoverErrorScope: string;
1012
1012
  Template: string;
@@ -1068,9 +1068,9 @@ export declare class CreateAIPromptInput {
1068
1068
  StopSequences: string | null;
1069
1069
  IncludeLogProbs?: boolean | null;
1070
1070
  TopLogProbs: number | null;
1071
+ FailoverStrategy?: string;
1071
1072
  FailoverMaxAttempts?: number | null;
1072
1073
  FailoverDelaySeconds?: number | null;
1073
- FailoverStrategy?: string;
1074
1074
  FailoverModelStrategy?: string;
1075
1075
  FailoverErrorScope?: string;
1076
1076
  }
@@ -1118,9 +1118,9 @@ export declare class UpdateAIPromptInput {
1118
1118
  StopSequences?: string | null;
1119
1119
  IncludeLogProbs?: boolean | null;
1120
1120
  TopLogProbs?: number | null;
1121
+ FailoverStrategy?: string;
1121
1122
  FailoverMaxAttempts?: number | null;
1122
1123
  FailoverDelaySeconds?: number | null;
1123
- FailoverStrategy?: string;
1124
1124
  FailoverModelStrategy?: string;
1125
1125
  FailoverErrorScope?: string;
1126
1126
  OldValues___?: KeyValuePairInput[];
@@ -9868,9 +9868,9 @@ export declare class AIPromptRun_ {
9868
9868
  FailoverAttempts?: number;
9869
9869
  FailoverErrors?: string;
9870
9870
  FailoverDurations?: string;
9871
+ OriginalModelID?: string;
9871
9872
  OriginalRequestStartTime?: Date;
9872
9873
  TotalFailoverDuration?: number;
9873
- OriginalModelID?: string;
9874
9874
  Prompt: string;
9875
9875
  Model: string;
9876
9876
  Vendor: string;
@@ -9936,9 +9936,9 @@ export declare class CreateAIPromptRunInput {
9936
9936
  FailoverAttempts?: number | null;
9937
9937
  FailoverErrors: string | null;
9938
9938
  FailoverDurations: string | null;
9939
+ OriginalModelID: string | null;
9939
9940
  OriginalRequestStartTime: Date | null;
9940
9941
  TotalFailoverDuration: number | null;
9941
- OriginalModelID: string | null;
9942
9942
  }
9943
9943
  export declare class UpdateAIPromptRunInput {
9944
9944
  ID: string;
@@ -9996,9 +9996,9 @@ export declare class UpdateAIPromptRunInput {
9996
9996
  FailoverAttempts?: number | null;
9997
9997
  FailoverErrors?: string | null;
9998
9998
  FailoverDurations?: string | null;
9999
+ OriginalModelID?: string | null;
9999
10000
  OriginalRequestStartTime?: Date | null;
10000
10001
  TotalFailoverDuration?: number | null;
10001
- OriginalModelID?: string | null;
10002
10002
  OldValues___?: KeyValuePairInput[];
10003
10003
  }
10004
10004
  export declare class RunAIPromptRunViewResult {