@memberjunction/server 2.61.0 → 2.62.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.
|
@@ -992,6 +992,11 @@ export declare class AIPrompt_ {
|
|
|
992
992
|
StopSequences?: string;
|
|
993
993
|
IncludeLogProbs?: boolean;
|
|
994
994
|
TopLogProbs?: number;
|
|
995
|
+
FailoverMaxAttempts?: number;
|
|
996
|
+
FailoverDelaySeconds?: number;
|
|
997
|
+
FailoverStrategy: string;
|
|
998
|
+
FailoverModelStrategy: string;
|
|
999
|
+
FailoverErrorScope: string;
|
|
995
1000
|
Template: string;
|
|
996
1001
|
Category?: string;
|
|
997
1002
|
Type: string;
|
|
@@ -1051,6 +1056,11 @@ export declare class CreateAIPromptInput {
|
|
|
1051
1056
|
StopSequences: string | null;
|
|
1052
1057
|
IncludeLogProbs?: boolean | null;
|
|
1053
1058
|
TopLogProbs: number | null;
|
|
1059
|
+
FailoverMaxAttempts?: number | null;
|
|
1060
|
+
FailoverDelaySeconds?: number | null;
|
|
1061
|
+
FailoverStrategy?: string;
|
|
1062
|
+
FailoverModelStrategy?: string;
|
|
1063
|
+
FailoverErrorScope?: string;
|
|
1054
1064
|
}
|
|
1055
1065
|
export declare class UpdateAIPromptInput {
|
|
1056
1066
|
ID: string;
|
|
@@ -1096,6 +1106,11 @@ export declare class UpdateAIPromptInput {
|
|
|
1096
1106
|
StopSequences?: string | null;
|
|
1097
1107
|
IncludeLogProbs?: boolean | null;
|
|
1098
1108
|
TopLogProbs?: number | null;
|
|
1109
|
+
FailoverMaxAttempts?: number | null;
|
|
1110
|
+
FailoverDelaySeconds?: number | null;
|
|
1111
|
+
FailoverStrategy?: string;
|
|
1112
|
+
FailoverModelStrategy?: string;
|
|
1113
|
+
FailoverErrorScope?: string;
|
|
1099
1114
|
OldValues___?: KeyValuePairInput[];
|
|
1100
1115
|
}
|
|
1101
1116
|
export declare class RunAIPromptViewResult {
|
|
@@ -9838,11 +9853,18 @@ export declare class AIPromptRun_ {
|
|
|
9838
9853
|
TotalRetryDurationMS?: number;
|
|
9839
9854
|
ValidationAttempts?: string;
|
|
9840
9855
|
ValidationSummary?: string;
|
|
9856
|
+
FailoverAttempts?: number;
|
|
9857
|
+
FailoverErrors?: string;
|
|
9858
|
+
FailoverDurations?: string;
|
|
9859
|
+
OriginalRequestStartTime?: Date;
|
|
9860
|
+
TotalFailoverDuration?: number;
|
|
9861
|
+
OriginalModelID?: string;
|
|
9841
9862
|
Prompt: string;
|
|
9842
9863
|
Model: string;
|
|
9843
9864
|
Vendor: string;
|
|
9844
9865
|
Agent?: string;
|
|
9845
9866
|
Configuration?: string;
|
|
9867
|
+
OriginalModel?: string;
|
|
9846
9868
|
MJ_AIPromptRuns_ParentIDArray: AIPromptRun_[];
|
|
9847
9869
|
AIResultCache_PromptRunIDArray: AIResultCache_[];
|
|
9848
9870
|
}
|
|
@@ -9899,6 +9921,12 @@ export declare class CreateAIPromptRunInput {
|
|
|
9899
9921
|
TotalRetryDurationMS: number | null;
|
|
9900
9922
|
ValidationAttempts: string | null;
|
|
9901
9923
|
ValidationSummary: string | null;
|
|
9924
|
+
FailoverAttempts?: number | null;
|
|
9925
|
+
FailoverErrors: string | null;
|
|
9926
|
+
FailoverDurations: string | null;
|
|
9927
|
+
OriginalRequestStartTime: Date | null;
|
|
9928
|
+
TotalFailoverDuration: number | null;
|
|
9929
|
+
OriginalModelID: string | null;
|
|
9902
9930
|
}
|
|
9903
9931
|
export declare class UpdateAIPromptRunInput {
|
|
9904
9932
|
ID: string;
|
|
@@ -9953,6 +9981,12 @@ export declare class UpdateAIPromptRunInput {
|
|
|
9953
9981
|
TotalRetryDurationMS?: number | null;
|
|
9954
9982
|
ValidationAttempts?: string | null;
|
|
9955
9983
|
ValidationSummary?: string | null;
|
|
9984
|
+
FailoverAttempts?: number | null;
|
|
9985
|
+
FailoverErrors?: string | null;
|
|
9986
|
+
FailoverDurations?: string | null;
|
|
9987
|
+
OriginalRequestStartTime?: Date | null;
|
|
9988
|
+
TotalFailoverDuration?: number | null;
|
|
9989
|
+
OriginalModelID?: string | null;
|
|
9956
9990
|
OldValues___?: KeyValuePairInput[];
|
|
9957
9991
|
}
|
|
9958
9992
|
export declare class RunAIPromptRunViewResult {
|