@memberjunction/server 2.127.0 → 2.128.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.
|
@@ -1292,6 +1292,7 @@ export declare class MJAIPromptModel_ {
|
|
|
1292
1292
|
ParallelConfigParam?: string;
|
|
1293
1293
|
_mj__CreatedAt: Date;
|
|
1294
1294
|
_mj__UpdatedAt: Date;
|
|
1295
|
+
EffortLevel?: number;
|
|
1295
1296
|
Prompt: string;
|
|
1296
1297
|
Model: string;
|
|
1297
1298
|
Vendor?: string;
|
|
@@ -1310,6 +1311,7 @@ export declare class CreateMJAIPromptModelInput {
|
|
|
1310
1311
|
ParallelizationMode?: string;
|
|
1311
1312
|
ParallelCount?: number;
|
|
1312
1313
|
ParallelConfigParam: string | null;
|
|
1314
|
+
EffortLevel: number | null;
|
|
1313
1315
|
}
|
|
1314
1316
|
export declare class UpdateMJAIPromptModelInput {
|
|
1315
1317
|
ID: string;
|
|
@@ -1324,6 +1326,7 @@ export declare class UpdateMJAIPromptModelInput {
|
|
|
1324
1326
|
ParallelizationMode?: string;
|
|
1325
1327
|
ParallelCount?: number;
|
|
1326
1328
|
ParallelConfigParam?: string | null;
|
|
1329
|
+
EffortLevel?: number | null;
|
|
1327
1330
|
OldValues___?: KeyValuePairInput[];
|
|
1328
1331
|
}
|
|
1329
1332
|
export declare class RunMJAIPromptModelViewResult {
|