@salesforce/lds-adapters-service-einsteinllm 1.333.0 → 1.335.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.
- package/dist/es/es2018/service-einsteinllm.js +741 -347
- package/dist/es/es2018/types/src/generated/adapters/getOutputLanguages.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +3 -1
- package/dist/es/es2018/types/src/generated/resources/getEinsteinPromptTemplateOutputLanguagesByPromptTemplateDevName.d.ts +19 -0
- package/dist/es/es2018/types/src/generated/types/EinsteinPromptTemplateSupportedLanguageErrorRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/EinsteinPromptTemplateSupportedLanguageRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/EinsteinPromptTemplateVersionOutputLanguagesRepresentation.d.ts +43 -0
- package/package.json +4 -4
- package/sfdc/index.js +690 -284
- package/src/raml/api.raml +66 -1
- package/src/raml/luvio.raml +7 -0
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* For full license text, see the LICENSE.txt file
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import { serializeStructuredKey, ingestShape, deepFreeze, buildNetworkSnapshotCachePolicy as buildNetworkSnapshotCachePolicy$
|
|
7
|
+
import { serializeStructuredKey, ingestShape, deepFreeze, buildNetworkSnapshotCachePolicy as buildNetworkSnapshotCachePolicy$3, StoreKeyMap, createResourceParams as createResourceParams$6, typeCheckConfig as typeCheckConfig$6 } from '@luvio/engine';
|
|
8
8
|
|
|
9
9
|
const { hasOwnProperty: ObjectPrototypeHasOwnProperty } = Object.prototype;
|
|
10
10
|
const { keys: ObjectKeys$1, create: ObjectCreate$1 } = Object;
|
|
@@ -168,7 +168,7 @@ function createLink(ref) {
|
|
|
168
168
|
};
|
|
169
169
|
}
|
|
170
170
|
|
|
171
|
-
function validate$
|
|
171
|
+
function validate$q(obj, path = 'EinsteinLlmEmbeddingsAdditionalConfigInputRepresentation') {
|
|
172
172
|
const v_error = (() => {
|
|
173
173
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
174
174
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -212,7 +212,7 @@ function validate$n(obj, path = 'EinsteinLlmEmbeddingsAdditionalConfigInputRepre
|
|
|
212
212
|
return v_error === undefined ? null : v_error;
|
|
213
213
|
}
|
|
214
214
|
|
|
215
|
-
function validate$
|
|
215
|
+
function validate$p(obj, path = 'WrappedListString') {
|
|
216
216
|
const v_error = (() => {
|
|
217
217
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
218
218
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -233,14 +233,14 @@ function validate$m(obj, path = 'WrappedListString') {
|
|
|
233
233
|
return v_error === undefined ? null : v_error;
|
|
234
234
|
}
|
|
235
235
|
|
|
236
|
-
function validate$
|
|
236
|
+
function validate$o(obj, path = 'EinsteinLlmEmbeddingsInputRepresentation') {
|
|
237
237
|
const v_error = (() => {
|
|
238
238
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
239
239
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
240
240
|
}
|
|
241
241
|
const obj_additionalConfig = obj.additionalConfig;
|
|
242
242
|
const path_additionalConfig = path + '.additionalConfig';
|
|
243
|
-
const referencepath_additionalConfigValidationError = validate$
|
|
243
|
+
const referencepath_additionalConfigValidationError = validate$q(obj_additionalConfig, path_additionalConfig);
|
|
244
244
|
if (referencepath_additionalConfigValidationError !== null) {
|
|
245
245
|
let message = 'Object doesn\'t match EinsteinLlmEmbeddingsAdditionalConfigInputRepresentation (at "' + path_additionalConfig + '")\n';
|
|
246
246
|
message += referencepath_additionalConfigValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -248,7 +248,7 @@ function validate$l(obj, path = 'EinsteinLlmEmbeddingsInputRepresentation') {
|
|
|
248
248
|
}
|
|
249
249
|
const obj_prompts = obj.prompts;
|
|
250
250
|
const path_prompts = path + '.prompts';
|
|
251
|
-
const referencepath_promptsValidationError = validate$
|
|
251
|
+
const referencepath_promptsValidationError = validate$p(obj_prompts, path_prompts);
|
|
252
252
|
if (referencepath_promptsValidationError !== null) {
|
|
253
253
|
let message = 'Object doesn\'t match WrappedListString (at "' + path_prompts + '")\n';
|
|
254
254
|
message += referencepath_promptsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -265,8 +265,8 @@ function validate$l(obj, path = 'EinsteinLlmEmbeddingsInputRepresentation') {
|
|
|
265
265
|
return v_error === undefined ? null : v_error;
|
|
266
266
|
}
|
|
267
267
|
|
|
268
|
-
const VERSION$
|
|
269
|
-
function validate$
|
|
268
|
+
const VERSION$g = "5ed5ccc6fa6f15691ec0fc1080e41fe6";
|
|
269
|
+
function validate$n(obj, path = 'EinsteinLlmEmbeddingItemRepresentation') {
|
|
270
270
|
const v_error = (() => {
|
|
271
271
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
272
272
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -287,10 +287,10 @@ function validate$k(obj, path = 'EinsteinLlmEmbeddingItemRepresentation') {
|
|
|
287
287
|
})();
|
|
288
288
|
return v_error === undefined ? null : v_error;
|
|
289
289
|
}
|
|
290
|
-
const select$
|
|
290
|
+
const select$m = function EinsteinLlmEmbeddingItemRepresentationSelect() {
|
|
291
291
|
return {
|
|
292
292
|
kind: 'Fragment',
|
|
293
|
-
version: VERSION$
|
|
293
|
+
version: VERSION$g,
|
|
294
294
|
private: [],
|
|
295
295
|
selections: [
|
|
296
296
|
{
|
|
@@ -305,7 +305,7 @@ const select$i = function EinsteinLlmEmbeddingItemRepresentationSelect() {
|
|
|
305
305
|
]
|
|
306
306
|
};
|
|
307
307
|
};
|
|
308
|
-
function equals$
|
|
308
|
+
function equals$g(existing, incoming) {
|
|
309
309
|
const existing_index = existing.index;
|
|
310
310
|
const incoming_index = incoming.index;
|
|
311
311
|
if (!(existing_index === incoming_index)) {
|
|
@@ -324,9 +324,9 @@ function equals$d(existing, incoming) {
|
|
|
324
324
|
return true;
|
|
325
325
|
}
|
|
326
326
|
|
|
327
|
-
const TTL$
|
|
328
|
-
const VERSION$
|
|
329
|
-
function validate$
|
|
327
|
+
const TTL$5 = 100;
|
|
328
|
+
const VERSION$f = "d9873651f09d29764ef4d4231eb653d7";
|
|
329
|
+
function validate$m(obj, path = 'EinsteinLlmEmbeddingsRepresentation') {
|
|
330
330
|
const v_error = (() => {
|
|
331
331
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
332
332
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -339,7 +339,7 @@ function validate$j(obj, path = 'EinsteinLlmEmbeddingsRepresentation') {
|
|
|
339
339
|
for (let i = 0; i < obj_embeddings.length; i++) {
|
|
340
340
|
const obj_embeddings_item = obj_embeddings[i];
|
|
341
341
|
const path_embeddings_item = path_embeddings + '[' + i + ']';
|
|
342
|
-
const referencepath_embeddings_itemValidationError = validate$
|
|
342
|
+
const referencepath_embeddings_itemValidationError = validate$n(obj_embeddings_item, path_embeddings_item);
|
|
343
343
|
if (referencepath_embeddings_itemValidationError !== null) {
|
|
344
344
|
let message = 'Object doesn\'t match EinsteinLlmEmbeddingItemRepresentation (at "' + path_embeddings_item + '")\n';
|
|
345
345
|
message += referencepath_embeddings_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -363,15 +363,15 @@ function validate$j(obj, path = 'EinsteinLlmEmbeddingsRepresentation') {
|
|
|
363
363
|
})();
|
|
364
364
|
return v_error === undefined ? null : v_error;
|
|
365
365
|
}
|
|
366
|
-
const RepresentationType$
|
|
367
|
-
function normalize$
|
|
366
|
+
const RepresentationType$5 = 'EinsteinLlmEmbeddingsRepresentation';
|
|
367
|
+
function normalize$5(input, existing, path, luvio, store, timestamp) {
|
|
368
368
|
return input;
|
|
369
369
|
}
|
|
370
|
-
const select$
|
|
371
|
-
const { selections: EinsteinLlmEmbeddingItemRepresentation__selections, opaque: EinsteinLlmEmbeddingItemRepresentation__opaque, } = select$
|
|
370
|
+
const select$l = function EinsteinLlmEmbeddingsRepresentationSelect() {
|
|
371
|
+
const { selections: EinsteinLlmEmbeddingItemRepresentation__selections, opaque: EinsteinLlmEmbeddingItemRepresentation__opaque, } = select$m();
|
|
372
372
|
return {
|
|
373
373
|
kind: 'Fragment',
|
|
374
|
-
version: VERSION$
|
|
374
|
+
version: VERSION$f,
|
|
375
375
|
private: [],
|
|
376
376
|
selections: [
|
|
377
377
|
{
|
|
@@ -388,11 +388,11 @@ const select$h = function EinsteinLlmEmbeddingsRepresentationSelect() {
|
|
|
388
388
|
]
|
|
389
389
|
};
|
|
390
390
|
};
|
|
391
|
-
function equals$
|
|
391
|
+
function equals$f(existing, incoming) {
|
|
392
392
|
const existing_embeddings = existing.embeddings;
|
|
393
393
|
const incoming_embeddings = incoming.embeddings;
|
|
394
394
|
const equals_embeddings_items = equalsArray(existing_embeddings, incoming_embeddings, (existing_embeddings_item, incoming_embeddings_item) => {
|
|
395
|
-
if (!(equals$
|
|
395
|
+
if (!(equals$g(existing_embeddings_item, incoming_embeddings_item))) {
|
|
396
396
|
return false;
|
|
397
397
|
}
|
|
398
398
|
});
|
|
@@ -411,44 +411,44 @@ function equals$c(existing, incoming) {
|
|
|
411
411
|
}
|
|
412
412
|
return true;
|
|
413
413
|
}
|
|
414
|
-
const ingest$
|
|
414
|
+
const ingest$5 = function EinsteinLlmEmbeddingsRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
415
415
|
if (process.env.NODE_ENV !== 'production') {
|
|
416
|
-
const validateError = validate$
|
|
416
|
+
const validateError = validate$m(input);
|
|
417
417
|
if (validateError !== null) {
|
|
418
418
|
throw validateError;
|
|
419
419
|
}
|
|
420
420
|
}
|
|
421
421
|
const key = path.fullPath;
|
|
422
|
-
const ttlToUse = TTL$
|
|
423
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$
|
|
422
|
+
const ttlToUse = TTL$5;
|
|
423
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$5, "EinsteinLLM", VERSION$f, RepresentationType$5, equals$f);
|
|
424
424
|
return createLink(key);
|
|
425
425
|
};
|
|
426
|
-
function getTypeCacheKeys$
|
|
426
|
+
function getTypeCacheKeys$5(rootKeySet, luvio, input, fullPathFactory) {
|
|
427
427
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
428
428
|
const rootKey = fullPathFactory();
|
|
429
429
|
rootKeySet.set(rootKey, {
|
|
430
430
|
namespace: keyPrefix,
|
|
431
|
-
representationName: RepresentationType$
|
|
431
|
+
representationName: RepresentationType$5,
|
|
432
432
|
mergeable: false
|
|
433
433
|
});
|
|
434
434
|
}
|
|
435
435
|
|
|
436
|
-
function select$
|
|
437
|
-
return select$
|
|
436
|
+
function select$k(luvio, params) {
|
|
437
|
+
return select$l();
|
|
438
438
|
}
|
|
439
|
-
function keyBuilder$
|
|
439
|
+
function keyBuilder$8(luvio, params) {
|
|
440
440
|
return keyPrefix + '::EinsteinLlmEmbeddingsRepresentation:(' + stableJSONStringify(params.body.embeddingsInput.additionalConfig.additionalParameters) + '::' + 'embeddingsInput.additionalConfig.applicationName:' + params.body.embeddingsInput.additionalConfig.applicationName + '::' + (params.body.embeddingsInput.additionalConfig.enablePiiMasking === undefined ? 'embeddingsInput.additionalConfig.enablePiiMasking' : 'embeddingsInput.additionalConfig.enablePiiMasking:' + params.body.embeddingsInput.additionalConfig.enablePiiMasking) + '::' + (params.body.embeddingsInput.additionalConfig.model === undefined ? 'embeddingsInput.additionalConfig.model' : 'embeddingsInput.additionalConfig.model:' + params.body.embeddingsInput.additionalConfig.model) + '::' + 'embeddingsInput.prompts.wrappedListString:' + params.body.embeddingsInput.prompts.wrappedListString + '::' + (params.body.embeddingsInput.provider === undefined ? 'embeddingsInput.provider' : 'embeddingsInput.provider:' + params.body.embeddingsInput.provider) + ')';
|
|
441
441
|
}
|
|
442
|
-
function getResponseCacheKeys$
|
|
443
|
-
getTypeCacheKeys$
|
|
442
|
+
function getResponseCacheKeys$5(storeKeyMap, luvio, resourceParams, response) {
|
|
443
|
+
getTypeCacheKeys$5(storeKeyMap, luvio, response, () => keyBuilder$8(luvio, resourceParams));
|
|
444
444
|
}
|
|
445
|
-
function ingestSuccess$
|
|
445
|
+
function ingestSuccess$5(luvio, resourceParams, response, snapshotRefresh) {
|
|
446
446
|
const { body } = response;
|
|
447
|
-
const key = keyBuilder$
|
|
448
|
-
luvio.storeIngest(key, ingest$
|
|
447
|
+
const key = keyBuilder$8(luvio, resourceParams);
|
|
448
|
+
luvio.storeIngest(key, ingest$5, body);
|
|
449
449
|
const snapshot = luvio.storeLookup({
|
|
450
450
|
recordId: key,
|
|
451
|
-
node: select$
|
|
451
|
+
node: select$k(),
|
|
452
452
|
variables: {},
|
|
453
453
|
}, snapshotRefresh);
|
|
454
454
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -459,22 +459,22 @@ function ingestSuccess$4(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
459
459
|
deepFreeze(snapshot.data);
|
|
460
460
|
return snapshot;
|
|
461
461
|
}
|
|
462
|
-
function ingestError$
|
|
463
|
-
const key = keyBuilder$
|
|
462
|
+
function ingestError$2(luvio, params, error, snapshotRefresh) {
|
|
463
|
+
const key = keyBuilder$8(luvio, params);
|
|
464
464
|
const errorSnapshot = luvio.errorSnapshot(error, snapshotRefresh);
|
|
465
465
|
const storeMetadataParams = {
|
|
466
|
-
ttl: TTL$
|
|
466
|
+
ttl: TTL$5,
|
|
467
467
|
namespace: keyPrefix,
|
|
468
|
-
version: VERSION$
|
|
469
|
-
representationName: RepresentationType$
|
|
468
|
+
version: VERSION$f,
|
|
469
|
+
representationName: RepresentationType$5
|
|
470
470
|
};
|
|
471
471
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
472
472
|
return errorSnapshot;
|
|
473
473
|
}
|
|
474
|
-
function createResourceRequest$
|
|
474
|
+
function createResourceRequest$5(config) {
|
|
475
475
|
const headers = {};
|
|
476
476
|
return {
|
|
477
|
-
baseUri: '/services/data/
|
|
477
|
+
baseUri: '/services/data/v64.0',
|
|
478
478
|
basePath: '/einstein/llm/embeddings',
|
|
479
479
|
method: 'post',
|
|
480
480
|
body: config.body,
|
|
@@ -485,97 +485,97 @@ function createResourceRequest$4(config) {
|
|
|
485
485
|
};
|
|
486
486
|
}
|
|
487
487
|
|
|
488
|
-
const adapterName$
|
|
488
|
+
const adapterName$5 = 'createEmbeddings';
|
|
489
489
|
const createEmbeddings_ConfigPropertyMetadata = [
|
|
490
490
|
generateParamConfigMetadata('embeddingsInput', true, 2 /* Body */, 4 /* Unsupported */),
|
|
491
491
|
];
|
|
492
|
-
const createEmbeddings_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$
|
|
493
|
-
const createResourceParams$
|
|
494
|
-
function keyBuilder$
|
|
495
|
-
const resourceParams = createResourceParams$
|
|
496
|
-
return keyBuilder$
|
|
492
|
+
const createEmbeddings_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$5, createEmbeddings_ConfigPropertyMetadata);
|
|
493
|
+
const createResourceParams$5 = /*#__PURE__*/ createResourceParams$6(createEmbeddings_ConfigPropertyMetadata);
|
|
494
|
+
function keyBuilder$7(luvio, config) {
|
|
495
|
+
const resourceParams = createResourceParams$5(config);
|
|
496
|
+
return keyBuilder$8(luvio, resourceParams);
|
|
497
497
|
}
|
|
498
|
-
function typeCheckConfig$
|
|
498
|
+
function typeCheckConfig$5(untrustedConfig) {
|
|
499
499
|
const config = {};
|
|
500
500
|
const untrustedConfig_embeddingsInput = untrustedConfig.embeddingsInput;
|
|
501
|
-
const referenceEinsteinLlmEmbeddingsInputRepresentationValidationError = validate$
|
|
501
|
+
const referenceEinsteinLlmEmbeddingsInputRepresentationValidationError = validate$o(untrustedConfig_embeddingsInput);
|
|
502
502
|
if (referenceEinsteinLlmEmbeddingsInputRepresentationValidationError === null) {
|
|
503
503
|
config.embeddingsInput = untrustedConfig_embeddingsInput;
|
|
504
504
|
}
|
|
505
505
|
return config;
|
|
506
506
|
}
|
|
507
|
-
function validateAdapterConfig$
|
|
507
|
+
function validateAdapterConfig$5(untrustedConfig, configPropertyNames) {
|
|
508
508
|
if (!untrustedIsObject(untrustedConfig)) {
|
|
509
509
|
return null;
|
|
510
510
|
}
|
|
511
511
|
if (process.env.NODE_ENV !== 'production') {
|
|
512
512
|
validateConfig(untrustedConfig, configPropertyNames);
|
|
513
513
|
}
|
|
514
|
-
const config = typeCheckConfig$
|
|
514
|
+
const config = typeCheckConfig$5(untrustedConfig);
|
|
515
515
|
if (!areRequiredParametersPresent(config, configPropertyNames)) {
|
|
516
516
|
return null;
|
|
517
517
|
}
|
|
518
518
|
return config;
|
|
519
519
|
}
|
|
520
|
-
function adapterFragment$
|
|
521
|
-
createResourceParams$
|
|
522
|
-
return select$
|
|
520
|
+
function adapterFragment$2(luvio, config) {
|
|
521
|
+
createResourceParams$5(config);
|
|
522
|
+
return select$k();
|
|
523
523
|
}
|
|
524
|
-
function onFetchResponseSuccess$
|
|
525
|
-
const snapshot = ingestSuccess$
|
|
524
|
+
function onFetchResponseSuccess$2(luvio, config, resourceParams, response) {
|
|
525
|
+
const snapshot = ingestSuccess$5(luvio, resourceParams, response, {
|
|
526
526
|
config,
|
|
527
|
-
resolve: () => buildNetworkSnapshot$
|
|
527
|
+
resolve: () => buildNetworkSnapshot$5(luvio, config, snapshotRefreshOptions)
|
|
528
528
|
});
|
|
529
529
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
530
530
|
}
|
|
531
|
-
function onFetchResponseError$
|
|
532
|
-
const snapshot = ingestError$
|
|
531
|
+
function onFetchResponseError$2(luvio, config, resourceParams, response) {
|
|
532
|
+
const snapshot = ingestError$2(luvio, resourceParams, response, {
|
|
533
533
|
config,
|
|
534
|
-
resolve: () => buildNetworkSnapshot$
|
|
534
|
+
resolve: () => buildNetworkSnapshot$5(luvio, config, snapshotRefreshOptions)
|
|
535
535
|
});
|
|
536
536
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
537
537
|
}
|
|
538
|
-
function buildNetworkSnapshot$
|
|
539
|
-
const resourceParams = createResourceParams$
|
|
540
|
-
const request = createResourceRequest$
|
|
538
|
+
function buildNetworkSnapshot$5(luvio, config, options) {
|
|
539
|
+
const resourceParams = createResourceParams$5(config);
|
|
540
|
+
const request = createResourceRequest$5(resourceParams);
|
|
541
541
|
return luvio.dispatchResourceRequest(request, options)
|
|
542
542
|
.then((response) => {
|
|
543
|
-
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$
|
|
543
|
+
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$2(luvio, config, resourceParams, response), () => {
|
|
544
544
|
const cache = new StoreKeyMap();
|
|
545
|
-
getResponseCacheKeys$
|
|
545
|
+
getResponseCacheKeys$5(cache, luvio, resourceParams, response.body);
|
|
546
546
|
return cache;
|
|
547
547
|
});
|
|
548
548
|
}, (response) => {
|
|
549
|
-
return luvio.handleErrorResponse(() => onFetchResponseError$
|
|
549
|
+
return luvio.handleErrorResponse(() => onFetchResponseError$2(luvio, config, resourceParams, response));
|
|
550
550
|
});
|
|
551
551
|
}
|
|
552
|
-
function buildNetworkSnapshotCachePolicy$
|
|
553
|
-
return buildNetworkSnapshotCachePolicy$
|
|
552
|
+
function buildNetworkSnapshotCachePolicy$2(context, coercedAdapterRequestContext) {
|
|
553
|
+
return buildNetworkSnapshotCachePolicy$3(context, coercedAdapterRequestContext, buildNetworkSnapshot$5, 'get', false);
|
|
554
554
|
}
|
|
555
|
-
function buildCachedSnapshotCachePolicy$
|
|
555
|
+
function buildCachedSnapshotCachePolicy$2(context, storeLookup) {
|
|
556
556
|
const { luvio, config } = context;
|
|
557
557
|
const selector = {
|
|
558
|
-
recordId: keyBuilder$
|
|
559
|
-
node: adapterFragment$
|
|
558
|
+
recordId: keyBuilder$7(luvio, config),
|
|
559
|
+
node: adapterFragment$2(luvio, config),
|
|
560
560
|
variables: {},
|
|
561
561
|
};
|
|
562
562
|
const cacheSnapshot = storeLookup(selector, {
|
|
563
563
|
config,
|
|
564
|
-
resolve: () => buildNetworkSnapshot$
|
|
564
|
+
resolve: () => buildNetworkSnapshot$5(luvio, config, snapshotRefreshOptions)
|
|
565
565
|
});
|
|
566
566
|
return cacheSnapshot;
|
|
567
567
|
}
|
|
568
568
|
const createEmbeddingsAdapterFactory = (luvio) => function EinsteinLLM__createEmbeddings(untrustedConfig, requestContext) {
|
|
569
|
-
const config = validateAdapterConfig$
|
|
569
|
+
const config = validateAdapterConfig$5(untrustedConfig, createEmbeddings_ConfigPropertyNames);
|
|
570
570
|
// Invalid or incomplete config
|
|
571
571
|
if (config === null) {
|
|
572
572
|
return null;
|
|
573
573
|
}
|
|
574
574
|
return luvio.applyCachePolicy((requestContext || {}), { config, luvio }, // BuildSnapshotContext
|
|
575
|
-
buildCachedSnapshotCachePolicy$
|
|
575
|
+
buildCachedSnapshotCachePolicy$2, buildNetworkSnapshotCachePolicy$2);
|
|
576
576
|
};
|
|
577
577
|
|
|
578
|
-
function validate$
|
|
578
|
+
function validate$l(obj, path = 'EinsteinLlmFeedbackInputRepresentation') {
|
|
579
579
|
const v_error = (() => {
|
|
580
580
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
581
581
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -622,9 +622,9 @@ function validate$i(obj, path = 'EinsteinLlmFeedbackInputRepresentation') {
|
|
|
622
622
|
return v_error === undefined ? null : v_error;
|
|
623
623
|
}
|
|
624
624
|
|
|
625
|
-
const TTL$
|
|
626
|
-
const VERSION$
|
|
627
|
-
function validate$
|
|
625
|
+
const TTL$4 = 100;
|
|
626
|
+
const VERSION$e = "4033328f65865dd5d80c68a7573a4522";
|
|
627
|
+
function validate$k(obj, path = 'EinsteinLlmFeedbackRepresentation') {
|
|
628
628
|
const v_error = (() => {
|
|
629
629
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
630
630
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -637,23 +637,23 @@ function validate$h(obj, path = 'EinsteinLlmFeedbackRepresentation') {
|
|
|
637
637
|
})();
|
|
638
638
|
return v_error === undefined ? null : v_error;
|
|
639
639
|
}
|
|
640
|
-
const RepresentationType$
|
|
641
|
-
function keyBuilder$
|
|
642
|
-
return keyPrefix + '::' + RepresentationType$
|
|
640
|
+
const RepresentationType$4 = 'EinsteinLlmFeedbackRepresentation';
|
|
641
|
+
function keyBuilder$6(luvio, config) {
|
|
642
|
+
return keyPrefix + '::' + RepresentationType$4 + ':' + config.message;
|
|
643
643
|
}
|
|
644
644
|
function keyBuilderFromType$2(luvio, object) {
|
|
645
645
|
const keyParams = {
|
|
646
646
|
message: object.message
|
|
647
647
|
};
|
|
648
|
-
return keyBuilder$
|
|
648
|
+
return keyBuilder$6(luvio, keyParams);
|
|
649
649
|
}
|
|
650
|
-
function normalize$
|
|
650
|
+
function normalize$4(input, existing, path, luvio, store, timestamp) {
|
|
651
651
|
return input;
|
|
652
652
|
}
|
|
653
|
-
const select$
|
|
653
|
+
const select$j = function EinsteinLlmFeedbackRepresentationSelect() {
|
|
654
654
|
return {
|
|
655
655
|
kind: 'Fragment',
|
|
656
|
-
version: VERSION$
|
|
656
|
+
version: VERSION$e,
|
|
657
657
|
private: [],
|
|
658
658
|
selections: [
|
|
659
659
|
{
|
|
@@ -663,7 +663,7 @@ const select$f = function EinsteinLlmFeedbackRepresentationSelect() {
|
|
|
663
663
|
]
|
|
664
664
|
};
|
|
665
665
|
};
|
|
666
|
-
function equals$
|
|
666
|
+
function equals$e(existing, incoming) {
|
|
667
667
|
const existing_message = existing.message;
|
|
668
668
|
const incoming_message = incoming.message;
|
|
669
669
|
if (!(existing_message === incoming_message)) {
|
|
@@ -671,41 +671,41 @@ function equals$b(existing, incoming) {
|
|
|
671
671
|
}
|
|
672
672
|
return true;
|
|
673
673
|
}
|
|
674
|
-
const ingest$
|
|
674
|
+
const ingest$4 = function EinsteinLlmFeedbackRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
675
675
|
if (process.env.NODE_ENV !== 'production') {
|
|
676
|
-
const validateError = validate$
|
|
676
|
+
const validateError = validate$k(input);
|
|
677
677
|
if (validateError !== null) {
|
|
678
678
|
throw validateError;
|
|
679
679
|
}
|
|
680
680
|
}
|
|
681
681
|
const key = keyBuilderFromType$2(luvio, input);
|
|
682
|
-
const ttlToUse = TTL$
|
|
683
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$
|
|
682
|
+
const ttlToUse = TTL$4;
|
|
683
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$4, "EinsteinLLM", VERSION$e, RepresentationType$4, equals$e);
|
|
684
684
|
return createLink(key);
|
|
685
685
|
};
|
|
686
|
-
function getTypeCacheKeys$
|
|
686
|
+
function getTypeCacheKeys$4(rootKeySet, luvio, input, fullPathFactory) {
|
|
687
687
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
688
688
|
const rootKey = keyBuilderFromType$2(luvio, input);
|
|
689
689
|
rootKeySet.set(rootKey, {
|
|
690
690
|
namespace: keyPrefix,
|
|
691
|
-
representationName: RepresentationType$
|
|
691
|
+
representationName: RepresentationType$4,
|
|
692
692
|
mergeable: false
|
|
693
693
|
});
|
|
694
694
|
}
|
|
695
695
|
|
|
696
|
-
function select$
|
|
697
|
-
return select$
|
|
696
|
+
function select$i(luvio, params) {
|
|
697
|
+
return select$j();
|
|
698
698
|
}
|
|
699
|
-
function getResponseCacheKeys$
|
|
700
|
-
getTypeCacheKeys$
|
|
699
|
+
function getResponseCacheKeys$4(storeKeyMap, luvio, resourceParams, response) {
|
|
700
|
+
getTypeCacheKeys$4(storeKeyMap, luvio, response);
|
|
701
701
|
}
|
|
702
|
-
function ingestSuccess$
|
|
702
|
+
function ingestSuccess$4(luvio, resourceParams, response) {
|
|
703
703
|
const { body } = response;
|
|
704
704
|
const key = keyBuilderFromType$2(luvio, body);
|
|
705
|
-
luvio.storeIngest(key, ingest$
|
|
705
|
+
luvio.storeIngest(key, ingest$4, body);
|
|
706
706
|
const snapshot = luvio.storeLookup({
|
|
707
707
|
recordId: key,
|
|
708
|
-
node: select$
|
|
708
|
+
node: select$i(),
|
|
709
709
|
variables: {},
|
|
710
710
|
});
|
|
711
711
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -716,10 +716,10 @@ function ingestSuccess$3(luvio, resourceParams, response) {
|
|
|
716
716
|
deepFreeze(snapshot.data);
|
|
717
717
|
return snapshot;
|
|
718
718
|
}
|
|
719
|
-
function createResourceRequest$
|
|
719
|
+
function createResourceRequest$4(config) {
|
|
720
720
|
const headers = {};
|
|
721
721
|
return {
|
|
722
|
-
baseUri: '/services/data/
|
|
722
|
+
baseUri: '/services/data/v64.0',
|
|
723
723
|
basePath: '/einstein/llm/feedback',
|
|
724
724
|
method: 'post',
|
|
725
725
|
body: config.body,
|
|
@@ -730,45 +730,45 @@ function createResourceRequest$3(config) {
|
|
|
730
730
|
};
|
|
731
731
|
}
|
|
732
732
|
|
|
733
|
-
const adapterName$
|
|
733
|
+
const adapterName$4 = 'createFeedback';
|
|
734
734
|
const createFeedback_ConfigPropertyMetadata = [
|
|
735
735
|
generateParamConfigMetadata('feedbackInput', true, 2 /* Body */, 4 /* Unsupported */),
|
|
736
736
|
];
|
|
737
|
-
const createFeedback_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$
|
|
738
|
-
const createResourceParams$
|
|
739
|
-
function typeCheckConfig$
|
|
737
|
+
const createFeedback_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$4, createFeedback_ConfigPropertyMetadata);
|
|
738
|
+
const createResourceParams$4 = /*#__PURE__*/ createResourceParams$6(createFeedback_ConfigPropertyMetadata);
|
|
739
|
+
function typeCheckConfig$4(untrustedConfig) {
|
|
740
740
|
const config = {};
|
|
741
741
|
const untrustedConfig_feedbackInput = untrustedConfig.feedbackInput;
|
|
742
|
-
const referenceEinsteinLlmFeedbackInputRepresentationValidationError = validate$
|
|
742
|
+
const referenceEinsteinLlmFeedbackInputRepresentationValidationError = validate$l(untrustedConfig_feedbackInput);
|
|
743
743
|
if (referenceEinsteinLlmFeedbackInputRepresentationValidationError === null) {
|
|
744
744
|
config.feedbackInput = untrustedConfig_feedbackInput;
|
|
745
745
|
}
|
|
746
746
|
return config;
|
|
747
747
|
}
|
|
748
|
-
function validateAdapterConfig$
|
|
748
|
+
function validateAdapterConfig$4(untrustedConfig, configPropertyNames) {
|
|
749
749
|
if (!untrustedIsObject(untrustedConfig)) {
|
|
750
750
|
return null;
|
|
751
751
|
}
|
|
752
752
|
if (process.env.NODE_ENV !== 'production') {
|
|
753
753
|
validateConfig(untrustedConfig, configPropertyNames);
|
|
754
754
|
}
|
|
755
|
-
const config = typeCheckConfig$
|
|
755
|
+
const config = typeCheckConfig$4(untrustedConfig);
|
|
756
756
|
if (!areRequiredParametersPresent(config, configPropertyNames)) {
|
|
757
757
|
return null;
|
|
758
758
|
}
|
|
759
759
|
return config;
|
|
760
760
|
}
|
|
761
|
-
function buildNetworkSnapshot$
|
|
762
|
-
const resourceParams = createResourceParams$
|
|
763
|
-
const request = createResourceRequest$
|
|
761
|
+
function buildNetworkSnapshot$4(luvio, config, options) {
|
|
762
|
+
const resourceParams = createResourceParams$4(config);
|
|
763
|
+
const request = createResourceRequest$4(resourceParams);
|
|
764
764
|
return luvio.dispatchResourceRequest(request, options)
|
|
765
765
|
.then((response) => {
|
|
766
766
|
return luvio.handleSuccessResponse(() => {
|
|
767
|
-
const snapshot = ingestSuccess$
|
|
767
|
+
const snapshot = ingestSuccess$4(luvio, resourceParams, response);
|
|
768
768
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
769
769
|
}, () => {
|
|
770
770
|
const cache = new StoreKeyMap();
|
|
771
|
-
getResponseCacheKeys$
|
|
771
|
+
getResponseCacheKeys$4(cache, luvio, resourceParams, response.body);
|
|
772
772
|
return cache;
|
|
773
773
|
});
|
|
774
774
|
}, (response) => {
|
|
@@ -778,16 +778,16 @@ function buildNetworkSnapshot$3(luvio, config, options) {
|
|
|
778
778
|
}
|
|
779
779
|
const createFeedbackAdapterFactory = (luvio) => {
|
|
780
780
|
return function createFeedback(untrustedConfig) {
|
|
781
|
-
const config = validateAdapterConfig$
|
|
781
|
+
const config = validateAdapterConfig$4(untrustedConfig, createFeedback_ConfigPropertyNames);
|
|
782
782
|
// Invalid or incomplete config
|
|
783
783
|
if (config === null) {
|
|
784
784
|
throw new Error('Invalid config for "createFeedback"');
|
|
785
785
|
}
|
|
786
|
-
return buildNetworkSnapshot$
|
|
786
|
+
return buildNetworkSnapshot$4(luvio, config);
|
|
787
787
|
};
|
|
788
788
|
};
|
|
789
789
|
|
|
790
|
-
function validate$
|
|
790
|
+
function validate$j(obj, path = 'EinsteinLlmAdditionalConfigInputRepresentation') {
|
|
791
791
|
const v_error = (() => {
|
|
792
792
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
793
793
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -870,7 +870,7 @@ function validate$g(obj, path = 'EinsteinLlmAdditionalConfigInputRepresentation'
|
|
|
870
870
|
return v_error === undefined ? null : v_error;
|
|
871
871
|
}
|
|
872
872
|
|
|
873
|
-
function validate$
|
|
873
|
+
function validate$i(obj, path = 'EinsteinLlmGenerationsInputRepresentation') {
|
|
874
874
|
const v_error = (() => {
|
|
875
875
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
876
876
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -878,7 +878,7 @@ function validate$f(obj, path = 'EinsteinLlmGenerationsInputRepresentation') {
|
|
|
878
878
|
if (obj.additionalConfig !== undefined) {
|
|
879
879
|
const obj_additionalConfig = obj.additionalConfig;
|
|
880
880
|
const path_additionalConfig = path + '.additionalConfig';
|
|
881
|
-
const referencepath_additionalConfigValidationError = validate$
|
|
881
|
+
const referencepath_additionalConfigValidationError = validate$j(obj_additionalConfig, path_additionalConfig);
|
|
882
882
|
if (referencepath_additionalConfigValidationError !== null) {
|
|
883
883
|
let message = 'Object doesn\'t match EinsteinLlmAdditionalConfigInputRepresentation (at "' + path_additionalConfig + '")\n';
|
|
884
884
|
message += referencepath_additionalConfigValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -901,8 +901,8 @@ function validate$f(obj, path = 'EinsteinLlmGenerationsInputRepresentation') {
|
|
|
901
901
|
return v_error === undefined ? null : v_error;
|
|
902
902
|
}
|
|
903
903
|
|
|
904
|
-
const VERSION$
|
|
905
|
-
function validate$
|
|
904
|
+
const VERSION$d = "9ebac74e6f964c363d5fd1913df363af";
|
|
905
|
+
function validate$h(obj, path = 'EinsteinLlmGenerationsContentQualityRepresentation') {
|
|
906
906
|
const v_error = (() => {
|
|
907
907
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
908
908
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -938,10 +938,10 @@ function validate$e(obj, path = 'EinsteinLlmGenerationsContentQualityRepresentat
|
|
|
938
938
|
})();
|
|
939
939
|
return v_error === undefined ? null : v_error;
|
|
940
940
|
}
|
|
941
|
-
const select$
|
|
941
|
+
const select$h = function EinsteinLlmGenerationsContentQualityRepresentationSelect() {
|
|
942
942
|
return {
|
|
943
943
|
kind: 'Fragment',
|
|
944
|
-
version: VERSION$
|
|
944
|
+
version: VERSION$d,
|
|
945
945
|
private: [],
|
|
946
946
|
selections: [
|
|
947
947
|
{
|
|
@@ -952,7 +952,7 @@ const select$d = function EinsteinLlmGenerationsContentQualityRepresentationSele
|
|
|
952
952
|
]
|
|
953
953
|
};
|
|
954
954
|
};
|
|
955
|
-
function equals$
|
|
955
|
+
function equals$d(existing, incoming) {
|
|
956
956
|
const existing_isToxicityDetected = existing.isToxicityDetected;
|
|
957
957
|
const incoming_isToxicityDetected = incoming.isToxicityDetected;
|
|
958
958
|
// if at least one of these optionals is defined
|
|
@@ -969,8 +969,8 @@ function equals$a(existing, incoming) {
|
|
|
969
969
|
return true;
|
|
970
970
|
}
|
|
971
971
|
|
|
972
|
-
const VERSION$
|
|
973
|
-
function validate$
|
|
972
|
+
const VERSION$c = "77af44a252cb5b45b4d9a8101368d2aa";
|
|
973
|
+
function validate$g(obj, path = 'EinsteinLlmGenerationsSafetyScoreRepresentation') {
|
|
974
974
|
const v_error = (() => {
|
|
975
975
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
976
976
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1174,10 +1174,10 @@ function validate$d(obj, path = 'EinsteinLlmGenerationsSafetyScoreRepresentation
|
|
|
1174
1174
|
})();
|
|
1175
1175
|
return v_error === undefined ? null : v_error;
|
|
1176
1176
|
}
|
|
1177
|
-
const select$
|
|
1177
|
+
const select$g = function EinsteinLlmGenerationsSafetyScoreRepresentationSelect() {
|
|
1178
1178
|
return {
|
|
1179
1179
|
kind: 'Fragment',
|
|
1180
|
-
version: VERSION$
|
|
1180
|
+
version: VERSION$c,
|
|
1181
1181
|
private: [],
|
|
1182
1182
|
selections: [
|
|
1183
1183
|
{
|
|
@@ -1218,7 +1218,7 @@ const select$c = function EinsteinLlmGenerationsSafetyScoreRepresentationSelect(
|
|
|
1218
1218
|
]
|
|
1219
1219
|
};
|
|
1220
1220
|
};
|
|
1221
|
-
function equals$
|
|
1221
|
+
function equals$c(existing, incoming) {
|
|
1222
1222
|
const existing_hateScore = existing.hateScore;
|
|
1223
1223
|
const incoming_hateScore = incoming.hateScore;
|
|
1224
1224
|
// if at least one of these optionals is defined
|
|
@@ -1313,8 +1313,8 @@ function equals$9(existing, incoming) {
|
|
|
1313
1313
|
return true;
|
|
1314
1314
|
}
|
|
1315
1315
|
|
|
1316
|
-
const VERSION$
|
|
1317
|
-
function validate$
|
|
1316
|
+
const VERSION$b = "4a07778ff6c595d91c575188146647a1";
|
|
1317
|
+
function validate$f(obj, path = 'EinsteinLlmGenerationItemRepresentation') {
|
|
1318
1318
|
const v_error = (() => {
|
|
1319
1319
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1320
1320
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1324,7 +1324,7 @@ function validate$c(obj, path = 'EinsteinLlmGenerationItemRepresentation') {
|
|
|
1324
1324
|
const path_contentQualityRepresentation = path + '.contentQualityRepresentation';
|
|
1325
1325
|
let obj_contentQualityRepresentation_union0 = null;
|
|
1326
1326
|
const obj_contentQualityRepresentation_union0_error = (() => {
|
|
1327
|
-
const referencepath_contentQualityRepresentationValidationError = validate$
|
|
1327
|
+
const referencepath_contentQualityRepresentationValidationError = validate$h(obj_contentQualityRepresentation, path_contentQualityRepresentation);
|
|
1328
1328
|
if (referencepath_contentQualityRepresentationValidationError !== null) {
|
|
1329
1329
|
let message = 'Object doesn\'t match EinsteinLlmGenerationsContentQualityRepresentation (at "' + path_contentQualityRepresentation + '")\n';
|
|
1330
1330
|
message += referencepath_contentQualityRepresentationValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1372,7 +1372,7 @@ function validate$c(obj, path = 'EinsteinLlmGenerationItemRepresentation') {
|
|
|
1372
1372
|
const path_safetyScoreRepresentation = path + '.safetyScoreRepresentation';
|
|
1373
1373
|
let obj_safetyScoreRepresentation_union0 = null;
|
|
1374
1374
|
const obj_safetyScoreRepresentation_union0_error = (() => {
|
|
1375
|
-
const referencepath_safetyScoreRepresentationValidationError = validate$
|
|
1375
|
+
const referencepath_safetyScoreRepresentationValidationError = validate$g(obj_safetyScoreRepresentation, path_safetyScoreRepresentation);
|
|
1376
1376
|
if (referencepath_safetyScoreRepresentationValidationError !== null) {
|
|
1377
1377
|
let message = 'Object doesn\'t match EinsteinLlmGenerationsSafetyScoreRepresentation (at "' + path_safetyScoreRepresentation + '")\n';
|
|
1378
1378
|
message += referencepath_safetyScoreRepresentationValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1406,12 +1406,12 @@ function validate$c(obj, path = 'EinsteinLlmGenerationItemRepresentation') {
|
|
|
1406
1406
|
})();
|
|
1407
1407
|
return v_error === undefined ? null : v_error;
|
|
1408
1408
|
}
|
|
1409
|
-
const select$
|
|
1410
|
-
const { selections: EinsteinLlmGenerationsContentQualityRepresentation__selections, opaque: EinsteinLlmGenerationsContentQualityRepresentation__opaque, } = select$
|
|
1411
|
-
const { selections: EinsteinLlmGenerationsSafetyScoreRepresentation__selections, opaque: EinsteinLlmGenerationsSafetyScoreRepresentation__opaque, } = select$
|
|
1409
|
+
const select$f = function EinsteinLlmGenerationItemRepresentationSelect() {
|
|
1410
|
+
const { selections: EinsteinLlmGenerationsContentQualityRepresentation__selections, opaque: EinsteinLlmGenerationsContentQualityRepresentation__opaque, } = select$h();
|
|
1411
|
+
const { selections: EinsteinLlmGenerationsSafetyScoreRepresentation__selections, opaque: EinsteinLlmGenerationsSafetyScoreRepresentation__opaque, } = select$g();
|
|
1412
1412
|
return {
|
|
1413
1413
|
kind: 'Fragment',
|
|
1414
|
-
version: VERSION$
|
|
1414
|
+
version: VERSION$b,
|
|
1415
1415
|
private: [],
|
|
1416
1416
|
selections: [
|
|
1417
1417
|
{
|
|
@@ -1448,7 +1448,7 @@ const select$b = function EinsteinLlmGenerationItemRepresentationSelect() {
|
|
|
1448
1448
|
]
|
|
1449
1449
|
};
|
|
1450
1450
|
};
|
|
1451
|
-
function equals$
|
|
1451
|
+
function equals$b(existing, incoming) {
|
|
1452
1452
|
const existing_isSummarized = existing.isSummarized;
|
|
1453
1453
|
const incoming_isSummarized = incoming.isSummarized;
|
|
1454
1454
|
// if at least one of these optionals is defined
|
|
@@ -1489,7 +1489,7 @@ function equals$8(existing, incoming) {
|
|
|
1489
1489
|
if (!(existing_contentQualityRepresentation === incoming_contentQualityRepresentation
|
|
1490
1490
|
|| (existing_contentQualityRepresentation != null &&
|
|
1491
1491
|
incoming_contentQualityRepresentation != null &&
|
|
1492
|
-
equals$
|
|
1492
|
+
equals$d(existing_contentQualityRepresentation, incoming_contentQualityRepresentation)))) {
|
|
1493
1493
|
return false;
|
|
1494
1494
|
}
|
|
1495
1495
|
}
|
|
@@ -1505,15 +1505,15 @@ function equals$8(existing, incoming) {
|
|
|
1505
1505
|
if (!(existing_safetyScoreRepresentation === incoming_safetyScoreRepresentation
|
|
1506
1506
|
|| (existing_safetyScoreRepresentation != null &&
|
|
1507
1507
|
incoming_safetyScoreRepresentation != null &&
|
|
1508
|
-
equals$
|
|
1508
|
+
equals$c(existing_safetyScoreRepresentation, incoming_safetyScoreRepresentation)))) {
|
|
1509
1509
|
return false;
|
|
1510
1510
|
}
|
|
1511
1511
|
}
|
|
1512
1512
|
return true;
|
|
1513
1513
|
}
|
|
1514
1514
|
|
|
1515
|
-
const VERSION$
|
|
1516
|
-
function validate$
|
|
1515
|
+
const VERSION$a = "4656c961c9d093a9e206c1db7d4de0b0";
|
|
1516
|
+
function validate$e(obj, path = 'WrappedMap') {
|
|
1517
1517
|
const v_error = (() => {
|
|
1518
1518
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1519
1519
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1535,15 +1535,15 @@ function validate$b(obj, path = 'WrappedMap') {
|
|
|
1535
1535
|
})();
|
|
1536
1536
|
return v_error === undefined ? null : v_error;
|
|
1537
1537
|
}
|
|
1538
|
-
const select$
|
|
1538
|
+
const select$e = function WrappedMapSelect() {
|
|
1539
1539
|
return {
|
|
1540
1540
|
kind: 'Fragment',
|
|
1541
|
-
version: VERSION$
|
|
1541
|
+
version: VERSION$a,
|
|
1542
1542
|
private: [],
|
|
1543
1543
|
selections: []
|
|
1544
1544
|
};
|
|
1545
1545
|
};
|
|
1546
|
-
function equals$
|
|
1546
|
+
function equals$a(existing, incoming) {
|
|
1547
1547
|
const existing_wrappedMap = existing.wrappedMap;
|
|
1548
1548
|
const incoming_wrappedMap = incoming.wrappedMap;
|
|
1549
1549
|
const equals_wrappedMap_props = equalsObject(existing_wrappedMap, incoming_wrappedMap, (existing_wrappedMap_prop, incoming_wrappedMap_prop) => {
|
|
@@ -1554,9 +1554,9 @@ function equals$7(existing, incoming) {
|
|
|
1554
1554
|
return true;
|
|
1555
1555
|
}
|
|
1556
1556
|
|
|
1557
|
-
const TTL$
|
|
1558
|
-
const VERSION$
|
|
1559
|
-
function validate$
|
|
1557
|
+
const TTL$3 = 100;
|
|
1558
|
+
const VERSION$9 = "d8abd72a42e842b253da1c38954dafbc";
|
|
1559
|
+
function validate$d(obj, path = 'EinsteinLlmGenerationsRepresentation') {
|
|
1560
1560
|
const v_error = (() => {
|
|
1561
1561
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1562
1562
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1569,7 +1569,7 @@ function validate$a(obj, path = 'EinsteinLlmGenerationsRepresentation') {
|
|
|
1569
1569
|
for (let i = 0; i < obj_generations.length; i++) {
|
|
1570
1570
|
const obj_generations_item = obj_generations[i];
|
|
1571
1571
|
const path_generations_item = path_generations + '[' + i + ']';
|
|
1572
|
-
const referencepath_generations_itemValidationError = validate$
|
|
1572
|
+
const referencepath_generations_itemValidationError = validate$f(obj_generations_item, path_generations_item);
|
|
1573
1573
|
if (referencepath_generations_itemValidationError !== null) {
|
|
1574
1574
|
let message = 'Object doesn\'t match EinsteinLlmGenerationItemRepresentation (at "' + path_generations_item + '")\n';
|
|
1575
1575
|
message += referencepath_generations_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1580,7 +1580,7 @@ function validate$a(obj, path = 'EinsteinLlmGenerationsRepresentation') {
|
|
|
1580
1580
|
const path_parameters = path + '.parameters';
|
|
1581
1581
|
let obj_parameters_union0 = null;
|
|
1582
1582
|
const obj_parameters_union0_error = (() => {
|
|
1583
|
-
const referencepath_parametersValidationError = validate$
|
|
1583
|
+
const referencepath_parametersValidationError = validate$e(obj_parameters, path_parameters);
|
|
1584
1584
|
if (referencepath_parametersValidationError !== null) {
|
|
1585
1585
|
let message = 'Object doesn\'t match WrappedMap (at "' + path_parameters + '")\n';
|
|
1586
1586
|
message += referencepath_parametersValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1639,25 +1639,25 @@ function validate$a(obj, path = 'EinsteinLlmGenerationsRepresentation') {
|
|
|
1639
1639
|
})();
|
|
1640
1640
|
return v_error === undefined ? null : v_error;
|
|
1641
1641
|
}
|
|
1642
|
-
const RepresentationType$
|
|
1643
|
-
function keyBuilder$
|
|
1644
|
-
return keyPrefix + '::' + RepresentationType$
|
|
1642
|
+
const RepresentationType$3 = 'EinsteinLlmGenerationsRepresentation';
|
|
1643
|
+
function keyBuilder$5(luvio, config) {
|
|
1644
|
+
return keyPrefix + '::' + RepresentationType$3 + ':' + config.requestId;
|
|
1645
1645
|
}
|
|
1646
1646
|
function keyBuilderFromType$1(luvio, object) {
|
|
1647
1647
|
const keyParams = {
|
|
1648
1648
|
requestId: object.requestId
|
|
1649
1649
|
};
|
|
1650
|
-
return keyBuilder$
|
|
1650
|
+
return keyBuilder$5(luvio, keyParams);
|
|
1651
1651
|
}
|
|
1652
|
-
function normalize$
|
|
1652
|
+
function normalize$3(input, existing, path, luvio, store, timestamp) {
|
|
1653
1653
|
return input;
|
|
1654
1654
|
}
|
|
1655
|
-
const select$
|
|
1656
|
-
const { selections: EinsteinLlmGenerationItemRepresentation__selections, opaque: EinsteinLlmGenerationItemRepresentation__opaque, } = select$
|
|
1657
|
-
const { selections: WrappedMap__selections, opaque: WrappedMap__opaque, } = select$
|
|
1655
|
+
const select$d = function EinsteinLlmGenerationsRepresentationSelect() {
|
|
1656
|
+
const { selections: EinsteinLlmGenerationItemRepresentation__selections, opaque: EinsteinLlmGenerationItemRepresentation__opaque, } = select$f();
|
|
1657
|
+
const { selections: WrappedMap__selections, opaque: WrappedMap__opaque, } = select$e();
|
|
1658
1658
|
return {
|
|
1659
1659
|
kind: 'Fragment',
|
|
1660
|
-
version: VERSION$
|
|
1660
|
+
version: VERSION$9,
|
|
1661
1661
|
private: [],
|
|
1662
1662
|
selections: [
|
|
1663
1663
|
{
|
|
@@ -1683,7 +1683,7 @@ const select$9 = function EinsteinLlmGenerationsRepresentationSelect() {
|
|
|
1683
1683
|
]
|
|
1684
1684
|
};
|
|
1685
1685
|
};
|
|
1686
|
-
function equals$
|
|
1686
|
+
function equals$9(existing, incoming) {
|
|
1687
1687
|
const existing_requestId = existing.requestId;
|
|
1688
1688
|
const incoming_requestId = incoming.requestId;
|
|
1689
1689
|
if (!(existing_requestId === incoming_requestId)) {
|
|
@@ -1692,7 +1692,7 @@ function equals$6(existing, incoming) {
|
|
|
1692
1692
|
const existing_generations = existing.generations;
|
|
1693
1693
|
const incoming_generations = incoming.generations;
|
|
1694
1694
|
const equals_generations_items = equalsArray(existing_generations, incoming_generations, (existing_generations_item, incoming_generations_item) => {
|
|
1695
|
-
if (!(equals$
|
|
1695
|
+
if (!(equals$b(existing_generations_item, incoming_generations_item))) {
|
|
1696
1696
|
return false;
|
|
1697
1697
|
}
|
|
1698
1698
|
});
|
|
@@ -1704,7 +1704,7 @@ function equals$6(existing, incoming) {
|
|
|
1704
1704
|
if (!(existing_parameters === incoming_parameters
|
|
1705
1705
|
|| (existing_parameters != null &&
|
|
1706
1706
|
incoming_parameters != null &&
|
|
1707
|
-
equals$
|
|
1707
|
+
equals$a(existing_parameters, incoming_parameters)))) {
|
|
1708
1708
|
return false;
|
|
1709
1709
|
}
|
|
1710
1710
|
const existing_prompt = existing.prompt;
|
|
@@ -1714,41 +1714,41 @@ function equals$6(existing, incoming) {
|
|
|
1714
1714
|
}
|
|
1715
1715
|
return true;
|
|
1716
1716
|
}
|
|
1717
|
-
const ingest$
|
|
1717
|
+
const ingest$3 = function EinsteinLlmGenerationsRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
1718
1718
|
if (process.env.NODE_ENV !== 'production') {
|
|
1719
|
-
const validateError = validate$
|
|
1719
|
+
const validateError = validate$d(input);
|
|
1720
1720
|
if (validateError !== null) {
|
|
1721
1721
|
throw validateError;
|
|
1722
1722
|
}
|
|
1723
1723
|
}
|
|
1724
1724
|
const key = keyBuilderFromType$1(luvio, input);
|
|
1725
|
-
const ttlToUse = TTL$
|
|
1726
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$
|
|
1725
|
+
const ttlToUse = TTL$3;
|
|
1726
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$3, "EinsteinLLM", VERSION$9, RepresentationType$3, equals$9);
|
|
1727
1727
|
return createLink(key);
|
|
1728
1728
|
};
|
|
1729
|
-
function getTypeCacheKeys$
|
|
1729
|
+
function getTypeCacheKeys$3(rootKeySet, luvio, input, fullPathFactory) {
|
|
1730
1730
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
1731
1731
|
const rootKey = keyBuilderFromType$1(luvio, input);
|
|
1732
1732
|
rootKeySet.set(rootKey, {
|
|
1733
1733
|
namespace: keyPrefix,
|
|
1734
|
-
representationName: RepresentationType$
|
|
1734
|
+
representationName: RepresentationType$3,
|
|
1735
1735
|
mergeable: false
|
|
1736
1736
|
});
|
|
1737
1737
|
}
|
|
1738
1738
|
|
|
1739
|
-
function select$
|
|
1740
|
-
return select$
|
|
1739
|
+
function select$c(luvio, params) {
|
|
1740
|
+
return select$d();
|
|
1741
1741
|
}
|
|
1742
|
-
function getResponseCacheKeys$
|
|
1743
|
-
getTypeCacheKeys$
|
|
1742
|
+
function getResponseCacheKeys$3(storeKeyMap, luvio, resourceParams, response) {
|
|
1743
|
+
getTypeCacheKeys$3(storeKeyMap, luvio, response);
|
|
1744
1744
|
}
|
|
1745
|
-
function ingestSuccess$
|
|
1745
|
+
function ingestSuccess$3(luvio, resourceParams, response) {
|
|
1746
1746
|
const { body } = response;
|
|
1747
1747
|
const key = keyBuilderFromType$1(luvio, body);
|
|
1748
|
-
luvio.storeIngest(key, ingest$
|
|
1748
|
+
luvio.storeIngest(key, ingest$3, body);
|
|
1749
1749
|
const snapshot = luvio.storeLookup({
|
|
1750
1750
|
recordId: key,
|
|
1751
|
-
node: select$
|
|
1751
|
+
node: select$c(),
|
|
1752
1752
|
variables: {},
|
|
1753
1753
|
});
|
|
1754
1754
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -1759,10 +1759,10 @@ function ingestSuccess$2(luvio, resourceParams, response) {
|
|
|
1759
1759
|
deepFreeze(snapshot.data);
|
|
1760
1760
|
return snapshot;
|
|
1761
1761
|
}
|
|
1762
|
-
function createResourceRequest$
|
|
1762
|
+
function createResourceRequest$3(config) {
|
|
1763
1763
|
const headers = {};
|
|
1764
1764
|
return {
|
|
1765
|
-
baseUri: '/services/data/
|
|
1765
|
+
baseUri: '/services/data/v64.0',
|
|
1766
1766
|
basePath: '/einstein/llm/prompt/generations',
|
|
1767
1767
|
method: 'post',
|
|
1768
1768
|
body: config.body,
|
|
@@ -1773,45 +1773,45 @@ function createResourceRequest$2(config) {
|
|
|
1773
1773
|
};
|
|
1774
1774
|
}
|
|
1775
1775
|
|
|
1776
|
-
const adapterName$
|
|
1776
|
+
const adapterName$3 = 'createGenerations';
|
|
1777
1777
|
const createGenerations_ConfigPropertyMetadata = [
|
|
1778
1778
|
generateParamConfigMetadata('generationsInput', true, 2 /* Body */, 4 /* Unsupported */),
|
|
1779
1779
|
];
|
|
1780
|
-
const createGenerations_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$
|
|
1781
|
-
const createResourceParams$
|
|
1782
|
-
function typeCheckConfig$
|
|
1780
|
+
const createGenerations_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$3, createGenerations_ConfigPropertyMetadata);
|
|
1781
|
+
const createResourceParams$3 = /*#__PURE__*/ createResourceParams$6(createGenerations_ConfigPropertyMetadata);
|
|
1782
|
+
function typeCheckConfig$3(untrustedConfig) {
|
|
1783
1783
|
const config = {};
|
|
1784
1784
|
const untrustedConfig_generationsInput = untrustedConfig.generationsInput;
|
|
1785
|
-
const referenceEinsteinLlmGenerationsInputRepresentationValidationError = validate$
|
|
1785
|
+
const referenceEinsteinLlmGenerationsInputRepresentationValidationError = validate$i(untrustedConfig_generationsInput);
|
|
1786
1786
|
if (referenceEinsteinLlmGenerationsInputRepresentationValidationError === null) {
|
|
1787
1787
|
config.generationsInput = untrustedConfig_generationsInput;
|
|
1788
1788
|
}
|
|
1789
1789
|
return config;
|
|
1790
1790
|
}
|
|
1791
|
-
function validateAdapterConfig$
|
|
1791
|
+
function validateAdapterConfig$3(untrustedConfig, configPropertyNames) {
|
|
1792
1792
|
if (!untrustedIsObject(untrustedConfig)) {
|
|
1793
1793
|
return null;
|
|
1794
1794
|
}
|
|
1795
1795
|
if (process.env.NODE_ENV !== 'production') {
|
|
1796
1796
|
validateConfig(untrustedConfig, configPropertyNames);
|
|
1797
1797
|
}
|
|
1798
|
-
const config = typeCheckConfig$
|
|
1798
|
+
const config = typeCheckConfig$3(untrustedConfig);
|
|
1799
1799
|
if (!areRequiredParametersPresent(config, configPropertyNames)) {
|
|
1800
1800
|
return null;
|
|
1801
1801
|
}
|
|
1802
1802
|
return config;
|
|
1803
1803
|
}
|
|
1804
|
-
function buildNetworkSnapshot$
|
|
1805
|
-
const resourceParams = createResourceParams$
|
|
1806
|
-
const request = createResourceRequest$
|
|
1804
|
+
function buildNetworkSnapshot$3(luvio, config, options) {
|
|
1805
|
+
const resourceParams = createResourceParams$3(config);
|
|
1806
|
+
const request = createResourceRequest$3(resourceParams);
|
|
1807
1807
|
return luvio.dispatchResourceRequest(request, options)
|
|
1808
1808
|
.then((response) => {
|
|
1809
1809
|
return luvio.handleSuccessResponse(() => {
|
|
1810
|
-
const snapshot = ingestSuccess$
|
|
1810
|
+
const snapshot = ingestSuccess$3(luvio, resourceParams, response);
|
|
1811
1811
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
1812
1812
|
}, () => {
|
|
1813
1813
|
const cache = new StoreKeyMap();
|
|
1814
|
-
getResponseCacheKeys$
|
|
1814
|
+
getResponseCacheKeys$3(cache, luvio, resourceParams, response.body);
|
|
1815
1815
|
return cache;
|
|
1816
1816
|
});
|
|
1817
1817
|
}, (response) => {
|
|
@@ -1821,16 +1821,16 @@ function buildNetworkSnapshot$2(luvio, config, options) {
|
|
|
1821
1821
|
}
|
|
1822
1822
|
const createGenerationsAdapterFactory = (luvio) => {
|
|
1823
1823
|
return function createGenerations(untrustedConfig) {
|
|
1824
|
-
const config = validateAdapterConfig$
|
|
1824
|
+
const config = validateAdapterConfig$3(untrustedConfig, createGenerations_ConfigPropertyNames);
|
|
1825
1825
|
// Invalid or incomplete config
|
|
1826
1826
|
if (config === null) {
|
|
1827
1827
|
throw new Error('Invalid config for "createGenerations"');
|
|
1828
1828
|
}
|
|
1829
|
-
return buildNetworkSnapshot$
|
|
1829
|
+
return buildNetworkSnapshot$3(luvio, config);
|
|
1830
1830
|
};
|
|
1831
1831
|
};
|
|
1832
1832
|
|
|
1833
|
-
function validate$
|
|
1833
|
+
function validate$c(obj, path = 'EinsteinPromptRecordFieldRepresentation') {
|
|
1834
1834
|
const v_error = (() => {
|
|
1835
1835
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1836
1836
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1890,7 +1890,7 @@ function validate$9(obj, path = 'EinsteinPromptRecordFieldRepresentation') {
|
|
|
1890
1890
|
return v_error === undefined ? null : v_error;
|
|
1891
1891
|
}
|
|
1892
1892
|
|
|
1893
|
-
function validate$
|
|
1893
|
+
function validate$b(obj, path = 'EinsteinPromptRecordRepresentation') {
|
|
1894
1894
|
const v_error = (() => {
|
|
1895
1895
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1896
1896
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1913,7 +1913,7 @@ function validate$8(obj, path = 'EinsteinPromptRecordRepresentation') {
|
|
|
1913
1913
|
const key = obj_childRelationships_keys[i];
|
|
1914
1914
|
const obj_childRelationships_prop = obj_childRelationships[key];
|
|
1915
1915
|
const path_childRelationships_prop = path_childRelationships + '["' + key + '"]';
|
|
1916
|
-
const referencepath_childRelationships_propValidationError = validate$
|
|
1916
|
+
const referencepath_childRelationships_propValidationError = validate$b(obj_childRelationships_prop, path_childRelationships_prop);
|
|
1917
1917
|
if (referencepath_childRelationships_propValidationError !== null) {
|
|
1918
1918
|
let message = 'Object doesn\'t match EinsteinPromptRecordRepresentation (at "' + path_childRelationships_prop + '")\n';
|
|
1919
1919
|
message += referencepath_childRelationships_propValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1932,7 +1932,7 @@ function validate$8(obj, path = 'EinsteinPromptRecordRepresentation') {
|
|
|
1932
1932
|
const key = obj_fields_keys[i];
|
|
1933
1933
|
const obj_fields_prop = obj_fields[key];
|
|
1934
1934
|
const path_fields_prop = path_fields + '["' + key + '"]';
|
|
1935
|
-
const referencepath_fields_propValidationError = validate$
|
|
1935
|
+
const referencepath_fields_propValidationError = validate$c(obj_fields_prop, path_fields_prop);
|
|
1936
1936
|
if (referencepath_fields_propValidationError !== null) {
|
|
1937
1937
|
let message = 'Object doesn\'t match EinsteinPromptRecordFieldRepresentation (at "' + path_fields_prop + '")\n';
|
|
1938
1938
|
message += referencepath_fields_propValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1951,9 +1951,9 @@ function validate$8(obj, path = 'EinsteinPromptRecordRepresentation') {
|
|
|
1951
1951
|
return v_error === undefined ? null : v_error;
|
|
1952
1952
|
}
|
|
1953
1953
|
|
|
1954
|
-
const TTL$
|
|
1955
|
-
const VERSION$
|
|
1956
|
-
function validate$
|
|
1954
|
+
const TTL$2 = 100;
|
|
1955
|
+
const VERSION$8 = "b1bbf0a799a9fd0defceb1b9ff7e7502";
|
|
1956
|
+
function validate$a(obj, path = 'EinsteinPromptRecordCollectionOutputRepresentation') {
|
|
1957
1957
|
const v_error = (() => {
|
|
1958
1958
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1959
1959
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1972,7 +1972,7 @@ function validate$7(obj, path = 'EinsteinPromptRecordCollectionOutputRepresentat
|
|
|
1972
1972
|
for (let i = 0; i < obj_promptRecords.length; i++) {
|
|
1973
1973
|
const obj_promptRecords_item = obj_promptRecords[i];
|
|
1974
1974
|
const path_promptRecords_item = path_promptRecords + '[' + i + ']';
|
|
1975
|
-
const referencepath_promptRecords_itemValidationError = validate$
|
|
1975
|
+
const referencepath_promptRecords_itemValidationError = validate$b(obj_promptRecords_item, path_promptRecords_item);
|
|
1976
1976
|
if (referencepath_promptRecords_itemValidationError !== null) {
|
|
1977
1977
|
let message = 'Object doesn\'t match EinsteinPromptRecordRepresentation (at "' + path_promptRecords_item + '")\n';
|
|
1978
1978
|
message += referencepath_promptRecords_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1988,62 +1988,62 @@ function validate$7(obj, path = 'EinsteinPromptRecordCollectionOutputRepresentat
|
|
|
1988
1988
|
})();
|
|
1989
1989
|
return v_error === undefined ? null : v_error;
|
|
1990
1990
|
}
|
|
1991
|
-
const RepresentationType$
|
|
1992
|
-
function normalize$
|
|
1991
|
+
const RepresentationType$2 = 'EinsteinPromptRecordCollectionOutputRepresentation';
|
|
1992
|
+
function normalize$2(input, existing, path, luvio, store, timestamp) {
|
|
1993
1993
|
return input;
|
|
1994
1994
|
}
|
|
1995
|
-
const select$
|
|
1995
|
+
const select$b = function EinsteinPromptRecordCollectionOutputRepresentationSelect() {
|
|
1996
1996
|
return {
|
|
1997
1997
|
kind: 'Fragment',
|
|
1998
|
-
version: VERSION$
|
|
1998
|
+
version: VERSION$8,
|
|
1999
1999
|
private: [],
|
|
2000
2000
|
opaque: true
|
|
2001
2001
|
};
|
|
2002
2002
|
};
|
|
2003
|
-
function equals$
|
|
2003
|
+
function equals$8(existing, incoming) {
|
|
2004
2004
|
if (JSONStringify(incoming) !== JSONStringify(existing)) {
|
|
2005
2005
|
return false;
|
|
2006
2006
|
}
|
|
2007
2007
|
return true;
|
|
2008
2008
|
}
|
|
2009
|
-
const ingest$
|
|
2009
|
+
const ingest$2 = function EinsteinPromptRecordCollectionOutputRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
2010
2010
|
if (process.env.NODE_ENV !== 'production') {
|
|
2011
|
-
const validateError = validate$
|
|
2011
|
+
const validateError = validate$a(input);
|
|
2012
2012
|
if (validateError !== null) {
|
|
2013
2013
|
throw validateError;
|
|
2014
2014
|
}
|
|
2015
2015
|
}
|
|
2016
2016
|
const key = path.fullPath;
|
|
2017
|
-
const ttlToUse = TTL$
|
|
2018
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$
|
|
2017
|
+
const ttlToUse = TTL$2;
|
|
2018
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$2, "EinsteinLLM", VERSION$8, RepresentationType$2, equals$8);
|
|
2019
2019
|
return createLink(key);
|
|
2020
2020
|
};
|
|
2021
|
-
function getTypeCacheKeys$
|
|
2021
|
+
function getTypeCacheKeys$2(rootKeySet, luvio, input, fullPathFactory) {
|
|
2022
2022
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
2023
2023
|
const rootKey = fullPathFactory();
|
|
2024
2024
|
rootKeySet.set(rootKey, {
|
|
2025
2025
|
namespace: keyPrefix,
|
|
2026
|
-
representationName: RepresentationType$
|
|
2026
|
+
representationName: RepresentationType$2,
|
|
2027
2027
|
mergeable: false
|
|
2028
2028
|
});
|
|
2029
2029
|
}
|
|
2030
2030
|
|
|
2031
|
-
function select$
|
|
2032
|
-
return select$
|
|
2031
|
+
function select$a(luvio, params) {
|
|
2032
|
+
return select$b();
|
|
2033
2033
|
}
|
|
2034
|
-
function keyBuilder$
|
|
2034
|
+
function keyBuilder$4(luvio, params) {
|
|
2035
2035
|
return keyPrefix + '::EinsteinPromptRecordCollectionOutputRepresentation:(' + 'isActive:' + params.queryParams.isActive + ',' + 'fields:' + params.queryParams.fields + ',' + 'relatedEntity:' + params.queryParams.relatedEntity + ',' + 'offset:' + params.queryParams.offset + ',' + 'pageLimit:' + params.queryParams.pageLimit + ',' + 'type:' + params.queryParams.type + ',' + 'query:' + params.queryParams.query + ',' + 'sortBy:' + params.queryParams.sortBy + ')';
|
|
2036
2036
|
}
|
|
2037
|
-
function getResponseCacheKeys$
|
|
2038
|
-
getTypeCacheKeys$
|
|
2037
|
+
function getResponseCacheKeys$2(storeKeyMap, luvio, resourceParams, response) {
|
|
2038
|
+
getTypeCacheKeys$2(storeKeyMap, luvio, response, () => keyBuilder$4(luvio, resourceParams));
|
|
2039
2039
|
}
|
|
2040
|
-
function ingestSuccess$
|
|
2040
|
+
function ingestSuccess$2(luvio, resourceParams, response, snapshotRefresh) {
|
|
2041
2041
|
const { body } = response;
|
|
2042
|
-
const key = keyBuilder$
|
|
2043
|
-
luvio.storeIngest(key, ingest$
|
|
2042
|
+
const key = keyBuilder$4(luvio, resourceParams);
|
|
2043
|
+
luvio.storeIngest(key, ingest$2, body);
|
|
2044
2044
|
const snapshot = luvio.storeLookup({
|
|
2045
2045
|
recordId: key,
|
|
2046
|
-
node: select$
|
|
2046
|
+
node: select$a(),
|
|
2047
2047
|
variables: {},
|
|
2048
2048
|
}, snapshotRefresh);
|
|
2049
2049
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -2054,22 +2054,22 @@ function ingestSuccess$1(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
2054
2054
|
deepFreeze(snapshot.data);
|
|
2055
2055
|
return snapshot;
|
|
2056
2056
|
}
|
|
2057
|
-
function ingestError(luvio, params, error, snapshotRefresh) {
|
|
2058
|
-
const key = keyBuilder$
|
|
2057
|
+
function ingestError$1(luvio, params, error, snapshotRefresh) {
|
|
2058
|
+
const key = keyBuilder$4(luvio, params);
|
|
2059
2059
|
const errorSnapshot = luvio.errorSnapshot(error, snapshotRefresh);
|
|
2060
2060
|
const storeMetadataParams = {
|
|
2061
|
-
ttl: TTL$
|
|
2061
|
+
ttl: TTL$2,
|
|
2062
2062
|
namespace: keyPrefix,
|
|
2063
|
-
version: VERSION$
|
|
2064
|
-
representationName: RepresentationType$
|
|
2063
|
+
version: VERSION$8,
|
|
2064
|
+
representationName: RepresentationType$2
|
|
2065
2065
|
};
|
|
2066
2066
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
2067
2067
|
return errorSnapshot;
|
|
2068
2068
|
}
|
|
2069
|
-
function createResourceRequest$
|
|
2069
|
+
function createResourceRequest$2(config) {
|
|
2070
2070
|
const headers = {};
|
|
2071
2071
|
return {
|
|
2072
|
-
baseUri: '/services/data/
|
|
2072
|
+
baseUri: '/services/data/v64.0',
|
|
2073
2073
|
basePath: '/einstein/prompt-templates',
|
|
2074
2074
|
method: 'get',
|
|
2075
2075
|
body: null,
|
|
@@ -2080,7 +2080,7 @@ function createResourceRequest$1(config) {
|
|
|
2080
2080
|
};
|
|
2081
2081
|
}
|
|
2082
2082
|
|
|
2083
|
-
const adapterName$
|
|
2083
|
+
const adapterName$2 = 'getPromptTemplates';
|
|
2084
2084
|
const getPromptTemplates_ConfigPropertyMetadata = [
|
|
2085
2085
|
generateParamConfigMetadata('isActive', false, 1 /* QueryParameter */, 1 /* Boolean */),
|
|
2086
2086
|
generateParamConfigMetadata('fields', false, 1 /* QueryParameter */, 0 /* String */, true),
|
|
@@ -2091,89 +2091,89 @@ const getPromptTemplates_ConfigPropertyMetadata = [
|
|
|
2091
2091
|
generateParamConfigMetadata('query', false, 1 /* QueryParameter */, 0 /* String */),
|
|
2092
2092
|
generateParamConfigMetadata('sortBy', false, 1 /* QueryParameter */, 0 /* String */),
|
|
2093
2093
|
];
|
|
2094
|
-
const getPromptTemplates_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$
|
|
2095
|
-
const createResourceParams$
|
|
2096
|
-
function keyBuilder$
|
|
2097
|
-
const resourceParams = createResourceParams$
|
|
2098
|
-
return keyBuilder$
|
|
2094
|
+
const getPromptTemplates_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$2, getPromptTemplates_ConfigPropertyMetadata);
|
|
2095
|
+
const createResourceParams$2 = /*#__PURE__*/ createResourceParams$6(getPromptTemplates_ConfigPropertyMetadata);
|
|
2096
|
+
function keyBuilder$3(luvio, config) {
|
|
2097
|
+
const resourceParams = createResourceParams$2(config);
|
|
2098
|
+
return keyBuilder$4(luvio, resourceParams);
|
|
2099
2099
|
}
|
|
2100
|
-
function typeCheckConfig$
|
|
2100
|
+
function typeCheckConfig$2(untrustedConfig) {
|
|
2101
2101
|
const config = {};
|
|
2102
|
-
typeCheckConfig$
|
|
2102
|
+
typeCheckConfig$6(untrustedConfig, config, getPromptTemplates_ConfigPropertyMetadata);
|
|
2103
2103
|
return config;
|
|
2104
2104
|
}
|
|
2105
|
-
function validateAdapterConfig$
|
|
2105
|
+
function validateAdapterConfig$2(untrustedConfig, configPropertyNames) {
|
|
2106
2106
|
if (!untrustedIsObject(untrustedConfig)) {
|
|
2107
2107
|
return null;
|
|
2108
2108
|
}
|
|
2109
2109
|
if (process.env.NODE_ENV !== 'production') {
|
|
2110
2110
|
validateConfig(untrustedConfig, configPropertyNames);
|
|
2111
2111
|
}
|
|
2112
|
-
const config = typeCheckConfig$
|
|
2112
|
+
const config = typeCheckConfig$2(untrustedConfig);
|
|
2113
2113
|
if (!areRequiredParametersPresent(config, configPropertyNames)) {
|
|
2114
2114
|
return null;
|
|
2115
2115
|
}
|
|
2116
2116
|
return config;
|
|
2117
2117
|
}
|
|
2118
|
-
function adapterFragment(luvio, config) {
|
|
2119
|
-
createResourceParams$
|
|
2120
|
-
return select$
|
|
2118
|
+
function adapterFragment$1(luvio, config) {
|
|
2119
|
+
createResourceParams$2(config);
|
|
2120
|
+
return select$a();
|
|
2121
2121
|
}
|
|
2122
|
-
function onFetchResponseSuccess(luvio, config, resourceParams, response) {
|
|
2123
|
-
const snapshot = ingestSuccess$
|
|
2122
|
+
function onFetchResponseSuccess$1(luvio, config, resourceParams, response) {
|
|
2123
|
+
const snapshot = ingestSuccess$2(luvio, resourceParams, response, {
|
|
2124
2124
|
config,
|
|
2125
|
-
resolve: () => buildNetworkSnapshot$
|
|
2125
|
+
resolve: () => buildNetworkSnapshot$2(luvio, config, snapshotRefreshOptions)
|
|
2126
2126
|
});
|
|
2127
2127
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
2128
2128
|
}
|
|
2129
|
-
function onFetchResponseError(luvio, config, resourceParams, response) {
|
|
2130
|
-
const snapshot = ingestError(luvio, resourceParams, response, {
|
|
2129
|
+
function onFetchResponseError$1(luvio, config, resourceParams, response) {
|
|
2130
|
+
const snapshot = ingestError$1(luvio, resourceParams, response, {
|
|
2131
2131
|
config,
|
|
2132
|
-
resolve: () => buildNetworkSnapshot$
|
|
2132
|
+
resolve: () => buildNetworkSnapshot$2(luvio, config, snapshotRefreshOptions)
|
|
2133
2133
|
});
|
|
2134
2134
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
2135
2135
|
}
|
|
2136
|
-
function buildNetworkSnapshot$
|
|
2137
|
-
const resourceParams = createResourceParams$
|
|
2138
|
-
const request = createResourceRequest$
|
|
2136
|
+
function buildNetworkSnapshot$2(luvio, config, options) {
|
|
2137
|
+
const resourceParams = createResourceParams$2(config);
|
|
2138
|
+
const request = createResourceRequest$2(resourceParams);
|
|
2139
2139
|
return luvio.dispatchResourceRequest(request, options)
|
|
2140
2140
|
.then((response) => {
|
|
2141
|
-
return luvio.handleSuccessResponse(() => onFetchResponseSuccess(luvio, config, resourceParams, response), () => {
|
|
2141
|
+
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$1(luvio, config, resourceParams, response), () => {
|
|
2142
2142
|
const cache = new StoreKeyMap();
|
|
2143
|
-
getResponseCacheKeys$
|
|
2143
|
+
getResponseCacheKeys$2(cache, luvio, resourceParams, response.body);
|
|
2144
2144
|
return cache;
|
|
2145
2145
|
});
|
|
2146
2146
|
}, (response) => {
|
|
2147
|
-
return luvio.handleErrorResponse(() => onFetchResponseError(luvio, config, resourceParams, response));
|
|
2147
|
+
return luvio.handleErrorResponse(() => onFetchResponseError$1(luvio, config, resourceParams, response));
|
|
2148
2148
|
});
|
|
2149
2149
|
}
|
|
2150
|
-
function buildNetworkSnapshotCachePolicy(context, coercedAdapterRequestContext) {
|
|
2151
|
-
return buildNetworkSnapshotCachePolicy$
|
|
2150
|
+
function buildNetworkSnapshotCachePolicy$1(context, coercedAdapterRequestContext) {
|
|
2151
|
+
return buildNetworkSnapshotCachePolicy$3(context, coercedAdapterRequestContext, buildNetworkSnapshot$2, undefined, false);
|
|
2152
2152
|
}
|
|
2153
|
-
function buildCachedSnapshotCachePolicy(context, storeLookup) {
|
|
2153
|
+
function buildCachedSnapshotCachePolicy$1(context, storeLookup) {
|
|
2154
2154
|
const { luvio, config } = context;
|
|
2155
2155
|
const selector = {
|
|
2156
|
-
recordId: keyBuilder$
|
|
2157
|
-
node: adapterFragment(luvio, config),
|
|
2156
|
+
recordId: keyBuilder$3(luvio, config),
|
|
2157
|
+
node: adapterFragment$1(luvio, config),
|
|
2158
2158
|
variables: {},
|
|
2159
2159
|
};
|
|
2160
2160
|
const cacheSnapshot = storeLookup(selector, {
|
|
2161
2161
|
config,
|
|
2162
|
-
resolve: () => buildNetworkSnapshot$
|
|
2162
|
+
resolve: () => buildNetworkSnapshot$2(luvio, config, snapshotRefreshOptions)
|
|
2163
2163
|
});
|
|
2164
2164
|
return cacheSnapshot;
|
|
2165
2165
|
}
|
|
2166
2166
|
const getPromptTemplatesAdapterFactory = (luvio) => function EinsteinLLM__getPromptTemplates(untrustedConfig, requestContext) {
|
|
2167
|
-
const config = validateAdapterConfig$
|
|
2167
|
+
const config = validateAdapterConfig$2(untrustedConfig, getPromptTemplates_ConfigPropertyNames);
|
|
2168
2168
|
// Invalid or incomplete config
|
|
2169
2169
|
if (config === null) {
|
|
2170
2170
|
return null;
|
|
2171
2171
|
}
|
|
2172
2172
|
return luvio.applyCachePolicy((requestContext || {}), { config, luvio }, // BuildSnapshotContext
|
|
2173
|
-
buildCachedSnapshotCachePolicy, buildNetworkSnapshotCachePolicy);
|
|
2173
|
+
buildCachedSnapshotCachePolicy$1, buildNetworkSnapshotCachePolicy$1);
|
|
2174
2174
|
};
|
|
2175
2175
|
|
|
2176
|
-
function validate$
|
|
2176
|
+
function validate$9(obj, path = 'WrappedValueMap') {
|
|
2177
2177
|
const v_error = (() => {
|
|
2178
2178
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2179
2179
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2196,7 +2196,7 @@ function validate$6(obj, path = 'WrappedValueMap') {
|
|
|
2196
2196
|
return v_error === undefined ? null : v_error;
|
|
2197
2197
|
}
|
|
2198
2198
|
|
|
2199
|
-
function validate$
|
|
2199
|
+
function validate$8(obj, path = 'EinsteinPromptTemplateGenerationsInputRepresentation') {
|
|
2200
2200
|
const v_error = (() => {
|
|
2201
2201
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2202
2202
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2204,7 +2204,7 @@ function validate$5(obj, path = 'EinsteinPromptTemplateGenerationsInputRepresent
|
|
|
2204
2204
|
if (obj.additionalConfig !== undefined) {
|
|
2205
2205
|
const obj_additionalConfig = obj.additionalConfig;
|
|
2206
2206
|
const path_additionalConfig = path + '.additionalConfig';
|
|
2207
|
-
const referencepath_additionalConfigValidationError = validate$
|
|
2207
|
+
const referencepath_additionalConfigValidationError = validate$j(obj_additionalConfig, path_additionalConfig);
|
|
2208
2208
|
if (referencepath_additionalConfigValidationError !== null) {
|
|
2209
2209
|
let message = 'Object doesn\'t match EinsteinLlmAdditionalConfigInputRepresentation (at "' + path_additionalConfig + '")\n';
|
|
2210
2210
|
message += referencepath_additionalConfigValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2213,7 +2213,7 @@ function validate$5(obj, path = 'EinsteinPromptTemplateGenerationsInputRepresent
|
|
|
2213
2213
|
}
|
|
2214
2214
|
const obj_inputParams = obj.inputParams;
|
|
2215
2215
|
const path_inputParams = path + '.inputParams';
|
|
2216
|
-
const referencepath_inputParamsValidationError = validate$
|
|
2216
|
+
const referencepath_inputParamsValidationError = validate$9(obj_inputParams, path_inputParams);
|
|
2217
2217
|
if (referencepath_inputParamsValidationError !== null) {
|
|
2218
2218
|
let message = 'Object doesn\'t match WrappedValueMap (at "' + path_inputParams + '")\n';
|
|
2219
2219
|
message += referencepath_inputParamsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2242,8 +2242,8 @@ function validate$5(obj, path = 'EinsteinPromptTemplateGenerationsInputRepresent
|
|
|
2242
2242
|
return v_error === undefined ? null : v_error;
|
|
2243
2243
|
}
|
|
2244
2244
|
|
|
2245
|
-
const VERSION$
|
|
2246
|
-
function validate$
|
|
2245
|
+
const VERSION$7 = "6458d624e5a1691821c764b6de0badb3";
|
|
2246
|
+
function validate$7(obj, path = 'EinsteinPromptTemplateGenerationsErrorRepresentation') {
|
|
2247
2247
|
const v_error = (() => {
|
|
2248
2248
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2249
2249
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2273,10 +2273,10 @@ function validate$4(obj, path = 'EinsteinPromptTemplateGenerationsErrorRepresent
|
|
|
2273
2273
|
})();
|
|
2274
2274
|
return v_error === undefined ? null : v_error;
|
|
2275
2275
|
}
|
|
2276
|
-
const select$
|
|
2276
|
+
const select$9 = function EinsteinPromptTemplateGenerationsErrorRepresentationSelect() {
|
|
2277
2277
|
return {
|
|
2278
2278
|
kind: 'Fragment',
|
|
2279
|
-
version: VERSION$
|
|
2279
|
+
version: VERSION$7,
|
|
2280
2280
|
private: [],
|
|
2281
2281
|
selections: [
|
|
2282
2282
|
{
|
|
@@ -2299,7 +2299,7 @@ const select$5 = function EinsteinPromptTemplateGenerationsErrorRepresentationSe
|
|
|
2299
2299
|
]
|
|
2300
2300
|
};
|
|
2301
2301
|
};
|
|
2302
|
-
function equals$
|
|
2302
|
+
function equals$7(existing, incoming) {
|
|
2303
2303
|
const existing_errorMessage = existing.errorMessage;
|
|
2304
2304
|
const incoming_errorMessage = incoming.errorMessage;
|
|
2305
2305
|
if (!(existing_errorMessage === incoming_errorMessage)) {
|
|
@@ -2331,8 +2331,8 @@ function equals$4(existing, incoming) {
|
|
|
2331
2331
|
return true;
|
|
2332
2332
|
}
|
|
2333
2333
|
|
|
2334
|
-
const VERSION$
|
|
2335
|
-
function validate$
|
|
2334
|
+
const VERSION$6 = "7c417ce44e4bc05dfcc454e6825590e8";
|
|
2335
|
+
function validate$6(obj, path = 'EinsteinPromptTemplateMaskSettingsRepresentation') {
|
|
2336
2336
|
const v_error = (() => {
|
|
2337
2337
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2338
2338
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2345,10 +2345,10 @@ function validate$3(obj, path = 'EinsteinPromptTemplateMaskSettingsRepresentatio
|
|
|
2345
2345
|
})();
|
|
2346
2346
|
return v_error === undefined ? null : v_error;
|
|
2347
2347
|
}
|
|
2348
|
-
const select$
|
|
2348
|
+
const select$8 = function EinsteinPromptTemplateMaskSettingsRepresentationSelect() {
|
|
2349
2349
|
return {
|
|
2350
2350
|
kind: 'Fragment',
|
|
2351
|
-
version: VERSION$
|
|
2351
|
+
version: VERSION$6,
|
|
2352
2352
|
private: [],
|
|
2353
2353
|
selections: [
|
|
2354
2354
|
{
|
|
@@ -2358,7 +2358,7 @@ const select$4 = function EinsteinPromptTemplateMaskSettingsRepresentationSelect
|
|
|
2358
2358
|
]
|
|
2359
2359
|
};
|
|
2360
2360
|
};
|
|
2361
|
-
function equals$
|
|
2361
|
+
function equals$6(existing, incoming) {
|
|
2362
2362
|
const existing_enableModeration = existing.enableModeration;
|
|
2363
2363
|
const incoming_enableModeration = incoming.enableModeration;
|
|
2364
2364
|
if (!(existing_enableModeration === incoming_enableModeration)) {
|
|
@@ -2367,8 +2367,8 @@ function equals$3(existing, incoming) {
|
|
|
2367
2367
|
return true;
|
|
2368
2368
|
}
|
|
2369
2369
|
|
|
2370
|
-
const VERSION$
|
|
2371
|
-
function validate$
|
|
2370
|
+
const VERSION$5 = "92ad1abd0e2a60bc36941409cadda7e2";
|
|
2371
|
+
function validate$5(obj, path = 'EinsteinPromptTemplateMaskContentRepresentation') {
|
|
2372
2372
|
const v_error = (() => {
|
|
2373
2373
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2374
2374
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2383,7 +2383,7 @@ function validate$2(obj, path = 'EinsteinPromptTemplateMaskContentRepresentation
|
|
|
2383
2383
|
const path_moderationSettings = path + '.moderationSettings';
|
|
2384
2384
|
let obj_moderationSettings_union0 = null;
|
|
2385
2385
|
const obj_moderationSettings_union0_error = (() => {
|
|
2386
|
-
const referencepath_moderationSettingsValidationError = validate$
|
|
2386
|
+
const referencepath_moderationSettingsValidationError = validate$6(obj_moderationSettings, path_moderationSettings);
|
|
2387
2387
|
if (referencepath_moderationSettingsValidationError !== null) {
|
|
2388
2388
|
let message = 'Object doesn\'t match EinsteinPromptTemplateMaskSettingsRepresentation (at "' + path_moderationSettings + '")\n';
|
|
2389
2389
|
message += referencepath_moderationSettingsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2419,11 +2419,11 @@ function validate$2(obj, path = 'EinsteinPromptTemplateMaskContentRepresentation
|
|
|
2419
2419
|
})();
|
|
2420
2420
|
return v_error === undefined ? null : v_error;
|
|
2421
2421
|
}
|
|
2422
|
-
const select$
|
|
2423
|
-
const { selections: EinsteinPromptTemplateMaskSettingsRepresentation__selections, opaque: EinsteinPromptTemplateMaskSettingsRepresentation__opaque, } = select$
|
|
2422
|
+
const select$7 = function EinsteinPromptTemplateMaskContentRepresentationSelect() {
|
|
2423
|
+
const { selections: EinsteinPromptTemplateMaskSettingsRepresentation__selections, opaque: EinsteinPromptTemplateMaskSettingsRepresentation__opaque, } = select$8();
|
|
2424
2424
|
return {
|
|
2425
2425
|
kind: 'Fragment',
|
|
2426
|
-
version: VERSION$
|
|
2426
|
+
version: VERSION$5,
|
|
2427
2427
|
private: [],
|
|
2428
2428
|
selections: [
|
|
2429
2429
|
{
|
|
@@ -2445,7 +2445,7 @@ const select$3 = function EinsteinPromptTemplateMaskContentRepresentationSelect(
|
|
|
2445
2445
|
]
|
|
2446
2446
|
};
|
|
2447
2447
|
};
|
|
2448
|
-
function equals$
|
|
2448
|
+
function equals$5(existing, incoming) {
|
|
2449
2449
|
const existing_content = existing.content;
|
|
2450
2450
|
const incoming_content = incoming.content;
|
|
2451
2451
|
if (!(existing_content === incoming_content)) {
|
|
@@ -2476,15 +2476,15 @@ function equals$2(existing, incoming) {
|
|
|
2476
2476
|
if (!(existing_moderationSettings === incoming_moderationSettings
|
|
2477
2477
|
|| (existing_moderationSettings != null &&
|
|
2478
2478
|
incoming_moderationSettings != null &&
|
|
2479
|
-
equals$
|
|
2479
|
+
equals$6(existing_moderationSettings, incoming_moderationSettings)))) {
|
|
2480
2480
|
return false;
|
|
2481
2481
|
}
|
|
2482
2482
|
}
|
|
2483
2483
|
return true;
|
|
2484
2484
|
}
|
|
2485
2485
|
|
|
2486
|
-
const VERSION$
|
|
2487
|
-
function validate$
|
|
2486
|
+
const VERSION$4 = "507a815605f8d30ae9b52b0ec513d25e";
|
|
2487
|
+
function validate$4(obj, path = 'EinsteinPromptTemplateMaskDataRepresentation') {
|
|
2488
2488
|
const v_error = (() => {
|
|
2489
2489
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2490
2490
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2514,10 +2514,10 @@ function validate$1(obj, path = 'EinsteinPromptTemplateMaskDataRepresentation')
|
|
|
2514
2514
|
})();
|
|
2515
2515
|
return v_error === undefined ? null : v_error;
|
|
2516
2516
|
}
|
|
2517
|
-
const select$
|
|
2517
|
+
const select$6 = function EinsteinPromptTemplateMaskDataRepresentationSelect() {
|
|
2518
2518
|
return {
|
|
2519
2519
|
kind: 'Fragment',
|
|
2520
|
-
version: VERSION$
|
|
2520
|
+
version: VERSION$4,
|
|
2521
2521
|
private: [],
|
|
2522
2522
|
selections: [
|
|
2523
2523
|
{
|
|
@@ -2536,7 +2536,7 @@ const select$2 = function EinsteinPromptTemplateMaskDataRepresentationSelect() {
|
|
|
2536
2536
|
]
|
|
2537
2537
|
};
|
|
2538
2538
|
};
|
|
2539
|
-
function equals$
|
|
2539
|
+
function equals$4(existing, incoming) {
|
|
2540
2540
|
const existing_originalValue = existing.originalValue;
|
|
2541
2541
|
const incoming_originalValue = incoming.originalValue;
|
|
2542
2542
|
if (!(existing_originalValue === incoming_originalValue)) {
|
|
@@ -2560,9 +2560,9 @@ function equals$1(existing, incoming) {
|
|
|
2560
2560
|
return true;
|
|
2561
2561
|
}
|
|
2562
2562
|
|
|
2563
|
-
const TTL = 100;
|
|
2564
|
-
const VERSION = "af7cfa8bd9d9cdd1923263da1734499c";
|
|
2565
|
-
function validate(obj, path = 'EinsteinPromptTemplateGenerationsRepresentation') {
|
|
2563
|
+
const TTL$1 = 100;
|
|
2564
|
+
const VERSION$3 = "af7cfa8bd9d9cdd1923263da1734499c";
|
|
2565
|
+
function validate$3(obj, path = 'EinsteinPromptTemplateGenerationsRepresentation') {
|
|
2566
2566
|
const v_error = (() => {
|
|
2567
2567
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2568
2568
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2576,7 +2576,7 @@ function validate(obj, path = 'EinsteinPromptTemplateGenerationsRepresentation')
|
|
|
2576
2576
|
for (let i = 0; i < obj_generationErrors.length; i++) {
|
|
2577
2577
|
const obj_generationErrors_item = obj_generationErrors[i];
|
|
2578
2578
|
const path_generationErrors_item = path_generationErrors + '[' + i + ']';
|
|
2579
|
-
const referencepath_generationErrors_itemValidationError = validate$
|
|
2579
|
+
const referencepath_generationErrors_itemValidationError = validate$7(obj_generationErrors_item, path_generationErrors_item);
|
|
2580
2580
|
if (referencepath_generationErrors_itemValidationError !== null) {
|
|
2581
2581
|
let message = 'Object doesn\'t match EinsteinPromptTemplateGenerationsErrorRepresentation (at "' + path_generationErrors_item + '")\n';
|
|
2582
2582
|
message += referencepath_generationErrors_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2592,7 +2592,7 @@ function validate(obj, path = 'EinsteinPromptTemplateGenerationsRepresentation')
|
|
|
2592
2592
|
for (let i = 0; i < obj_generations.length; i++) {
|
|
2593
2593
|
const obj_generations_item = obj_generations[i];
|
|
2594
2594
|
const path_generations_item = path_generations + '[' + i + ']';
|
|
2595
|
-
const referencepath_generations_itemValidationError = validate$
|
|
2595
|
+
const referencepath_generations_itemValidationError = validate$f(obj_generations_item, path_generations_item);
|
|
2596
2596
|
if (referencepath_generations_itemValidationError !== null) {
|
|
2597
2597
|
let message = 'Object doesn\'t match EinsteinLlmGenerationItemRepresentation (at "' + path_generations_item + '")\n';
|
|
2598
2598
|
message += referencepath_generations_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2603,7 +2603,7 @@ function validate(obj, path = 'EinsteinPromptTemplateGenerationsRepresentation')
|
|
|
2603
2603
|
const path_parameters = path + '.parameters';
|
|
2604
2604
|
let obj_parameters_union0 = null;
|
|
2605
2605
|
const obj_parameters_union0_error = (() => {
|
|
2606
|
-
const referencepath_parametersValidationError = validate$
|
|
2606
|
+
const referencepath_parametersValidationError = validate$e(obj_parameters, path_parameters);
|
|
2607
2607
|
if (referencepath_parametersValidationError !== null) {
|
|
2608
2608
|
let message = 'Object doesn\'t match WrappedMap (at "' + path_parameters + '")\n';
|
|
2609
2609
|
message += referencepath_parametersValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2673,7 +2673,7 @@ function validate(obj, path = 'EinsteinPromptTemplateGenerationsRepresentation')
|
|
|
2673
2673
|
for (let i = 0; i < obj_requestMessages.length; i++) {
|
|
2674
2674
|
const obj_requestMessages_item = obj_requestMessages[i];
|
|
2675
2675
|
const path_requestMessages_item = path_requestMessages + '[' + i + ']';
|
|
2676
|
-
const referencepath_requestMessages_itemValidationError = validate$
|
|
2676
|
+
const referencepath_requestMessages_itemValidationError = validate$5(obj_requestMessages_item, path_requestMessages_item);
|
|
2677
2677
|
if (referencepath_requestMessages_itemValidationError !== null) {
|
|
2678
2678
|
let message = 'Object doesn\'t match EinsteinPromptTemplateMaskContentRepresentation (at "' + path_requestMessages_item + '")\n';
|
|
2679
2679
|
message += referencepath_requestMessages_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2690,7 +2690,7 @@ function validate(obj, path = 'EinsteinPromptTemplateGenerationsRepresentation')
|
|
|
2690
2690
|
for (let i = 0; i < obj_responseMessages.length; i++) {
|
|
2691
2691
|
const obj_responseMessages_item = obj_responseMessages[i];
|
|
2692
2692
|
const path_responseMessages_item = path_responseMessages + '[' + i + ']';
|
|
2693
|
-
const referencepath_responseMessages_itemValidationError = validate$
|
|
2693
|
+
const referencepath_responseMessages_itemValidationError = validate$5(obj_responseMessages_item, path_responseMessages_item);
|
|
2694
2694
|
if (referencepath_responseMessages_itemValidationError !== null) {
|
|
2695
2695
|
let message = 'Object doesn\'t match EinsteinPromptTemplateMaskContentRepresentation (at "' + path_responseMessages_item + '")\n';
|
|
2696
2696
|
message += referencepath_responseMessages_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2707,7 +2707,7 @@ function validate(obj, path = 'EinsteinPromptTemplateGenerationsRepresentation')
|
|
|
2707
2707
|
for (let i = 0; i < obj_slotsMaskingInformation.length; i++) {
|
|
2708
2708
|
const obj_slotsMaskingInformation_item = obj_slotsMaskingInformation[i];
|
|
2709
2709
|
const path_slotsMaskingInformation_item = path_slotsMaskingInformation + '[' + i + ']';
|
|
2710
|
-
const referencepath_slotsMaskingInformation_itemValidationError = validate$
|
|
2710
|
+
const referencepath_slotsMaskingInformation_itemValidationError = validate$4(obj_slotsMaskingInformation_item, path_slotsMaskingInformation_item);
|
|
2711
2711
|
if (referencepath_slotsMaskingInformation_itemValidationError !== null) {
|
|
2712
2712
|
let message = 'Object doesn\'t match EinsteinPromptTemplateMaskDataRepresentation (at "' + path_slotsMaskingInformation_item + '")\n';
|
|
2713
2713
|
message += referencepath_slotsMaskingInformation_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2718,28 +2718,28 @@ function validate(obj, path = 'EinsteinPromptTemplateGenerationsRepresentation')
|
|
|
2718
2718
|
})();
|
|
2719
2719
|
return v_error === undefined ? null : v_error;
|
|
2720
2720
|
}
|
|
2721
|
-
const RepresentationType = 'EinsteinPromptTemplateGenerationsRepresentation';
|
|
2722
|
-
function keyBuilder(luvio, config) {
|
|
2723
|
-
return keyPrefix + '::' + RepresentationType + ':' + config.requestId;
|
|
2721
|
+
const RepresentationType$1 = 'EinsteinPromptTemplateGenerationsRepresentation';
|
|
2722
|
+
function keyBuilder$2(luvio, config) {
|
|
2723
|
+
return keyPrefix + '::' + RepresentationType$1 + ':' + config.requestId;
|
|
2724
2724
|
}
|
|
2725
2725
|
function keyBuilderFromType(luvio, object) {
|
|
2726
2726
|
const keyParams = {
|
|
2727
2727
|
requestId: object.requestId
|
|
2728
2728
|
};
|
|
2729
|
-
return keyBuilder(luvio, keyParams);
|
|
2729
|
+
return keyBuilder$2(luvio, keyParams);
|
|
2730
2730
|
}
|
|
2731
|
-
function normalize(input, existing, path, luvio, store, timestamp) {
|
|
2731
|
+
function normalize$1(input, existing, path, luvio, store, timestamp) {
|
|
2732
2732
|
return input;
|
|
2733
2733
|
}
|
|
2734
|
-
const select$
|
|
2735
|
-
const { selections: EinsteinPromptTemplateGenerationsErrorRepresentation__selections, opaque: EinsteinPromptTemplateGenerationsErrorRepresentation__opaque, } = select$
|
|
2736
|
-
const { selections: EinsteinLlmGenerationItemRepresentation__selections, opaque: EinsteinLlmGenerationItemRepresentation__opaque, } = select$
|
|
2737
|
-
const { selections: WrappedMap__selections, opaque: WrappedMap__opaque, } = select$
|
|
2738
|
-
const { selections: EinsteinPromptTemplateMaskContentRepresentation__selections, opaque: EinsteinPromptTemplateMaskContentRepresentation__opaque, } = select$
|
|
2739
|
-
const { selections: EinsteinPromptTemplateMaskDataRepresentation__selections, opaque: EinsteinPromptTemplateMaskDataRepresentation__opaque, } = select$
|
|
2734
|
+
const select$5 = function EinsteinPromptTemplateGenerationsRepresentationSelect() {
|
|
2735
|
+
const { selections: EinsteinPromptTemplateGenerationsErrorRepresentation__selections, opaque: EinsteinPromptTemplateGenerationsErrorRepresentation__opaque, } = select$9();
|
|
2736
|
+
const { selections: EinsteinLlmGenerationItemRepresentation__selections, opaque: EinsteinLlmGenerationItemRepresentation__opaque, } = select$f();
|
|
2737
|
+
const { selections: WrappedMap__selections, opaque: WrappedMap__opaque, } = select$e();
|
|
2738
|
+
const { selections: EinsteinPromptTemplateMaskContentRepresentation__selections, opaque: EinsteinPromptTemplateMaskContentRepresentation__opaque, } = select$7();
|
|
2739
|
+
const { selections: EinsteinPromptTemplateMaskDataRepresentation__selections, opaque: EinsteinPromptTemplateMaskDataRepresentation__opaque, } = select$6();
|
|
2740
2740
|
return {
|
|
2741
2741
|
kind: 'Fragment',
|
|
2742
|
-
version: VERSION,
|
|
2742
|
+
version: VERSION$3,
|
|
2743
2743
|
private: [],
|
|
2744
2744
|
selections: [
|
|
2745
2745
|
{
|
|
@@ -2797,7 +2797,7 @@ const select$1 = function EinsteinPromptTemplateGenerationsRepresentationSelect(
|
|
|
2797
2797
|
]
|
|
2798
2798
|
};
|
|
2799
2799
|
};
|
|
2800
|
-
function equals(existing, incoming) {
|
|
2800
|
+
function equals$3(existing, incoming) {
|
|
2801
2801
|
const existing_promptTemplateDevName = existing.promptTemplateDevName;
|
|
2802
2802
|
const incoming_promptTemplateDevName = incoming.promptTemplateDevName;
|
|
2803
2803
|
if (!(existing_promptTemplateDevName === incoming_promptTemplateDevName)) {
|
|
@@ -2818,7 +2818,7 @@ function equals(existing, incoming) {
|
|
|
2818
2818
|
return false;
|
|
2819
2819
|
}
|
|
2820
2820
|
const equals_generationErrors_items = equalsArray(existing_generationErrors, incoming_generationErrors, (existing_generationErrors_item, incoming_generationErrors_item) => {
|
|
2821
|
-
if (!(equals$
|
|
2821
|
+
if (!(equals$7(existing_generationErrors_item, incoming_generationErrors_item))) {
|
|
2822
2822
|
return false;
|
|
2823
2823
|
}
|
|
2824
2824
|
});
|
|
@@ -2829,7 +2829,7 @@ function equals(existing, incoming) {
|
|
|
2829
2829
|
const existing_generations = existing.generations;
|
|
2830
2830
|
const incoming_generations = incoming.generations;
|
|
2831
2831
|
const equals_generations_items = equalsArray(existing_generations, incoming_generations, (existing_generations_item, incoming_generations_item) => {
|
|
2832
|
-
if (!(equals$
|
|
2832
|
+
if (!(equals$b(existing_generations_item, incoming_generations_item))) {
|
|
2833
2833
|
return false;
|
|
2834
2834
|
}
|
|
2835
2835
|
});
|
|
@@ -2841,7 +2841,7 @@ function equals(existing, incoming) {
|
|
|
2841
2841
|
if (!(existing_parameters === incoming_parameters
|
|
2842
2842
|
|| (existing_parameters != null &&
|
|
2843
2843
|
incoming_parameters != null &&
|
|
2844
|
-
equals$
|
|
2844
|
+
equals$a(existing_parameters, incoming_parameters)))) {
|
|
2845
2845
|
return false;
|
|
2846
2846
|
}
|
|
2847
2847
|
const existing_prompt = existing.prompt;
|
|
@@ -2859,7 +2859,7 @@ function equals(existing, incoming) {
|
|
|
2859
2859
|
return false;
|
|
2860
2860
|
}
|
|
2861
2861
|
const equals_requestMessages_items = equalsArray(existing_requestMessages, incoming_requestMessages, (existing_requestMessages_item, incoming_requestMessages_item) => {
|
|
2862
|
-
if (!(equals$
|
|
2862
|
+
if (!(equals$5(existing_requestMessages_item, incoming_requestMessages_item))) {
|
|
2863
2863
|
return false;
|
|
2864
2864
|
}
|
|
2865
2865
|
});
|
|
@@ -2877,7 +2877,7 @@ function equals(existing, incoming) {
|
|
|
2877
2877
|
return false;
|
|
2878
2878
|
}
|
|
2879
2879
|
const equals_responseMessages_items = equalsArray(existing_responseMessages, incoming_responseMessages, (existing_responseMessages_item, incoming_responseMessages_item) => {
|
|
2880
|
-
if (!(equals$
|
|
2880
|
+
if (!(equals$5(existing_responseMessages_item, incoming_responseMessages_item))) {
|
|
2881
2881
|
return false;
|
|
2882
2882
|
}
|
|
2883
2883
|
});
|
|
@@ -2895,7 +2895,7 @@ function equals(existing, incoming) {
|
|
|
2895
2895
|
return false;
|
|
2896
2896
|
}
|
|
2897
2897
|
const equals_slotsMaskingInformation_items = equalsArray(existing_slotsMaskingInformation, incoming_slotsMaskingInformation, (existing_slotsMaskingInformation_item, incoming_slotsMaskingInformation_item) => {
|
|
2898
|
-
if (!(equals$
|
|
2898
|
+
if (!(equals$4(existing_slotsMaskingInformation_item, incoming_slotsMaskingInformation_item))) {
|
|
2899
2899
|
return false;
|
|
2900
2900
|
}
|
|
2901
2901
|
});
|
|
@@ -2905,41 +2905,41 @@ function equals(existing, incoming) {
|
|
|
2905
2905
|
}
|
|
2906
2906
|
return true;
|
|
2907
2907
|
}
|
|
2908
|
-
const ingest = function EinsteinPromptTemplateGenerationsRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
2908
|
+
const ingest$1 = function EinsteinPromptTemplateGenerationsRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
2909
2909
|
if (process.env.NODE_ENV !== 'production') {
|
|
2910
|
-
const validateError = validate(input);
|
|
2910
|
+
const validateError = validate$3(input);
|
|
2911
2911
|
if (validateError !== null) {
|
|
2912
2912
|
throw validateError;
|
|
2913
2913
|
}
|
|
2914
2914
|
}
|
|
2915
2915
|
const key = keyBuilderFromType(luvio, input);
|
|
2916
|
-
const ttlToUse = TTL;
|
|
2917
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize, "EinsteinLLM", VERSION, RepresentationType, equals);
|
|
2916
|
+
const ttlToUse = TTL$1;
|
|
2917
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$1, "EinsteinLLM", VERSION$3, RepresentationType$1, equals$3);
|
|
2918
2918
|
return createLink(key);
|
|
2919
2919
|
};
|
|
2920
|
-
function getTypeCacheKeys(rootKeySet, luvio, input, fullPathFactory) {
|
|
2920
|
+
function getTypeCacheKeys$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
2921
2921
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
2922
2922
|
const rootKey = keyBuilderFromType(luvio, input);
|
|
2923
2923
|
rootKeySet.set(rootKey, {
|
|
2924
2924
|
namespace: keyPrefix,
|
|
2925
|
-
representationName: RepresentationType,
|
|
2925
|
+
representationName: RepresentationType$1,
|
|
2926
2926
|
mergeable: false
|
|
2927
2927
|
});
|
|
2928
2928
|
}
|
|
2929
2929
|
|
|
2930
|
-
function select(luvio, params) {
|
|
2931
|
-
return select$
|
|
2930
|
+
function select$4(luvio, params) {
|
|
2931
|
+
return select$5();
|
|
2932
2932
|
}
|
|
2933
|
-
function getResponseCacheKeys(storeKeyMap, luvio, resourceParams, response) {
|
|
2934
|
-
getTypeCacheKeys(storeKeyMap, luvio, response);
|
|
2933
|
+
function getResponseCacheKeys$1(storeKeyMap, luvio, resourceParams, response) {
|
|
2934
|
+
getTypeCacheKeys$1(storeKeyMap, luvio, response);
|
|
2935
2935
|
}
|
|
2936
|
-
function ingestSuccess(luvio, resourceParams, response) {
|
|
2936
|
+
function ingestSuccess$1(luvio, resourceParams, response) {
|
|
2937
2937
|
const { body } = response;
|
|
2938
2938
|
const key = keyBuilderFromType(luvio, body);
|
|
2939
|
-
luvio.storeIngest(key, ingest, body);
|
|
2939
|
+
luvio.storeIngest(key, ingest$1, body);
|
|
2940
2940
|
const snapshot = luvio.storeLookup({
|
|
2941
2941
|
recordId: key,
|
|
2942
|
-
node: select(),
|
|
2942
|
+
node: select$4(),
|
|
2943
2943
|
variables: {},
|
|
2944
2944
|
});
|
|
2945
2945
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -2950,10 +2950,10 @@ function ingestSuccess(luvio, resourceParams, response) {
|
|
|
2950
2950
|
deepFreeze(snapshot.data);
|
|
2951
2951
|
return snapshot;
|
|
2952
2952
|
}
|
|
2953
|
-
function createResourceRequest(config) {
|
|
2953
|
+
function createResourceRequest$1(config) {
|
|
2954
2954
|
const headers = {};
|
|
2955
2955
|
return {
|
|
2956
|
-
baseUri: '/services/data/
|
|
2956
|
+
baseUri: '/services/data/v64.0',
|
|
2957
2957
|
basePath: '/einstein/prompt-templates/' + config.urlParams.promptTemplateDevName + '/generations',
|
|
2958
2958
|
method: 'post',
|
|
2959
2959
|
body: config.body,
|
|
@@ -2964,48 +2964,48 @@ function createResourceRequest(config) {
|
|
|
2964
2964
|
};
|
|
2965
2965
|
}
|
|
2966
2966
|
|
|
2967
|
-
const adapterName = 'createGenerationsForPromptTemplate';
|
|
2967
|
+
const adapterName$1 = 'createGenerationsForPromptTemplate';
|
|
2968
2968
|
const createGenerationsForPromptTemplate_ConfigPropertyMetadata = [
|
|
2969
2969
|
generateParamConfigMetadata('promptTemplateDevName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
2970
2970
|
generateParamConfigMetadata('versionId', false, 1 /* QueryParameter */, 0 /* String */),
|
|
2971
2971
|
generateParamConfigMetadata('promptTemplateGenerationsInput', true, 2 /* Body */, 4 /* Unsupported */),
|
|
2972
2972
|
];
|
|
2973
|
-
const createGenerationsForPromptTemplate_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName, createGenerationsForPromptTemplate_ConfigPropertyMetadata);
|
|
2974
|
-
const createResourceParams = /*#__PURE__*/ createResourceParams$
|
|
2975
|
-
function typeCheckConfig(untrustedConfig) {
|
|
2973
|
+
const createGenerationsForPromptTemplate_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$1, createGenerationsForPromptTemplate_ConfigPropertyMetadata);
|
|
2974
|
+
const createResourceParams$1 = /*#__PURE__*/ createResourceParams$6(createGenerationsForPromptTemplate_ConfigPropertyMetadata);
|
|
2975
|
+
function typeCheckConfig$1(untrustedConfig) {
|
|
2976
2976
|
const config = {};
|
|
2977
|
-
typeCheckConfig$
|
|
2977
|
+
typeCheckConfig$6(untrustedConfig, config, createGenerationsForPromptTemplate_ConfigPropertyMetadata);
|
|
2978
2978
|
const untrustedConfig_promptTemplateGenerationsInput = untrustedConfig.promptTemplateGenerationsInput;
|
|
2979
|
-
const referenceEinsteinPromptTemplateGenerationsInputRepresentationValidationError = validate$
|
|
2979
|
+
const referenceEinsteinPromptTemplateGenerationsInputRepresentationValidationError = validate$8(untrustedConfig_promptTemplateGenerationsInput);
|
|
2980
2980
|
if (referenceEinsteinPromptTemplateGenerationsInputRepresentationValidationError === null) {
|
|
2981
2981
|
config.promptTemplateGenerationsInput = untrustedConfig_promptTemplateGenerationsInput;
|
|
2982
2982
|
}
|
|
2983
2983
|
return config;
|
|
2984
2984
|
}
|
|
2985
|
-
function validateAdapterConfig(untrustedConfig, configPropertyNames) {
|
|
2985
|
+
function validateAdapterConfig$1(untrustedConfig, configPropertyNames) {
|
|
2986
2986
|
if (!untrustedIsObject(untrustedConfig)) {
|
|
2987
2987
|
return null;
|
|
2988
2988
|
}
|
|
2989
2989
|
if (process.env.NODE_ENV !== 'production') {
|
|
2990
2990
|
validateConfig(untrustedConfig, configPropertyNames);
|
|
2991
2991
|
}
|
|
2992
|
-
const config = typeCheckConfig(untrustedConfig);
|
|
2992
|
+
const config = typeCheckConfig$1(untrustedConfig);
|
|
2993
2993
|
if (!areRequiredParametersPresent(config, configPropertyNames)) {
|
|
2994
2994
|
return null;
|
|
2995
2995
|
}
|
|
2996
2996
|
return config;
|
|
2997
2997
|
}
|
|
2998
|
-
function buildNetworkSnapshot(luvio, config, options) {
|
|
2999
|
-
const resourceParams = createResourceParams(config);
|
|
3000
|
-
const request = createResourceRequest(resourceParams);
|
|
2998
|
+
function buildNetworkSnapshot$1(luvio, config, options) {
|
|
2999
|
+
const resourceParams = createResourceParams$1(config);
|
|
3000
|
+
const request = createResourceRequest$1(resourceParams);
|
|
3001
3001
|
return luvio.dispatchResourceRequest(request, options)
|
|
3002
3002
|
.then((response) => {
|
|
3003
3003
|
return luvio.handleSuccessResponse(() => {
|
|
3004
|
-
const snapshot = ingestSuccess(luvio, resourceParams, response);
|
|
3004
|
+
const snapshot = ingestSuccess$1(luvio, resourceParams, response);
|
|
3005
3005
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
3006
3006
|
}, () => {
|
|
3007
3007
|
const cache = new StoreKeyMap();
|
|
3008
|
-
getResponseCacheKeys(cache, luvio, resourceParams, response.body);
|
|
3008
|
+
getResponseCacheKeys$1(cache, luvio, resourceParams, response.body);
|
|
3009
3009
|
return cache;
|
|
3010
3010
|
});
|
|
3011
3011
|
}, (response) => {
|
|
@@ -3015,13 +3015,407 @@ function buildNetworkSnapshot(luvio, config, options) {
|
|
|
3015
3015
|
}
|
|
3016
3016
|
const createGenerationsForPromptTemplateAdapterFactory = (luvio) => {
|
|
3017
3017
|
return function createGenerationsForPromptTemplate(untrustedConfig) {
|
|
3018
|
-
const config = validateAdapterConfig(untrustedConfig, createGenerationsForPromptTemplate_ConfigPropertyNames);
|
|
3018
|
+
const config = validateAdapterConfig$1(untrustedConfig, createGenerationsForPromptTemplate_ConfigPropertyNames);
|
|
3019
3019
|
// Invalid or incomplete config
|
|
3020
3020
|
if (config === null) {
|
|
3021
3021
|
throw new Error('Invalid config for "createGenerationsForPromptTemplate"');
|
|
3022
3022
|
}
|
|
3023
|
-
return buildNetworkSnapshot(luvio, config);
|
|
3023
|
+
return buildNetworkSnapshot$1(luvio, config);
|
|
3024
3024
|
};
|
|
3025
3025
|
};
|
|
3026
3026
|
|
|
3027
|
-
|
|
3027
|
+
const VERSION$2 = "b513bbac1672327d8eaaf120660e94b5";
|
|
3028
|
+
function validate$2(obj, path = 'EinsteinPromptTemplateSupportedLanguageErrorRepresentation') {
|
|
3029
|
+
const v_error = (() => {
|
|
3030
|
+
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
3031
|
+
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
3032
|
+
}
|
|
3033
|
+
const obj_errorMessage = obj.errorMessage;
|
|
3034
|
+
const path_errorMessage = path + '.errorMessage';
|
|
3035
|
+
if (typeof obj_errorMessage !== 'string') {
|
|
3036
|
+
return new TypeError('Expected "string" but received "' + typeof obj_errorMessage + '" (at "' + path_errorMessage + '")');
|
|
3037
|
+
}
|
|
3038
|
+
const obj_messageCode = obj.messageCode;
|
|
3039
|
+
const path_messageCode = path + '.messageCode';
|
|
3040
|
+
if (typeof obj_messageCode !== 'string') {
|
|
3041
|
+
return new TypeError('Expected "string" but received "' + typeof obj_messageCode + '" (at "' + path_messageCode + '")');
|
|
3042
|
+
}
|
|
3043
|
+
})();
|
|
3044
|
+
return v_error === undefined ? null : v_error;
|
|
3045
|
+
}
|
|
3046
|
+
const select$3 = function EinsteinPromptTemplateSupportedLanguageErrorRepresentationSelect() {
|
|
3047
|
+
return {
|
|
3048
|
+
kind: 'Fragment',
|
|
3049
|
+
version: VERSION$2,
|
|
3050
|
+
private: [],
|
|
3051
|
+
selections: [
|
|
3052
|
+
{
|
|
3053
|
+
name: 'errorMessage',
|
|
3054
|
+
kind: 'Scalar'
|
|
3055
|
+
},
|
|
3056
|
+
{
|
|
3057
|
+
name: 'messageCode',
|
|
3058
|
+
kind: 'Scalar'
|
|
3059
|
+
}
|
|
3060
|
+
]
|
|
3061
|
+
};
|
|
3062
|
+
};
|
|
3063
|
+
function equals$2(existing, incoming) {
|
|
3064
|
+
const existing_errorMessage = existing.errorMessage;
|
|
3065
|
+
const incoming_errorMessage = incoming.errorMessage;
|
|
3066
|
+
if (!(existing_errorMessage === incoming_errorMessage)) {
|
|
3067
|
+
return false;
|
|
3068
|
+
}
|
|
3069
|
+
const existing_messageCode = existing.messageCode;
|
|
3070
|
+
const incoming_messageCode = incoming.messageCode;
|
|
3071
|
+
if (!(existing_messageCode === incoming_messageCode)) {
|
|
3072
|
+
return false;
|
|
3073
|
+
}
|
|
3074
|
+
return true;
|
|
3075
|
+
}
|
|
3076
|
+
|
|
3077
|
+
const VERSION$1 = "65a17d345c28eeca91872a73d8ffe9fd";
|
|
3078
|
+
function validate$1(obj, path = 'EinsteinPromptTemplateSupportedLanguageRepresentation') {
|
|
3079
|
+
const v_error = (() => {
|
|
3080
|
+
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
3081
|
+
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
3082
|
+
}
|
|
3083
|
+
const obj_languageCode = obj.languageCode;
|
|
3084
|
+
const path_languageCode = path + '.languageCode';
|
|
3085
|
+
if (typeof obj_languageCode !== 'string') {
|
|
3086
|
+
return new TypeError('Expected "string" but received "' + typeof obj_languageCode + '" (at "' + path_languageCode + '")');
|
|
3087
|
+
}
|
|
3088
|
+
const obj_languageDisplayName = obj.languageDisplayName;
|
|
3089
|
+
const path_languageDisplayName = path + '.languageDisplayName';
|
|
3090
|
+
if (typeof obj_languageDisplayName !== 'string') {
|
|
3091
|
+
return new TypeError('Expected "string" but received "' + typeof obj_languageDisplayName + '" (at "' + path_languageDisplayName + '")');
|
|
3092
|
+
}
|
|
3093
|
+
})();
|
|
3094
|
+
return v_error === undefined ? null : v_error;
|
|
3095
|
+
}
|
|
3096
|
+
const select$2 = function EinsteinPromptTemplateSupportedLanguageRepresentationSelect() {
|
|
3097
|
+
return {
|
|
3098
|
+
kind: 'Fragment',
|
|
3099
|
+
version: VERSION$1,
|
|
3100
|
+
private: [],
|
|
3101
|
+
selections: [
|
|
3102
|
+
{
|
|
3103
|
+
name: 'languageCode',
|
|
3104
|
+
kind: 'Scalar'
|
|
3105
|
+
},
|
|
3106
|
+
{
|
|
3107
|
+
name: 'languageDisplayName',
|
|
3108
|
+
kind: 'Scalar'
|
|
3109
|
+
}
|
|
3110
|
+
]
|
|
3111
|
+
};
|
|
3112
|
+
};
|
|
3113
|
+
function equals$1(existing, incoming) {
|
|
3114
|
+
const existing_languageCode = existing.languageCode;
|
|
3115
|
+
const incoming_languageCode = incoming.languageCode;
|
|
3116
|
+
if (!(existing_languageCode === incoming_languageCode)) {
|
|
3117
|
+
return false;
|
|
3118
|
+
}
|
|
3119
|
+
const existing_languageDisplayName = existing.languageDisplayName;
|
|
3120
|
+
const incoming_languageDisplayName = incoming.languageDisplayName;
|
|
3121
|
+
if (!(existing_languageDisplayName === incoming_languageDisplayName)) {
|
|
3122
|
+
return false;
|
|
3123
|
+
}
|
|
3124
|
+
return true;
|
|
3125
|
+
}
|
|
3126
|
+
|
|
3127
|
+
const TTL = 100;
|
|
3128
|
+
const VERSION = "c635f260bce9a11f7c3bf31d60f42b53";
|
|
3129
|
+
function validate(obj, path = 'EinsteinPromptTemplateVersionOutputLanguagesRepresentation') {
|
|
3130
|
+
const v_error = (() => {
|
|
3131
|
+
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
3132
|
+
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
3133
|
+
}
|
|
3134
|
+
const obj_errors = obj.errors;
|
|
3135
|
+
const path_errors = path + '.errors';
|
|
3136
|
+
if (!ArrayIsArray(obj_errors)) {
|
|
3137
|
+
return new TypeError('Expected "array" but received "' + typeof obj_errors + '" (at "' + path_errors + '")');
|
|
3138
|
+
}
|
|
3139
|
+
for (let i = 0; i < obj_errors.length; i++) {
|
|
3140
|
+
const obj_errors_item = obj_errors[i];
|
|
3141
|
+
const path_errors_item = path_errors + '[' + i + ']';
|
|
3142
|
+
const referencepath_errors_itemValidationError = validate$2(obj_errors_item, path_errors_item);
|
|
3143
|
+
if (referencepath_errors_itemValidationError !== null) {
|
|
3144
|
+
let message = 'Object doesn\'t match EinsteinPromptTemplateSupportedLanguageErrorRepresentation (at "' + path_errors_item + '")\n';
|
|
3145
|
+
message += referencepath_errors_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
3146
|
+
return new TypeError(message);
|
|
3147
|
+
}
|
|
3148
|
+
}
|
|
3149
|
+
const obj_isSuccess = obj.isSuccess;
|
|
3150
|
+
const path_isSuccess = path + '.isSuccess';
|
|
3151
|
+
if (typeof obj_isSuccess !== 'boolean') {
|
|
3152
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSuccess + '" (at "' + path_isSuccess + '")');
|
|
3153
|
+
}
|
|
3154
|
+
const obj_promptTemplateDevName = obj.promptTemplateDevName;
|
|
3155
|
+
const path_promptTemplateDevName = path + '.promptTemplateDevName';
|
|
3156
|
+
if (typeof obj_promptTemplateDevName !== 'string') {
|
|
3157
|
+
return new TypeError('Expected "string" but received "' + typeof obj_promptTemplateDevName + '" (at "' + path_promptTemplateDevName + '")');
|
|
3158
|
+
}
|
|
3159
|
+
const obj_supportedLanguages = obj.supportedLanguages;
|
|
3160
|
+
const path_supportedLanguages = path + '.supportedLanguages';
|
|
3161
|
+
if (!ArrayIsArray(obj_supportedLanguages)) {
|
|
3162
|
+
return new TypeError('Expected "array" but received "' + typeof obj_supportedLanguages + '" (at "' + path_supportedLanguages + '")');
|
|
3163
|
+
}
|
|
3164
|
+
for (let i = 0; i < obj_supportedLanguages.length; i++) {
|
|
3165
|
+
const obj_supportedLanguages_item = obj_supportedLanguages[i];
|
|
3166
|
+
const path_supportedLanguages_item = path_supportedLanguages + '[' + i + ']';
|
|
3167
|
+
const referencepath_supportedLanguages_itemValidationError = validate$1(obj_supportedLanguages_item, path_supportedLanguages_item);
|
|
3168
|
+
if (referencepath_supportedLanguages_itemValidationError !== null) {
|
|
3169
|
+
let message = 'Object doesn\'t match EinsteinPromptTemplateSupportedLanguageRepresentation (at "' + path_supportedLanguages_item + '")\n';
|
|
3170
|
+
message += referencepath_supportedLanguages_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
3171
|
+
return new TypeError(message);
|
|
3172
|
+
}
|
|
3173
|
+
}
|
|
3174
|
+
const obj_versionId = obj.versionId;
|
|
3175
|
+
const path_versionId = path + '.versionId';
|
|
3176
|
+
if (typeof obj_versionId !== 'string') {
|
|
3177
|
+
return new TypeError('Expected "string" but received "' + typeof obj_versionId + '" (at "' + path_versionId + '")');
|
|
3178
|
+
}
|
|
3179
|
+
})();
|
|
3180
|
+
return v_error === undefined ? null : v_error;
|
|
3181
|
+
}
|
|
3182
|
+
const RepresentationType = 'EinsteinPromptTemplateVersionOutputLanguagesRepresentation';
|
|
3183
|
+
function normalize(input, existing, path, luvio, store, timestamp) {
|
|
3184
|
+
return input;
|
|
3185
|
+
}
|
|
3186
|
+
const select$1 = function EinsteinPromptTemplateVersionOutputLanguagesRepresentationSelect() {
|
|
3187
|
+
const { selections: EinsteinPromptTemplateSupportedLanguageErrorRepresentation__selections, opaque: EinsteinPromptTemplateSupportedLanguageErrorRepresentation__opaque, } = select$3();
|
|
3188
|
+
const { selections: EinsteinPromptTemplateSupportedLanguageRepresentation__selections, opaque: EinsteinPromptTemplateSupportedLanguageRepresentation__opaque, } = select$2();
|
|
3189
|
+
return {
|
|
3190
|
+
kind: 'Fragment',
|
|
3191
|
+
version: VERSION,
|
|
3192
|
+
private: [],
|
|
3193
|
+
selections: [
|
|
3194
|
+
{
|
|
3195
|
+
name: 'errors',
|
|
3196
|
+
kind: 'Object',
|
|
3197
|
+
plural: true,
|
|
3198
|
+
selections: EinsteinPromptTemplateSupportedLanguageErrorRepresentation__selections
|
|
3199
|
+
},
|
|
3200
|
+
{
|
|
3201
|
+
name: 'isSuccess',
|
|
3202
|
+
kind: 'Scalar'
|
|
3203
|
+
},
|
|
3204
|
+
{
|
|
3205
|
+
name: 'promptTemplateDevName',
|
|
3206
|
+
kind: 'Scalar'
|
|
3207
|
+
},
|
|
3208
|
+
{
|
|
3209
|
+
name: 'supportedLanguages',
|
|
3210
|
+
kind: 'Object',
|
|
3211
|
+
plural: true,
|
|
3212
|
+
selections: EinsteinPromptTemplateSupportedLanguageRepresentation__selections
|
|
3213
|
+
},
|
|
3214
|
+
{
|
|
3215
|
+
name: 'versionId',
|
|
3216
|
+
kind: 'Scalar'
|
|
3217
|
+
}
|
|
3218
|
+
]
|
|
3219
|
+
};
|
|
3220
|
+
};
|
|
3221
|
+
function equals(existing, incoming) {
|
|
3222
|
+
const existing_isSuccess = existing.isSuccess;
|
|
3223
|
+
const incoming_isSuccess = incoming.isSuccess;
|
|
3224
|
+
if (!(existing_isSuccess === incoming_isSuccess)) {
|
|
3225
|
+
return false;
|
|
3226
|
+
}
|
|
3227
|
+
const existing_promptTemplateDevName = existing.promptTemplateDevName;
|
|
3228
|
+
const incoming_promptTemplateDevName = incoming.promptTemplateDevName;
|
|
3229
|
+
if (!(existing_promptTemplateDevName === incoming_promptTemplateDevName)) {
|
|
3230
|
+
return false;
|
|
3231
|
+
}
|
|
3232
|
+
const existing_versionId = existing.versionId;
|
|
3233
|
+
const incoming_versionId = incoming.versionId;
|
|
3234
|
+
if (!(existing_versionId === incoming_versionId)) {
|
|
3235
|
+
return false;
|
|
3236
|
+
}
|
|
3237
|
+
const existing_errors = existing.errors;
|
|
3238
|
+
const incoming_errors = incoming.errors;
|
|
3239
|
+
const equals_errors_items = equalsArray(existing_errors, incoming_errors, (existing_errors_item, incoming_errors_item) => {
|
|
3240
|
+
if (!(equals$2(existing_errors_item, incoming_errors_item))) {
|
|
3241
|
+
return false;
|
|
3242
|
+
}
|
|
3243
|
+
});
|
|
3244
|
+
if (equals_errors_items === false) {
|
|
3245
|
+
return false;
|
|
3246
|
+
}
|
|
3247
|
+
const existing_supportedLanguages = existing.supportedLanguages;
|
|
3248
|
+
const incoming_supportedLanguages = incoming.supportedLanguages;
|
|
3249
|
+
const equals_supportedLanguages_items = equalsArray(existing_supportedLanguages, incoming_supportedLanguages, (existing_supportedLanguages_item, incoming_supportedLanguages_item) => {
|
|
3250
|
+
if (!(equals$1(existing_supportedLanguages_item, incoming_supportedLanguages_item))) {
|
|
3251
|
+
return false;
|
|
3252
|
+
}
|
|
3253
|
+
});
|
|
3254
|
+
if (equals_supportedLanguages_items === false) {
|
|
3255
|
+
return false;
|
|
3256
|
+
}
|
|
3257
|
+
return true;
|
|
3258
|
+
}
|
|
3259
|
+
const ingest = function EinsteinPromptTemplateVersionOutputLanguagesRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
3260
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
3261
|
+
const validateError = validate(input);
|
|
3262
|
+
if (validateError !== null) {
|
|
3263
|
+
throw validateError;
|
|
3264
|
+
}
|
|
3265
|
+
}
|
|
3266
|
+
const key = path.fullPath;
|
|
3267
|
+
const ttlToUse = TTL;
|
|
3268
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize, "EinsteinLLM", VERSION, RepresentationType, equals);
|
|
3269
|
+
return createLink(key);
|
|
3270
|
+
};
|
|
3271
|
+
function getTypeCacheKeys(rootKeySet, luvio, input, fullPathFactory) {
|
|
3272
|
+
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
3273
|
+
const rootKey = fullPathFactory();
|
|
3274
|
+
rootKeySet.set(rootKey, {
|
|
3275
|
+
namespace: keyPrefix,
|
|
3276
|
+
representationName: RepresentationType,
|
|
3277
|
+
mergeable: false
|
|
3278
|
+
});
|
|
3279
|
+
}
|
|
3280
|
+
|
|
3281
|
+
function select(luvio, params) {
|
|
3282
|
+
return select$1();
|
|
3283
|
+
}
|
|
3284
|
+
function keyBuilder$1(luvio, params) {
|
|
3285
|
+
return keyPrefix + '::EinsteinPromptTemplateVersionOutputLanguagesRepresentation:(' + 'useStandardVersion:' + params.queryParams.useStandardVersion + ',' + 'versionId:' + params.queryParams.versionId + ',' + 'promptTemplateDevName:' + params.urlParams.promptTemplateDevName + ')';
|
|
3286
|
+
}
|
|
3287
|
+
function getResponseCacheKeys(storeKeyMap, luvio, resourceParams, response) {
|
|
3288
|
+
getTypeCacheKeys(storeKeyMap, luvio, response, () => keyBuilder$1(luvio, resourceParams));
|
|
3289
|
+
}
|
|
3290
|
+
function ingestSuccess(luvio, resourceParams, response, snapshotRefresh) {
|
|
3291
|
+
const { body } = response;
|
|
3292
|
+
const key = keyBuilder$1(luvio, resourceParams);
|
|
3293
|
+
luvio.storeIngest(key, ingest, body);
|
|
3294
|
+
const snapshot = luvio.storeLookup({
|
|
3295
|
+
recordId: key,
|
|
3296
|
+
node: select(),
|
|
3297
|
+
variables: {},
|
|
3298
|
+
}, snapshotRefresh);
|
|
3299
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
3300
|
+
if (snapshot.state !== 'Fulfilled') {
|
|
3301
|
+
throw new Error('Invalid network response. Expected resource response to result in Fulfilled snapshot');
|
|
3302
|
+
}
|
|
3303
|
+
}
|
|
3304
|
+
deepFreeze(snapshot.data);
|
|
3305
|
+
return snapshot;
|
|
3306
|
+
}
|
|
3307
|
+
function ingestError(luvio, params, error, snapshotRefresh) {
|
|
3308
|
+
const key = keyBuilder$1(luvio, params);
|
|
3309
|
+
const errorSnapshot = luvio.errorSnapshot(error, snapshotRefresh);
|
|
3310
|
+
const storeMetadataParams = {
|
|
3311
|
+
ttl: TTL,
|
|
3312
|
+
namespace: keyPrefix,
|
|
3313
|
+
version: VERSION,
|
|
3314
|
+
representationName: RepresentationType
|
|
3315
|
+
};
|
|
3316
|
+
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
3317
|
+
return errorSnapshot;
|
|
3318
|
+
}
|
|
3319
|
+
function createResourceRequest(config) {
|
|
3320
|
+
const headers = {};
|
|
3321
|
+
return {
|
|
3322
|
+
baseUri: '/services/data/v64.0',
|
|
3323
|
+
basePath: '/einstein/prompt-template/' + config.urlParams.promptTemplateDevName + '/output-languages',
|
|
3324
|
+
method: 'get',
|
|
3325
|
+
body: null,
|
|
3326
|
+
urlParams: config.urlParams,
|
|
3327
|
+
queryParams: config.queryParams,
|
|
3328
|
+
headers,
|
|
3329
|
+
priority: 'normal',
|
|
3330
|
+
};
|
|
3331
|
+
}
|
|
3332
|
+
|
|
3333
|
+
const adapterName = 'getOutputLanguages';
|
|
3334
|
+
const getOutputLanguages_ConfigPropertyMetadata = [
|
|
3335
|
+
generateParamConfigMetadata('promptTemplateDevName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
3336
|
+
generateParamConfigMetadata('useStandardVersion', false, 1 /* QueryParameter */, 1 /* Boolean */),
|
|
3337
|
+
generateParamConfigMetadata('versionId', false, 1 /* QueryParameter */, 0 /* String */),
|
|
3338
|
+
];
|
|
3339
|
+
const getOutputLanguages_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName, getOutputLanguages_ConfigPropertyMetadata);
|
|
3340
|
+
const createResourceParams = /*#__PURE__*/ createResourceParams$6(getOutputLanguages_ConfigPropertyMetadata);
|
|
3341
|
+
function keyBuilder(luvio, config) {
|
|
3342
|
+
const resourceParams = createResourceParams(config);
|
|
3343
|
+
return keyBuilder$1(luvio, resourceParams);
|
|
3344
|
+
}
|
|
3345
|
+
function typeCheckConfig(untrustedConfig) {
|
|
3346
|
+
const config = {};
|
|
3347
|
+
typeCheckConfig$6(untrustedConfig, config, getOutputLanguages_ConfigPropertyMetadata);
|
|
3348
|
+
return config;
|
|
3349
|
+
}
|
|
3350
|
+
function validateAdapterConfig(untrustedConfig, configPropertyNames) {
|
|
3351
|
+
if (!untrustedIsObject(untrustedConfig)) {
|
|
3352
|
+
return null;
|
|
3353
|
+
}
|
|
3354
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
3355
|
+
validateConfig(untrustedConfig, configPropertyNames);
|
|
3356
|
+
}
|
|
3357
|
+
const config = typeCheckConfig(untrustedConfig);
|
|
3358
|
+
if (!areRequiredParametersPresent(config, configPropertyNames)) {
|
|
3359
|
+
return null;
|
|
3360
|
+
}
|
|
3361
|
+
return config;
|
|
3362
|
+
}
|
|
3363
|
+
function adapterFragment(luvio, config) {
|
|
3364
|
+
createResourceParams(config);
|
|
3365
|
+
return select();
|
|
3366
|
+
}
|
|
3367
|
+
function onFetchResponseSuccess(luvio, config, resourceParams, response) {
|
|
3368
|
+
const snapshot = ingestSuccess(luvio, resourceParams, response, {
|
|
3369
|
+
config,
|
|
3370
|
+
resolve: () => buildNetworkSnapshot(luvio, config, snapshotRefreshOptions)
|
|
3371
|
+
});
|
|
3372
|
+
return luvio.storeBroadcast().then(() => snapshot);
|
|
3373
|
+
}
|
|
3374
|
+
function onFetchResponseError(luvio, config, resourceParams, response) {
|
|
3375
|
+
const snapshot = ingestError(luvio, resourceParams, response, {
|
|
3376
|
+
config,
|
|
3377
|
+
resolve: () => buildNetworkSnapshot(luvio, config, snapshotRefreshOptions)
|
|
3378
|
+
});
|
|
3379
|
+
return luvio.storeBroadcast().then(() => snapshot);
|
|
3380
|
+
}
|
|
3381
|
+
function buildNetworkSnapshot(luvio, config, options) {
|
|
3382
|
+
const resourceParams = createResourceParams(config);
|
|
3383
|
+
const request = createResourceRequest(resourceParams);
|
|
3384
|
+
return luvio.dispatchResourceRequest(request, options)
|
|
3385
|
+
.then((response) => {
|
|
3386
|
+
return luvio.handleSuccessResponse(() => onFetchResponseSuccess(luvio, config, resourceParams, response), () => {
|
|
3387
|
+
const cache = new StoreKeyMap();
|
|
3388
|
+
getResponseCacheKeys(cache, luvio, resourceParams, response.body);
|
|
3389
|
+
return cache;
|
|
3390
|
+
});
|
|
3391
|
+
}, (response) => {
|
|
3392
|
+
return luvio.handleErrorResponse(() => onFetchResponseError(luvio, config, resourceParams, response));
|
|
3393
|
+
});
|
|
3394
|
+
}
|
|
3395
|
+
function buildNetworkSnapshotCachePolicy(context, coercedAdapterRequestContext) {
|
|
3396
|
+
return buildNetworkSnapshotCachePolicy$3(context, coercedAdapterRequestContext, buildNetworkSnapshot, undefined, false);
|
|
3397
|
+
}
|
|
3398
|
+
function buildCachedSnapshotCachePolicy(context, storeLookup) {
|
|
3399
|
+
const { luvio, config } = context;
|
|
3400
|
+
const selector = {
|
|
3401
|
+
recordId: keyBuilder(luvio, config),
|
|
3402
|
+
node: adapterFragment(luvio, config),
|
|
3403
|
+
variables: {},
|
|
3404
|
+
};
|
|
3405
|
+
const cacheSnapshot = storeLookup(selector, {
|
|
3406
|
+
config,
|
|
3407
|
+
resolve: () => buildNetworkSnapshot(luvio, config, snapshotRefreshOptions)
|
|
3408
|
+
});
|
|
3409
|
+
return cacheSnapshot;
|
|
3410
|
+
}
|
|
3411
|
+
const getOutputLanguagesAdapterFactory = (luvio) => function EinsteinLLM__getOutputLanguages(untrustedConfig, requestContext) {
|
|
3412
|
+
const config = validateAdapterConfig(untrustedConfig, getOutputLanguages_ConfigPropertyNames);
|
|
3413
|
+
// Invalid or incomplete config
|
|
3414
|
+
if (config === null) {
|
|
3415
|
+
return null;
|
|
3416
|
+
}
|
|
3417
|
+
return luvio.applyCachePolicy((requestContext || {}), { config, luvio }, // BuildSnapshotContext
|
|
3418
|
+
buildCachedSnapshotCachePolicy, buildNetworkSnapshotCachePolicy);
|
|
3419
|
+
};
|
|
3420
|
+
|
|
3421
|
+
export { createEmbeddingsAdapterFactory, createFeedbackAdapterFactory, createGenerationsAdapterFactory, createGenerationsForPromptTemplateAdapterFactory, getOutputLanguagesAdapterFactory, getPromptTemplatesAdapterFactory };
|