@salesforce/lds-adapters-service-einsteinllm 1.331.0 → 1.332.0-dev10
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 +774 -342
- 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/EinsteinPromptTemplateGenerationsRepresentation.d.ts +4 -1
- 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 +723 -279
- package/src/raml/api.raml +71 -0
- package/src/raml/luvio.raml +7 -0
package/sfdc/index.js
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
/* proxy-compat-disable */
|
|
15
15
|
import { createInstrumentedAdapter, createLDSAdapter, createWireAdapterConstructor, createImperativeAdapter } from 'force/ldsBindings';
|
|
16
16
|
import { withDefaultLuvio } from 'force/ldsEngine';
|
|
17
|
-
import { serializeStructuredKey, ingestShape, deepFreeze, buildNetworkSnapshotCachePolicy as buildNetworkSnapshotCachePolicy$
|
|
17
|
+
import { serializeStructuredKey, ingestShape, deepFreeze, buildNetworkSnapshotCachePolicy as buildNetworkSnapshotCachePolicy$3, StoreKeyMap, createResourceParams as createResourceParams$6, typeCheckConfig as typeCheckConfig$6 } from 'force/luvioEngine';
|
|
18
18
|
|
|
19
19
|
const { hasOwnProperty: ObjectPrototypeHasOwnProperty } = Object.prototype;
|
|
20
20
|
const { keys: ObjectKeys$1, create: ObjectCreate$1 } = Object;
|
|
@@ -178,7 +178,7 @@ function createLink(ref) {
|
|
|
178
178
|
};
|
|
179
179
|
}
|
|
180
180
|
|
|
181
|
-
function validate$
|
|
181
|
+
function validate$q(obj, path = 'EinsteinLlmEmbeddingsAdditionalConfigInputRepresentation') {
|
|
182
182
|
const v_error = (() => {
|
|
183
183
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
184
184
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -222,7 +222,7 @@ function validate$n(obj, path = 'EinsteinLlmEmbeddingsAdditionalConfigInputRepre
|
|
|
222
222
|
return v_error === undefined ? null : v_error;
|
|
223
223
|
}
|
|
224
224
|
|
|
225
|
-
function validate$
|
|
225
|
+
function validate$p(obj, path = 'WrappedListString') {
|
|
226
226
|
const v_error = (() => {
|
|
227
227
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
228
228
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -243,14 +243,14 @@ function validate$m(obj, path = 'WrappedListString') {
|
|
|
243
243
|
return v_error === undefined ? null : v_error;
|
|
244
244
|
}
|
|
245
245
|
|
|
246
|
-
function validate$
|
|
246
|
+
function validate$o(obj, path = 'EinsteinLlmEmbeddingsInputRepresentation') {
|
|
247
247
|
const v_error = (() => {
|
|
248
248
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
249
249
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
250
250
|
}
|
|
251
251
|
const obj_additionalConfig = obj.additionalConfig;
|
|
252
252
|
const path_additionalConfig = path + '.additionalConfig';
|
|
253
|
-
const referencepath_additionalConfigValidationError = validate$
|
|
253
|
+
const referencepath_additionalConfigValidationError = validate$q(obj_additionalConfig, path_additionalConfig);
|
|
254
254
|
if (referencepath_additionalConfigValidationError !== null) {
|
|
255
255
|
let message = 'Object doesn\'t match EinsteinLlmEmbeddingsAdditionalConfigInputRepresentation (at "' + path_additionalConfig + '")\n';
|
|
256
256
|
message += referencepath_additionalConfigValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -258,7 +258,7 @@ function validate$l(obj, path = 'EinsteinLlmEmbeddingsInputRepresentation') {
|
|
|
258
258
|
}
|
|
259
259
|
const obj_prompts = obj.prompts;
|
|
260
260
|
const path_prompts = path + '.prompts';
|
|
261
|
-
const referencepath_promptsValidationError = validate$
|
|
261
|
+
const referencepath_promptsValidationError = validate$p(obj_prompts, path_prompts);
|
|
262
262
|
if (referencepath_promptsValidationError !== null) {
|
|
263
263
|
let message = 'Object doesn\'t match WrappedListString (at "' + path_prompts + '")\n';
|
|
264
264
|
message += referencepath_promptsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -275,8 +275,8 @@ function validate$l(obj, path = 'EinsteinLlmEmbeddingsInputRepresentation') {
|
|
|
275
275
|
return v_error === undefined ? null : v_error;
|
|
276
276
|
}
|
|
277
277
|
|
|
278
|
-
const VERSION$
|
|
279
|
-
function validate$
|
|
278
|
+
const VERSION$g = "5ed5ccc6fa6f15691ec0fc1080e41fe6";
|
|
279
|
+
function validate$n(obj, path = 'EinsteinLlmEmbeddingItemRepresentation') {
|
|
280
280
|
const v_error = (() => {
|
|
281
281
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
282
282
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -297,10 +297,10 @@ function validate$k(obj, path = 'EinsteinLlmEmbeddingItemRepresentation') {
|
|
|
297
297
|
})();
|
|
298
298
|
return v_error === undefined ? null : v_error;
|
|
299
299
|
}
|
|
300
|
-
const select$
|
|
300
|
+
const select$m = function EinsteinLlmEmbeddingItemRepresentationSelect() {
|
|
301
301
|
return {
|
|
302
302
|
kind: 'Fragment',
|
|
303
|
-
version: VERSION$
|
|
303
|
+
version: VERSION$g,
|
|
304
304
|
private: [],
|
|
305
305
|
selections: [
|
|
306
306
|
{
|
|
@@ -315,7 +315,7 @@ const select$i = function EinsteinLlmEmbeddingItemRepresentationSelect() {
|
|
|
315
315
|
]
|
|
316
316
|
};
|
|
317
317
|
};
|
|
318
|
-
function equals$
|
|
318
|
+
function equals$g(existing, incoming) {
|
|
319
319
|
const existing_index = existing.index;
|
|
320
320
|
const incoming_index = incoming.index;
|
|
321
321
|
if (!(existing_index === incoming_index)) {
|
|
@@ -334,9 +334,9 @@ function equals$d(existing, incoming) {
|
|
|
334
334
|
return true;
|
|
335
335
|
}
|
|
336
336
|
|
|
337
|
-
const TTL$
|
|
338
|
-
const VERSION$
|
|
339
|
-
function validate$
|
|
337
|
+
const TTL$5 = 100;
|
|
338
|
+
const VERSION$f = "d9873651f09d29764ef4d4231eb653d7";
|
|
339
|
+
function validate$m(obj, path = 'EinsteinLlmEmbeddingsRepresentation') {
|
|
340
340
|
const v_error = (() => {
|
|
341
341
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
342
342
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -349,7 +349,7 @@ function validate$j(obj, path = 'EinsteinLlmEmbeddingsRepresentation') {
|
|
|
349
349
|
for (let i = 0; i < obj_embeddings.length; i++) {
|
|
350
350
|
const obj_embeddings_item = obj_embeddings[i];
|
|
351
351
|
const path_embeddings_item = path_embeddings + '[' + i + ']';
|
|
352
|
-
const referencepath_embeddings_itemValidationError = validate$
|
|
352
|
+
const referencepath_embeddings_itemValidationError = validate$n(obj_embeddings_item, path_embeddings_item);
|
|
353
353
|
if (referencepath_embeddings_itemValidationError !== null) {
|
|
354
354
|
let message = 'Object doesn\'t match EinsteinLlmEmbeddingItemRepresentation (at "' + path_embeddings_item + '")\n';
|
|
355
355
|
message += referencepath_embeddings_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -373,15 +373,15 @@ function validate$j(obj, path = 'EinsteinLlmEmbeddingsRepresentation') {
|
|
|
373
373
|
})();
|
|
374
374
|
return v_error === undefined ? null : v_error;
|
|
375
375
|
}
|
|
376
|
-
const RepresentationType$
|
|
377
|
-
function normalize$
|
|
376
|
+
const RepresentationType$5 = 'EinsteinLlmEmbeddingsRepresentation';
|
|
377
|
+
function normalize$5(input, existing, path, luvio, store, timestamp) {
|
|
378
378
|
return input;
|
|
379
379
|
}
|
|
380
|
-
const select$
|
|
381
|
-
const { selections: EinsteinLlmEmbeddingItemRepresentation__selections, opaque: EinsteinLlmEmbeddingItemRepresentation__opaque, } = select$
|
|
380
|
+
const select$l = function EinsteinLlmEmbeddingsRepresentationSelect() {
|
|
381
|
+
const { selections: EinsteinLlmEmbeddingItemRepresentation__selections, opaque: EinsteinLlmEmbeddingItemRepresentation__opaque, } = select$m();
|
|
382
382
|
return {
|
|
383
383
|
kind: 'Fragment',
|
|
384
|
-
version: VERSION$
|
|
384
|
+
version: VERSION$f,
|
|
385
385
|
private: [],
|
|
386
386
|
selections: [
|
|
387
387
|
{
|
|
@@ -398,11 +398,11 @@ const select$h = function EinsteinLlmEmbeddingsRepresentationSelect() {
|
|
|
398
398
|
]
|
|
399
399
|
};
|
|
400
400
|
};
|
|
401
|
-
function equals$
|
|
401
|
+
function equals$f(existing, incoming) {
|
|
402
402
|
const existing_embeddings = existing.embeddings;
|
|
403
403
|
const incoming_embeddings = incoming.embeddings;
|
|
404
404
|
const equals_embeddings_items = equalsArray(existing_embeddings, incoming_embeddings, (existing_embeddings_item, incoming_embeddings_item) => {
|
|
405
|
-
if (!(equals$
|
|
405
|
+
if (!(equals$g(existing_embeddings_item, incoming_embeddings_item))) {
|
|
406
406
|
return false;
|
|
407
407
|
}
|
|
408
408
|
});
|
|
@@ -421,44 +421,44 @@ function equals$c(existing, incoming) {
|
|
|
421
421
|
}
|
|
422
422
|
return true;
|
|
423
423
|
}
|
|
424
|
-
const ingest$
|
|
424
|
+
const ingest$5 = function EinsteinLlmEmbeddingsRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
425
425
|
if (process.env.NODE_ENV !== 'production') {
|
|
426
|
-
const validateError = validate$
|
|
426
|
+
const validateError = validate$m(input);
|
|
427
427
|
if (validateError !== null) {
|
|
428
428
|
throw validateError;
|
|
429
429
|
}
|
|
430
430
|
}
|
|
431
431
|
const key = path.fullPath;
|
|
432
|
-
const ttlToUse = TTL$
|
|
433
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$
|
|
432
|
+
const ttlToUse = TTL$5;
|
|
433
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$5, "EinsteinLLM", VERSION$f, RepresentationType$5, equals$f);
|
|
434
434
|
return createLink(key);
|
|
435
435
|
};
|
|
436
|
-
function getTypeCacheKeys$
|
|
436
|
+
function getTypeCacheKeys$5(rootKeySet, luvio, input, fullPathFactory) {
|
|
437
437
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
438
438
|
const rootKey = fullPathFactory();
|
|
439
439
|
rootKeySet.set(rootKey, {
|
|
440
440
|
namespace: keyPrefix,
|
|
441
|
-
representationName: RepresentationType$
|
|
441
|
+
representationName: RepresentationType$5,
|
|
442
442
|
mergeable: false
|
|
443
443
|
});
|
|
444
444
|
}
|
|
445
445
|
|
|
446
|
-
function select$
|
|
447
|
-
return select$
|
|
446
|
+
function select$k(luvio, params) {
|
|
447
|
+
return select$l();
|
|
448
448
|
}
|
|
449
|
-
function keyBuilder$
|
|
449
|
+
function keyBuilder$8(luvio, params) {
|
|
450
450
|
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) + ')';
|
|
451
451
|
}
|
|
452
|
-
function getResponseCacheKeys$
|
|
453
|
-
getTypeCacheKeys$
|
|
452
|
+
function getResponseCacheKeys$5(storeKeyMap, luvio, resourceParams, response) {
|
|
453
|
+
getTypeCacheKeys$5(storeKeyMap, luvio, response, () => keyBuilder$8(luvio, resourceParams));
|
|
454
454
|
}
|
|
455
|
-
function ingestSuccess$
|
|
455
|
+
function ingestSuccess$5(luvio, resourceParams, response, snapshotRefresh) {
|
|
456
456
|
const { body } = response;
|
|
457
|
-
const key = keyBuilder$
|
|
458
|
-
luvio.storeIngest(key, ingest$
|
|
457
|
+
const key = keyBuilder$8(luvio, resourceParams);
|
|
458
|
+
luvio.storeIngest(key, ingest$5, body);
|
|
459
459
|
const snapshot = luvio.storeLookup({
|
|
460
460
|
recordId: key,
|
|
461
|
-
node: select$
|
|
461
|
+
node: select$k(),
|
|
462
462
|
variables: {},
|
|
463
463
|
}, snapshotRefresh);
|
|
464
464
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -469,19 +469,19 @@ function ingestSuccess$4(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
469
469
|
deepFreeze(snapshot.data);
|
|
470
470
|
return snapshot;
|
|
471
471
|
}
|
|
472
|
-
function ingestError$
|
|
473
|
-
const key = keyBuilder$
|
|
472
|
+
function ingestError$2(luvio, params, error, snapshotRefresh) {
|
|
473
|
+
const key = keyBuilder$8(luvio, params);
|
|
474
474
|
const errorSnapshot = luvio.errorSnapshot(error, snapshotRefresh);
|
|
475
475
|
const storeMetadataParams = {
|
|
476
|
-
ttl: TTL$
|
|
476
|
+
ttl: TTL$5,
|
|
477
477
|
namespace: keyPrefix,
|
|
478
|
-
version: VERSION$
|
|
479
|
-
representationName: RepresentationType$
|
|
478
|
+
version: VERSION$f,
|
|
479
|
+
representationName: RepresentationType$5
|
|
480
480
|
};
|
|
481
481
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
482
482
|
return errorSnapshot;
|
|
483
483
|
}
|
|
484
|
-
function createResourceRequest$
|
|
484
|
+
function createResourceRequest$5(config) {
|
|
485
485
|
const headers = {};
|
|
486
486
|
return {
|
|
487
487
|
baseUri: '/services/data/v63.0',
|
|
@@ -495,97 +495,97 @@ function createResourceRequest$4(config) {
|
|
|
495
495
|
};
|
|
496
496
|
}
|
|
497
497
|
|
|
498
|
-
const adapterName$
|
|
498
|
+
const adapterName$5 = 'createEmbeddings';
|
|
499
499
|
const createEmbeddings_ConfigPropertyMetadata = [
|
|
500
500
|
generateParamConfigMetadata('embeddingsInput', true, 2 /* Body */, 4 /* Unsupported */),
|
|
501
501
|
];
|
|
502
|
-
const createEmbeddings_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$
|
|
503
|
-
const createResourceParams$
|
|
504
|
-
function keyBuilder$
|
|
505
|
-
const resourceParams = createResourceParams$
|
|
506
|
-
return keyBuilder$
|
|
502
|
+
const createEmbeddings_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$5, createEmbeddings_ConfigPropertyMetadata);
|
|
503
|
+
const createResourceParams$5 = /*#__PURE__*/ createResourceParams$6(createEmbeddings_ConfigPropertyMetadata);
|
|
504
|
+
function keyBuilder$7(luvio, config) {
|
|
505
|
+
const resourceParams = createResourceParams$5(config);
|
|
506
|
+
return keyBuilder$8(luvio, resourceParams);
|
|
507
507
|
}
|
|
508
|
-
function typeCheckConfig$
|
|
508
|
+
function typeCheckConfig$5(untrustedConfig) {
|
|
509
509
|
const config = {};
|
|
510
510
|
const untrustedConfig_embeddingsInput = untrustedConfig.embeddingsInput;
|
|
511
|
-
const referenceEinsteinLlmEmbeddingsInputRepresentationValidationError = validate$
|
|
511
|
+
const referenceEinsteinLlmEmbeddingsInputRepresentationValidationError = validate$o(untrustedConfig_embeddingsInput);
|
|
512
512
|
if (referenceEinsteinLlmEmbeddingsInputRepresentationValidationError === null) {
|
|
513
513
|
config.embeddingsInput = untrustedConfig_embeddingsInput;
|
|
514
514
|
}
|
|
515
515
|
return config;
|
|
516
516
|
}
|
|
517
|
-
function validateAdapterConfig$
|
|
517
|
+
function validateAdapterConfig$5(untrustedConfig, configPropertyNames) {
|
|
518
518
|
if (!untrustedIsObject(untrustedConfig)) {
|
|
519
519
|
return null;
|
|
520
520
|
}
|
|
521
521
|
if (process.env.NODE_ENV !== 'production') {
|
|
522
522
|
validateConfig(untrustedConfig, configPropertyNames);
|
|
523
523
|
}
|
|
524
|
-
const config = typeCheckConfig$
|
|
524
|
+
const config = typeCheckConfig$5(untrustedConfig);
|
|
525
525
|
if (!areRequiredParametersPresent(config, configPropertyNames)) {
|
|
526
526
|
return null;
|
|
527
527
|
}
|
|
528
528
|
return config;
|
|
529
529
|
}
|
|
530
|
-
function adapterFragment$
|
|
531
|
-
createResourceParams$
|
|
532
|
-
return select$
|
|
530
|
+
function adapterFragment$2(luvio, config) {
|
|
531
|
+
createResourceParams$5(config);
|
|
532
|
+
return select$k();
|
|
533
533
|
}
|
|
534
|
-
function onFetchResponseSuccess$
|
|
535
|
-
const snapshot = ingestSuccess$
|
|
534
|
+
function onFetchResponseSuccess$2(luvio, config, resourceParams, response) {
|
|
535
|
+
const snapshot = ingestSuccess$5(luvio, resourceParams, response, {
|
|
536
536
|
config,
|
|
537
|
-
resolve: () => buildNetworkSnapshot$
|
|
537
|
+
resolve: () => buildNetworkSnapshot$5(luvio, config, snapshotRefreshOptions)
|
|
538
538
|
});
|
|
539
539
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
540
540
|
}
|
|
541
|
-
function onFetchResponseError$
|
|
542
|
-
const snapshot = ingestError$
|
|
541
|
+
function onFetchResponseError$2(luvio, config, resourceParams, response) {
|
|
542
|
+
const snapshot = ingestError$2(luvio, resourceParams, response, {
|
|
543
543
|
config,
|
|
544
|
-
resolve: () => buildNetworkSnapshot$
|
|
544
|
+
resolve: () => buildNetworkSnapshot$5(luvio, config, snapshotRefreshOptions)
|
|
545
545
|
});
|
|
546
546
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
547
547
|
}
|
|
548
|
-
function buildNetworkSnapshot$
|
|
549
|
-
const resourceParams = createResourceParams$
|
|
550
|
-
const request = createResourceRequest$
|
|
548
|
+
function buildNetworkSnapshot$5(luvio, config, options) {
|
|
549
|
+
const resourceParams = createResourceParams$5(config);
|
|
550
|
+
const request = createResourceRequest$5(resourceParams);
|
|
551
551
|
return luvio.dispatchResourceRequest(request, options)
|
|
552
552
|
.then((response) => {
|
|
553
|
-
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$
|
|
553
|
+
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$2(luvio, config, resourceParams, response), () => {
|
|
554
554
|
const cache = new StoreKeyMap();
|
|
555
|
-
getResponseCacheKeys$
|
|
555
|
+
getResponseCacheKeys$5(cache, luvio, resourceParams, response.body);
|
|
556
556
|
return cache;
|
|
557
557
|
});
|
|
558
558
|
}, (response) => {
|
|
559
|
-
return luvio.handleErrorResponse(() => onFetchResponseError$
|
|
559
|
+
return luvio.handleErrorResponse(() => onFetchResponseError$2(luvio, config, resourceParams, response));
|
|
560
560
|
});
|
|
561
561
|
}
|
|
562
|
-
function buildNetworkSnapshotCachePolicy$
|
|
563
|
-
return buildNetworkSnapshotCachePolicy$
|
|
562
|
+
function buildNetworkSnapshotCachePolicy$2(context, coercedAdapterRequestContext) {
|
|
563
|
+
return buildNetworkSnapshotCachePolicy$3(context, coercedAdapterRequestContext, buildNetworkSnapshot$5, 'get', false);
|
|
564
564
|
}
|
|
565
|
-
function buildCachedSnapshotCachePolicy$
|
|
565
|
+
function buildCachedSnapshotCachePolicy$2(context, storeLookup) {
|
|
566
566
|
const { luvio, config } = context;
|
|
567
567
|
const selector = {
|
|
568
|
-
recordId: keyBuilder$
|
|
569
|
-
node: adapterFragment$
|
|
568
|
+
recordId: keyBuilder$7(luvio, config),
|
|
569
|
+
node: adapterFragment$2(luvio, config),
|
|
570
570
|
variables: {},
|
|
571
571
|
};
|
|
572
572
|
const cacheSnapshot = storeLookup(selector, {
|
|
573
573
|
config,
|
|
574
|
-
resolve: () => buildNetworkSnapshot$
|
|
574
|
+
resolve: () => buildNetworkSnapshot$5(luvio, config, snapshotRefreshOptions)
|
|
575
575
|
});
|
|
576
576
|
return cacheSnapshot;
|
|
577
577
|
}
|
|
578
578
|
const createEmbeddingsAdapterFactory = (luvio) => function EinsteinLLM__createEmbeddings(untrustedConfig, requestContext) {
|
|
579
|
-
const config = validateAdapterConfig$
|
|
579
|
+
const config = validateAdapterConfig$5(untrustedConfig, createEmbeddings_ConfigPropertyNames);
|
|
580
580
|
// Invalid or incomplete config
|
|
581
581
|
if (config === null) {
|
|
582
582
|
return null;
|
|
583
583
|
}
|
|
584
584
|
return luvio.applyCachePolicy((requestContext || {}), { config, luvio }, // BuildSnapshotContext
|
|
585
|
-
buildCachedSnapshotCachePolicy$
|
|
585
|
+
buildCachedSnapshotCachePolicy$2, buildNetworkSnapshotCachePolicy$2);
|
|
586
586
|
};
|
|
587
587
|
|
|
588
|
-
function validate$
|
|
588
|
+
function validate$l(obj, path = 'EinsteinLlmFeedbackInputRepresentation') {
|
|
589
589
|
const v_error = (() => {
|
|
590
590
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
591
591
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -632,9 +632,9 @@ function validate$i(obj, path = 'EinsteinLlmFeedbackInputRepresentation') {
|
|
|
632
632
|
return v_error === undefined ? null : v_error;
|
|
633
633
|
}
|
|
634
634
|
|
|
635
|
-
const TTL$
|
|
636
|
-
const VERSION$
|
|
637
|
-
function validate$
|
|
635
|
+
const TTL$4 = 100;
|
|
636
|
+
const VERSION$e = "4033328f65865dd5d80c68a7573a4522";
|
|
637
|
+
function validate$k(obj, path = 'EinsteinLlmFeedbackRepresentation') {
|
|
638
638
|
const v_error = (() => {
|
|
639
639
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
640
640
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -647,23 +647,23 @@ function validate$h(obj, path = 'EinsteinLlmFeedbackRepresentation') {
|
|
|
647
647
|
})();
|
|
648
648
|
return v_error === undefined ? null : v_error;
|
|
649
649
|
}
|
|
650
|
-
const RepresentationType$
|
|
651
|
-
function keyBuilder$
|
|
652
|
-
return keyPrefix + '::' + RepresentationType$
|
|
650
|
+
const RepresentationType$4 = 'EinsteinLlmFeedbackRepresentation';
|
|
651
|
+
function keyBuilder$6(luvio, config) {
|
|
652
|
+
return keyPrefix + '::' + RepresentationType$4 + ':' + config.message;
|
|
653
653
|
}
|
|
654
654
|
function keyBuilderFromType$2(luvio, object) {
|
|
655
655
|
const keyParams = {
|
|
656
656
|
message: object.message
|
|
657
657
|
};
|
|
658
|
-
return keyBuilder$
|
|
658
|
+
return keyBuilder$6(luvio, keyParams);
|
|
659
659
|
}
|
|
660
|
-
function normalize$
|
|
660
|
+
function normalize$4(input, existing, path, luvio, store, timestamp) {
|
|
661
661
|
return input;
|
|
662
662
|
}
|
|
663
|
-
const select$
|
|
663
|
+
const select$j = function EinsteinLlmFeedbackRepresentationSelect() {
|
|
664
664
|
return {
|
|
665
665
|
kind: 'Fragment',
|
|
666
|
-
version: VERSION$
|
|
666
|
+
version: VERSION$e,
|
|
667
667
|
private: [],
|
|
668
668
|
selections: [
|
|
669
669
|
{
|
|
@@ -673,7 +673,7 @@ const select$f = function EinsteinLlmFeedbackRepresentationSelect() {
|
|
|
673
673
|
]
|
|
674
674
|
};
|
|
675
675
|
};
|
|
676
|
-
function equals$
|
|
676
|
+
function equals$e(existing, incoming) {
|
|
677
677
|
const existing_message = existing.message;
|
|
678
678
|
const incoming_message = incoming.message;
|
|
679
679
|
if (!(existing_message === incoming_message)) {
|
|
@@ -681,41 +681,41 @@ function equals$b(existing, incoming) {
|
|
|
681
681
|
}
|
|
682
682
|
return true;
|
|
683
683
|
}
|
|
684
|
-
const ingest$
|
|
684
|
+
const ingest$4 = function EinsteinLlmFeedbackRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
685
685
|
if (process.env.NODE_ENV !== 'production') {
|
|
686
|
-
const validateError = validate$
|
|
686
|
+
const validateError = validate$k(input);
|
|
687
687
|
if (validateError !== null) {
|
|
688
688
|
throw validateError;
|
|
689
689
|
}
|
|
690
690
|
}
|
|
691
691
|
const key = keyBuilderFromType$2(luvio, input);
|
|
692
|
-
const ttlToUse = TTL$
|
|
693
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$
|
|
692
|
+
const ttlToUse = TTL$4;
|
|
693
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$4, "EinsteinLLM", VERSION$e, RepresentationType$4, equals$e);
|
|
694
694
|
return createLink(key);
|
|
695
695
|
};
|
|
696
|
-
function getTypeCacheKeys$
|
|
696
|
+
function getTypeCacheKeys$4(rootKeySet, luvio, input, fullPathFactory) {
|
|
697
697
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
698
698
|
const rootKey = keyBuilderFromType$2(luvio, input);
|
|
699
699
|
rootKeySet.set(rootKey, {
|
|
700
700
|
namespace: keyPrefix,
|
|
701
|
-
representationName: RepresentationType$
|
|
701
|
+
representationName: RepresentationType$4,
|
|
702
702
|
mergeable: false
|
|
703
703
|
});
|
|
704
704
|
}
|
|
705
705
|
|
|
706
|
-
function select$
|
|
707
|
-
return select$
|
|
706
|
+
function select$i(luvio, params) {
|
|
707
|
+
return select$j();
|
|
708
708
|
}
|
|
709
|
-
function getResponseCacheKeys$
|
|
710
|
-
getTypeCacheKeys$
|
|
709
|
+
function getResponseCacheKeys$4(storeKeyMap, luvio, resourceParams, response) {
|
|
710
|
+
getTypeCacheKeys$4(storeKeyMap, luvio, response);
|
|
711
711
|
}
|
|
712
|
-
function ingestSuccess$
|
|
712
|
+
function ingestSuccess$4(luvio, resourceParams, response) {
|
|
713
713
|
const { body } = response;
|
|
714
714
|
const key = keyBuilderFromType$2(luvio, body);
|
|
715
|
-
luvio.storeIngest(key, ingest$
|
|
715
|
+
luvio.storeIngest(key, ingest$4, body);
|
|
716
716
|
const snapshot = luvio.storeLookup({
|
|
717
717
|
recordId: key,
|
|
718
|
-
node: select$
|
|
718
|
+
node: select$i(),
|
|
719
719
|
variables: {},
|
|
720
720
|
});
|
|
721
721
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -726,7 +726,7 @@ function ingestSuccess$3(luvio, resourceParams, response) {
|
|
|
726
726
|
deepFreeze(snapshot.data);
|
|
727
727
|
return snapshot;
|
|
728
728
|
}
|
|
729
|
-
function createResourceRequest$
|
|
729
|
+
function createResourceRequest$4(config) {
|
|
730
730
|
const headers = {};
|
|
731
731
|
return {
|
|
732
732
|
baseUri: '/services/data/v63.0',
|
|
@@ -740,45 +740,45 @@ function createResourceRequest$3(config) {
|
|
|
740
740
|
};
|
|
741
741
|
}
|
|
742
742
|
|
|
743
|
-
const adapterName$
|
|
743
|
+
const adapterName$4 = 'createFeedback';
|
|
744
744
|
const createFeedback_ConfigPropertyMetadata = [
|
|
745
745
|
generateParamConfigMetadata('feedbackInput', true, 2 /* Body */, 4 /* Unsupported */),
|
|
746
746
|
];
|
|
747
|
-
const createFeedback_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$
|
|
748
|
-
const createResourceParams$
|
|
749
|
-
function typeCheckConfig$
|
|
747
|
+
const createFeedback_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$4, createFeedback_ConfigPropertyMetadata);
|
|
748
|
+
const createResourceParams$4 = /*#__PURE__*/ createResourceParams$6(createFeedback_ConfigPropertyMetadata);
|
|
749
|
+
function typeCheckConfig$4(untrustedConfig) {
|
|
750
750
|
const config = {};
|
|
751
751
|
const untrustedConfig_feedbackInput = untrustedConfig.feedbackInput;
|
|
752
|
-
const referenceEinsteinLlmFeedbackInputRepresentationValidationError = validate$
|
|
752
|
+
const referenceEinsteinLlmFeedbackInputRepresentationValidationError = validate$l(untrustedConfig_feedbackInput);
|
|
753
753
|
if (referenceEinsteinLlmFeedbackInputRepresentationValidationError === null) {
|
|
754
754
|
config.feedbackInput = untrustedConfig_feedbackInput;
|
|
755
755
|
}
|
|
756
756
|
return config;
|
|
757
757
|
}
|
|
758
|
-
function validateAdapterConfig$
|
|
758
|
+
function validateAdapterConfig$4(untrustedConfig, configPropertyNames) {
|
|
759
759
|
if (!untrustedIsObject(untrustedConfig)) {
|
|
760
760
|
return null;
|
|
761
761
|
}
|
|
762
762
|
if (process.env.NODE_ENV !== 'production') {
|
|
763
763
|
validateConfig(untrustedConfig, configPropertyNames);
|
|
764
764
|
}
|
|
765
|
-
const config = typeCheckConfig$
|
|
765
|
+
const config = typeCheckConfig$4(untrustedConfig);
|
|
766
766
|
if (!areRequiredParametersPresent(config, configPropertyNames)) {
|
|
767
767
|
return null;
|
|
768
768
|
}
|
|
769
769
|
return config;
|
|
770
770
|
}
|
|
771
|
-
function buildNetworkSnapshot$
|
|
772
|
-
const resourceParams = createResourceParams$
|
|
773
|
-
const request = createResourceRequest$
|
|
771
|
+
function buildNetworkSnapshot$4(luvio, config, options) {
|
|
772
|
+
const resourceParams = createResourceParams$4(config);
|
|
773
|
+
const request = createResourceRequest$4(resourceParams);
|
|
774
774
|
return luvio.dispatchResourceRequest(request, options)
|
|
775
775
|
.then((response) => {
|
|
776
776
|
return luvio.handleSuccessResponse(() => {
|
|
777
|
-
const snapshot = ingestSuccess$
|
|
777
|
+
const snapshot = ingestSuccess$4(luvio, resourceParams, response);
|
|
778
778
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
779
779
|
}, () => {
|
|
780
780
|
const cache = new StoreKeyMap();
|
|
781
|
-
getResponseCacheKeys$
|
|
781
|
+
getResponseCacheKeys$4(cache, luvio, resourceParams, response.body);
|
|
782
782
|
return cache;
|
|
783
783
|
});
|
|
784
784
|
}, (response) => {
|
|
@@ -788,16 +788,16 @@ function buildNetworkSnapshot$3(luvio, config, options) {
|
|
|
788
788
|
}
|
|
789
789
|
const createFeedbackAdapterFactory = (luvio) => {
|
|
790
790
|
return function createFeedback(untrustedConfig) {
|
|
791
|
-
const config = validateAdapterConfig$
|
|
791
|
+
const config = validateAdapterConfig$4(untrustedConfig, createFeedback_ConfigPropertyNames);
|
|
792
792
|
// Invalid or incomplete config
|
|
793
793
|
if (config === null) {
|
|
794
794
|
throw new Error('Invalid config for "createFeedback"');
|
|
795
795
|
}
|
|
796
|
-
return buildNetworkSnapshot$
|
|
796
|
+
return buildNetworkSnapshot$4(luvio, config);
|
|
797
797
|
};
|
|
798
798
|
};
|
|
799
799
|
|
|
800
|
-
function validate$
|
|
800
|
+
function validate$j(obj, path = 'EinsteinLlmAdditionalConfigInputRepresentation') {
|
|
801
801
|
const v_error = (() => {
|
|
802
802
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
803
803
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -880,7 +880,7 @@ function validate$g(obj, path = 'EinsteinLlmAdditionalConfigInputRepresentation'
|
|
|
880
880
|
return v_error === undefined ? null : v_error;
|
|
881
881
|
}
|
|
882
882
|
|
|
883
|
-
function validate$
|
|
883
|
+
function validate$i(obj, path = 'EinsteinLlmGenerationsInputRepresentation') {
|
|
884
884
|
const v_error = (() => {
|
|
885
885
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
886
886
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -888,7 +888,7 @@ function validate$f(obj, path = 'EinsteinLlmGenerationsInputRepresentation') {
|
|
|
888
888
|
if (obj.additionalConfig !== undefined) {
|
|
889
889
|
const obj_additionalConfig = obj.additionalConfig;
|
|
890
890
|
const path_additionalConfig = path + '.additionalConfig';
|
|
891
|
-
const referencepath_additionalConfigValidationError = validate$
|
|
891
|
+
const referencepath_additionalConfigValidationError = validate$j(obj_additionalConfig, path_additionalConfig);
|
|
892
892
|
if (referencepath_additionalConfigValidationError !== null) {
|
|
893
893
|
let message = 'Object doesn\'t match EinsteinLlmAdditionalConfigInputRepresentation (at "' + path_additionalConfig + '")\n';
|
|
894
894
|
message += referencepath_additionalConfigValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -911,8 +911,8 @@ function validate$f(obj, path = 'EinsteinLlmGenerationsInputRepresentation') {
|
|
|
911
911
|
return v_error === undefined ? null : v_error;
|
|
912
912
|
}
|
|
913
913
|
|
|
914
|
-
const VERSION$
|
|
915
|
-
function validate$
|
|
914
|
+
const VERSION$d = "9ebac74e6f964c363d5fd1913df363af";
|
|
915
|
+
function validate$h(obj, path = 'EinsteinLlmGenerationsContentQualityRepresentation') {
|
|
916
916
|
const v_error = (() => {
|
|
917
917
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
918
918
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -948,10 +948,10 @@ function validate$e(obj, path = 'EinsteinLlmGenerationsContentQualityRepresentat
|
|
|
948
948
|
})();
|
|
949
949
|
return v_error === undefined ? null : v_error;
|
|
950
950
|
}
|
|
951
|
-
const select$
|
|
951
|
+
const select$h = function EinsteinLlmGenerationsContentQualityRepresentationSelect() {
|
|
952
952
|
return {
|
|
953
953
|
kind: 'Fragment',
|
|
954
|
-
version: VERSION$
|
|
954
|
+
version: VERSION$d,
|
|
955
955
|
private: [],
|
|
956
956
|
selections: [
|
|
957
957
|
{
|
|
@@ -962,7 +962,7 @@ const select$d = function EinsteinLlmGenerationsContentQualityRepresentationSele
|
|
|
962
962
|
]
|
|
963
963
|
};
|
|
964
964
|
};
|
|
965
|
-
function equals$
|
|
965
|
+
function equals$d(existing, incoming) {
|
|
966
966
|
const existing_isToxicityDetected = existing.isToxicityDetected;
|
|
967
967
|
const incoming_isToxicityDetected = incoming.isToxicityDetected;
|
|
968
968
|
// if at least one of these optionals is defined
|
|
@@ -979,8 +979,8 @@ function equals$a(existing, incoming) {
|
|
|
979
979
|
return true;
|
|
980
980
|
}
|
|
981
981
|
|
|
982
|
-
const VERSION$
|
|
983
|
-
function validate$
|
|
982
|
+
const VERSION$c = "77af44a252cb5b45b4d9a8101368d2aa";
|
|
983
|
+
function validate$g(obj, path = 'EinsteinLlmGenerationsSafetyScoreRepresentation') {
|
|
984
984
|
const v_error = (() => {
|
|
985
985
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
986
986
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1184,10 +1184,10 @@ function validate$d(obj, path = 'EinsteinLlmGenerationsSafetyScoreRepresentation
|
|
|
1184
1184
|
})();
|
|
1185
1185
|
return v_error === undefined ? null : v_error;
|
|
1186
1186
|
}
|
|
1187
|
-
const select$
|
|
1187
|
+
const select$g = function EinsteinLlmGenerationsSafetyScoreRepresentationSelect() {
|
|
1188
1188
|
return {
|
|
1189
1189
|
kind: 'Fragment',
|
|
1190
|
-
version: VERSION$
|
|
1190
|
+
version: VERSION$c,
|
|
1191
1191
|
private: [],
|
|
1192
1192
|
selections: [
|
|
1193
1193
|
{
|
|
@@ -1228,7 +1228,7 @@ const select$c = function EinsteinLlmGenerationsSafetyScoreRepresentationSelect(
|
|
|
1228
1228
|
]
|
|
1229
1229
|
};
|
|
1230
1230
|
};
|
|
1231
|
-
function equals$
|
|
1231
|
+
function equals$c(existing, incoming) {
|
|
1232
1232
|
const existing_hateScore = existing.hateScore;
|
|
1233
1233
|
const incoming_hateScore = incoming.hateScore;
|
|
1234
1234
|
// if at least one of these optionals is defined
|
|
@@ -1323,8 +1323,8 @@ function equals$9(existing, incoming) {
|
|
|
1323
1323
|
return true;
|
|
1324
1324
|
}
|
|
1325
1325
|
|
|
1326
|
-
const VERSION$
|
|
1327
|
-
function validate$
|
|
1326
|
+
const VERSION$b = "4a07778ff6c595d91c575188146647a1";
|
|
1327
|
+
function validate$f(obj, path = 'EinsteinLlmGenerationItemRepresentation') {
|
|
1328
1328
|
const v_error = (() => {
|
|
1329
1329
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1330
1330
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1334,7 +1334,7 @@ function validate$c(obj, path = 'EinsteinLlmGenerationItemRepresentation') {
|
|
|
1334
1334
|
const path_contentQualityRepresentation = path + '.contentQualityRepresentation';
|
|
1335
1335
|
let obj_contentQualityRepresentation_union0 = null;
|
|
1336
1336
|
const obj_contentQualityRepresentation_union0_error = (() => {
|
|
1337
|
-
const referencepath_contentQualityRepresentationValidationError = validate$
|
|
1337
|
+
const referencepath_contentQualityRepresentationValidationError = validate$h(obj_contentQualityRepresentation, path_contentQualityRepresentation);
|
|
1338
1338
|
if (referencepath_contentQualityRepresentationValidationError !== null) {
|
|
1339
1339
|
let message = 'Object doesn\'t match EinsteinLlmGenerationsContentQualityRepresentation (at "' + path_contentQualityRepresentation + '")\n';
|
|
1340
1340
|
message += referencepath_contentQualityRepresentationValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1382,7 +1382,7 @@ function validate$c(obj, path = 'EinsteinLlmGenerationItemRepresentation') {
|
|
|
1382
1382
|
const path_safetyScoreRepresentation = path + '.safetyScoreRepresentation';
|
|
1383
1383
|
let obj_safetyScoreRepresentation_union0 = null;
|
|
1384
1384
|
const obj_safetyScoreRepresentation_union0_error = (() => {
|
|
1385
|
-
const referencepath_safetyScoreRepresentationValidationError = validate$
|
|
1385
|
+
const referencepath_safetyScoreRepresentationValidationError = validate$g(obj_safetyScoreRepresentation, path_safetyScoreRepresentation);
|
|
1386
1386
|
if (referencepath_safetyScoreRepresentationValidationError !== null) {
|
|
1387
1387
|
let message = 'Object doesn\'t match EinsteinLlmGenerationsSafetyScoreRepresentation (at "' + path_safetyScoreRepresentation + '")\n';
|
|
1388
1388
|
message += referencepath_safetyScoreRepresentationValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1416,12 +1416,12 @@ function validate$c(obj, path = 'EinsteinLlmGenerationItemRepresentation') {
|
|
|
1416
1416
|
})();
|
|
1417
1417
|
return v_error === undefined ? null : v_error;
|
|
1418
1418
|
}
|
|
1419
|
-
const select$
|
|
1420
|
-
const { selections: EinsteinLlmGenerationsContentQualityRepresentation__selections, opaque: EinsteinLlmGenerationsContentQualityRepresentation__opaque, } = select$
|
|
1421
|
-
const { selections: EinsteinLlmGenerationsSafetyScoreRepresentation__selections, opaque: EinsteinLlmGenerationsSafetyScoreRepresentation__opaque, } = select$
|
|
1419
|
+
const select$f = function EinsteinLlmGenerationItemRepresentationSelect() {
|
|
1420
|
+
const { selections: EinsteinLlmGenerationsContentQualityRepresentation__selections, opaque: EinsteinLlmGenerationsContentQualityRepresentation__opaque, } = select$h();
|
|
1421
|
+
const { selections: EinsteinLlmGenerationsSafetyScoreRepresentation__selections, opaque: EinsteinLlmGenerationsSafetyScoreRepresentation__opaque, } = select$g();
|
|
1422
1422
|
return {
|
|
1423
1423
|
kind: 'Fragment',
|
|
1424
|
-
version: VERSION$
|
|
1424
|
+
version: VERSION$b,
|
|
1425
1425
|
private: [],
|
|
1426
1426
|
selections: [
|
|
1427
1427
|
{
|
|
@@ -1458,7 +1458,7 @@ const select$b = function EinsteinLlmGenerationItemRepresentationSelect() {
|
|
|
1458
1458
|
]
|
|
1459
1459
|
};
|
|
1460
1460
|
};
|
|
1461
|
-
function equals$
|
|
1461
|
+
function equals$b(existing, incoming) {
|
|
1462
1462
|
const existing_isSummarized = existing.isSummarized;
|
|
1463
1463
|
const incoming_isSummarized = incoming.isSummarized;
|
|
1464
1464
|
// if at least one of these optionals is defined
|
|
@@ -1499,7 +1499,7 @@ function equals$8(existing, incoming) {
|
|
|
1499
1499
|
if (!(existing_contentQualityRepresentation === incoming_contentQualityRepresentation
|
|
1500
1500
|
|| (existing_contentQualityRepresentation != null &&
|
|
1501
1501
|
incoming_contentQualityRepresentation != null &&
|
|
1502
|
-
equals$
|
|
1502
|
+
equals$d(existing_contentQualityRepresentation, incoming_contentQualityRepresentation)))) {
|
|
1503
1503
|
return false;
|
|
1504
1504
|
}
|
|
1505
1505
|
}
|
|
@@ -1515,15 +1515,15 @@ function equals$8(existing, incoming) {
|
|
|
1515
1515
|
if (!(existing_safetyScoreRepresentation === incoming_safetyScoreRepresentation
|
|
1516
1516
|
|| (existing_safetyScoreRepresentation != null &&
|
|
1517
1517
|
incoming_safetyScoreRepresentation != null &&
|
|
1518
|
-
equals$
|
|
1518
|
+
equals$c(existing_safetyScoreRepresentation, incoming_safetyScoreRepresentation)))) {
|
|
1519
1519
|
return false;
|
|
1520
1520
|
}
|
|
1521
1521
|
}
|
|
1522
1522
|
return true;
|
|
1523
1523
|
}
|
|
1524
1524
|
|
|
1525
|
-
const VERSION$
|
|
1526
|
-
function validate$
|
|
1525
|
+
const VERSION$a = "4656c961c9d093a9e206c1db7d4de0b0";
|
|
1526
|
+
function validate$e(obj, path = 'WrappedMap') {
|
|
1527
1527
|
const v_error = (() => {
|
|
1528
1528
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1529
1529
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1545,15 +1545,15 @@ function validate$b(obj, path = 'WrappedMap') {
|
|
|
1545
1545
|
})();
|
|
1546
1546
|
return v_error === undefined ? null : v_error;
|
|
1547
1547
|
}
|
|
1548
|
-
const select$
|
|
1548
|
+
const select$e = function WrappedMapSelect() {
|
|
1549
1549
|
return {
|
|
1550
1550
|
kind: 'Fragment',
|
|
1551
|
-
version: VERSION$
|
|
1551
|
+
version: VERSION$a,
|
|
1552
1552
|
private: [],
|
|
1553
1553
|
selections: []
|
|
1554
1554
|
};
|
|
1555
1555
|
};
|
|
1556
|
-
function equals$
|
|
1556
|
+
function equals$a(existing, incoming) {
|
|
1557
1557
|
const existing_wrappedMap = existing.wrappedMap;
|
|
1558
1558
|
const incoming_wrappedMap = incoming.wrappedMap;
|
|
1559
1559
|
const equals_wrappedMap_props = equalsObject(existing_wrappedMap, incoming_wrappedMap, (existing_wrappedMap_prop, incoming_wrappedMap_prop) => {
|
|
@@ -1564,9 +1564,9 @@ function equals$7(existing, incoming) {
|
|
|
1564
1564
|
return true;
|
|
1565
1565
|
}
|
|
1566
1566
|
|
|
1567
|
-
const TTL$
|
|
1568
|
-
const VERSION$
|
|
1569
|
-
function validate$
|
|
1567
|
+
const TTL$3 = 100;
|
|
1568
|
+
const VERSION$9 = "d8abd72a42e842b253da1c38954dafbc";
|
|
1569
|
+
function validate$d(obj, path = 'EinsteinLlmGenerationsRepresentation') {
|
|
1570
1570
|
const v_error = (() => {
|
|
1571
1571
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1572
1572
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1579,7 +1579,7 @@ function validate$a(obj, path = 'EinsteinLlmGenerationsRepresentation') {
|
|
|
1579
1579
|
for (let i = 0; i < obj_generations.length; i++) {
|
|
1580
1580
|
const obj_generations_item = obj_generations[i];
|
|
1581
1581
|
const path_generations_item = path_generations + '[' + i + ']';
|
|
1582
|
-
const referencepath_generations_itemValidationError = validate$
|
|
1582
|
+
const referencepath_generations_itemValidationError = validate$f(obj_generations_item, path_generations_item);
|
|
1583
1583
|
if (referencepath_generations_itemValidationError !== null) {
|
|
1584
1584
|
let message = 'Object doesn\'t match EinsteinLlmGenerationItemRepresentation (at "' + path_generations_item + '")\n';
|
|
1585
1585
|
message += referencepath_generations_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1590,7 +1590,7 @@ function validate$a(obj, path = 'EinsteinLlmGenerationsRepresentation') {
|
|
|
1590
1590
|
const path_parameters = path + '.parameters';
|
|
1591
1591
|
let obj_parameters_union0 = null;
|
|
1592
1592
|
const obj_parameters_union0_error = (() => {
|
|
1593
|
-
const referencepath_parametersValidationError = validate$
|
|
1593
|
+
const referencepath_parametersValidationError = validate$e(obj_parameters, path_parameters);
|
|
1594
1594
|
if (referencepath_parametersValidationError !== null) {
|
|
1595
1595
|
let message = 'Object doesn\'t match WrappedMap (at "' + path_parameters + '")\n';
|
|
1596
1596
|
message += referencepath_parametersValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1649,25 +1649,25 @@ function validate$a(obj, path = 'EinsteinLlmGenerationsRepresentation') {
|
|
|
1649
1649
|
})();
|
|
1650
1650
|
return v_error === undefined ? null : v_error;
|
|
1651
1651
|
}
|
|
1652
|
-
const RepresentationType$
|
|
1653
|
-
function keyBuilder$
|
|
1654
|
-
return keyPrefix + '::' + RepresentationType$
|
|
1652
|
+
const RepresentationType$3 = 'EinsteinLlmGenerationsRepresentation';
|
|
1653
|
+
function keyBuilder$5(luvio, config) {
|
|
1654
|
+
return keyPrefix + '::' + RepresentationType$3 + ':' + config.requestId;
|
|
1655
1655
|
}
|
|
1656
1656
|
function keyBuilderFromType$1(luvio, object) {
|
|
1657
1657
|
const keyParams = {
|
|
1658
1658
|
requestId: object.requestId
|
|
1659
1659
|
};
|
|
1660
|
-
return keyBuilder$
|
|
1660
|
+
return keyBuilder$5(luvio, keyParams);
|
|
1661
1661
|
}
|
|
1662
|
-
function normalize$
|
|
1662
|
+
function normalize$3(input, existing, path, luvio, store, timestamp) {
|
|
1663
1663
|
return input;
|
|
1664
1664
|
}
|
|
1665
|
-
const select$
|
|
1666
|
-
const { selections: EinsteinLlmGenerationItemRepresentation__selections, opaque: EinsteinLlmGenerationItemRepresentation__opaque, } = select$
|
|
1667
|
-
const { selections: WrappedMap__selections, opaque: WrappedMap__opaque, } = select$
|
|
1665
|
+
const select$d = function EinsteinLlmGenerationsRepresentationSelect() {
|
|
1666
|
+
const { selections: EinsteinLlmGenerationItemRepresentation__selections, opaque: EinsteinLlmGenerationItemRepresentation__opaque, } = select$f();
|
|
1667
|
+
const { selections: WrappedMap__selections, opaque: WrappedMap__opaque, } = select$e();
|
|
1668
1668
|
return {
|
|
1669
1669
|
kind: 'Fragment',
|
|
1670
|
-
version: VERSION$
|
|
1670
|
+
version: VERSION$9,
|
|
1671
1671
|
private: [],
|
|
1672
1672
|
selections: [
|
|
1673
1673
|
{
|
|
@@ -1693,7 +1693,7 @@ const select$9 = function EinsteinLlmGenerationsRepresentationSelect() {
|
|
|
1693
1693
|
]
|
|
1694
1694
|
};
|
|
1695
1695
|
};
|
|
1696
|
-
function equals$
|
|
1696
|
+
function equals$9(existing, incoming) {
|
|
1697
1697
|
const existing_requestId = existing.requestId;
|
|
1698
1698
|
const incoming_requestId = incoming.requestId;
|
|
1699
1699
|
if (!(existing_requestId === incoming_requestId)) {
|
|
@@ -1702,7 +1702,7 @@ function equals$6(existing, incoming) {
|
|
|
1702
1702
|
const existing_generations = existing.generations;
|
|
1703
1703
|
const incoming_generations = incoming.generations;
|
|
1704
1704
|
const equals_generations_items = equalsArray(existing_generations, incoming_generations, (existing_generations_item, incoming_generations_item) => {
|
|
1705
|
-
if (!(equals$
|
|
1705
|
+
if (!(equals$b(existing_generations_item, incoming_generations_item))) {
|
|
1706
1706
|
return false;
|
|
1707
1707
|
}
|
|
1708
1708
|
});
|
|
@@ -1714,7 +1714,7 @@ function equals$6(existing, incoming) {
|
|
|
1714
1714
|
if (!(existing_parameters === incoming_parameters
|
|
1715
1715
|
|| (existing_parameters != null &&
|
|
1716
1716
|
incoming_parameters != null &&
|
|
1717
|
-
equals$
|
|
1717
|
+
equals$a(existing_parameters, incoming_parameters)))) {
|
|
1718
1718
|
return false;
|
|
1719
1719
|
}
|
|
1720
1720
|
const existing_prompt = existing.prompt;
|
|
@@ -1724,41 +1724,41 @@ function equals$6(existing, incoming) {
|
|
|
1724
1724
|
}
|
|
1725
1725
|
return true;
|
|
1726
1726
|
}
|
|
1727
|
-
const ingest$
|
|
1727
|
+
const ingest$3 = function EinsteinLlmGenerationsRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
1728
1728
|
if (process.env.NODE_ENV !== 'production') {
|
|
1729
|
-
const validateError = validate$
|
|
1729
|
+
const validateError = validate$d(input);
|
|
1730
1730
|
if (validateError !== null) {
|
|
1731
1731
|
throw validateError;
|
|
1732
1732
|
}
|
|
1733
1733
|
}
|
|
1734
1734
|
const key = keyBuilderFromType$1(luvio, input);
|
|
1735
|
-
const ttlToUse = TTL$
|
|
1736
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$
|
|
1735
|
+
const ttlToUse = TTL$3;
|
|
1736
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$3, "EinsteinLLM", VERSION$9, RepresentationType$3, equals$9);
|
|
1737
1737
|
return createLink(key);
|
|
1738
1738
|
};
|
|
1739
|
-
function getTypeCacheKeys$
|
|
1739
|
+
function getTypeCacheKeys$3(rootKeySet, luvio, input, fullPathFactory) {
|
|
1740
1740
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
1741
1741
|
const rootKey = keyBuilderFromType$1(luvio, input);
|
|
1742
1742
|
rootKeySet.set(rootKey, {
|
|
1743
1743
|
namespace: keyPrefix,
|
|
1744
|
-
representationName: RepresentationType$
|
|
1744
|
+
representationName: RepresentationType$3,
|
|
1745
1745
|
mergeable: false
|
|
1746
1746
|
});
|
|
1747
1747
|
}
|
|
1748
1748
|
|
|
1749
|
-
function select$
|
|
1750
|
-
return select$
|
|
1749
|
+
function select$c(luvio, params) {
|
|
1750
|
+
return select$d();
|
|
1751
1751
|
}
|
|
1752
|
-
function getResponseCacheKeys$
|
|
1753
|
-
getTypeCacheKeys$
|
|
1752
|
+
function getResponseCacheKeys$3(storeKeyMap, luvio, resourceParams, response) {
|
|
1753
|
+
getTypeCacheKeys$3(storeKeyMap, luvio, response);
|
|
1754
1754
|
}
|
|
1755
|
-
function ingestSuccess$
|
|
1755
|
+
function ingestSuccess$3(luvio, resourceParams, response) {
|
|
1756
1756
|
const { body } = response;
|
|
1757
1757
|
const key = keyBuilderFromType$1(luvio, body);
|
|
1758
|
-
luvio.storeIngest(key, ingest$
|
|
1758
|
+
luvio.storeIngest(key, ingest$3, body);
|
|
1759
1759
|
const snapshot = luvio.storeLookup({
|
|
1760
1760
|
recordId: key,
|
|
1761
|
-
node: select$
|
|
1761
|
+
node: select$c(),
|
|
1762
1762
|
variables: {},
|
|
1763
1763
|
});
|
|
1764
1764
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -1769,7 +1769,7 @@ function ingestSuccess$2(luvio, resourceParams, response) {
|
|
|
1769
1769
|
deepFreeze(snapshot.data);
|
|
1770
1770
|
return snapshot;
|
|
1771
1771
|
}
|
|
1772
|
-
function createResourceRequest$
|
|
1772
|
+
function createResourceRequest$3(config) {
|
|
1773
1773
|
const headers = {};
|
|
1774
1774
|
return {
|
|
1775
1775
|
baseUri: '/services/data/v63.0',
|
|
@@ -1783,45 +1783,45 @@ function createResourceRequest$2(config) {
|
|
|
1783
1783
|
};
|
|
1784
1784
|
}
|
|
1785
1785
|
|
|
1786
|
-
const adapterName$
|
|
1786
|
+
const adapterName$3 = 'createGenerations';
|
|
1787
1787
|
const createGenerations_ConfigPropertyMetadata = [
|
|
1788
1788
|
generateParamConfigMetadata('generationsInput', true, 2 /* Body */, 4 /* Unsupported */),
|
|
1789
1789
|
];
|
|
1790
|
-
const createGenerations_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$
|
|
1791
|
-
const createResourceParams$
|
|
1792
|
-
function typeCheckConfig$
|
|
1790
|
+
const createGenerations_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$3, createGenerations_ConfigPropertyMetadata);
|
|
1791
|
+
const createResourceParams$3 = /*#__PURE__*/ createResourceParams$6(createGenerations_ConfigPropertyMetadata);
|
|
1792
|
+
function typeCheckConfig$3(untrustedConfig) {
|
|
1793
1793
|
const config = {};
|
|
1794
1794
|
const untrustedConfig_generationsInput = untrustedConfig.generationsInput;
|
|
1795
|
-
const referenceEinsteinLlmGenerationsInputRepresentationValidationError = validate$
|
|
1795
|
+
const referenceEinsteinLlmGenerationsInputRepresentationValidationError = validate$i(untrustedConfig_generationsInput);
|
|
1796
1796
|
if (referenceEinsteinLlmGenerationsInputRepresentationValidationError === null) {
|
|
1797
1797
|
config.generationsInput = untrustedConfig_generationsInput;
|
|
1798
1798
|
}
|
|
1799
1799
|
return config;
|
|
1800
1800
|
}
|
|
1801
|
-
function validateAdapterConfig$
|
|
1801
|
+
function validateAdapterConfig$3(untrustedConfig, configPropertyNames) {
|
|
1802
1802
|
if (!untrustedIsObject(untrustedConfig)) {
|
|
1803
1803
|
return null;
|
|
1804
1804
|
}
|
|
1805
1805
|
if (process.env.NODE_ENV !== 'production') {
|
|
1806
1806
|
validateConfig(untrustedConfig, configPropertyNames);
|
|
1807
1807
|
}
|
|
1808
|
-
const config = typeCheckConfig$
|
|
1808
|
+
const config = typeCheckConfig$3(untrustedConfig);
|
|
1809
1809
|
if (!areRequiredParametersPresent(config, configPropertyNames)) {
|
|
1810
1810
|
return null;
|
|
1811
1811
|
}
|
|
1812
1812
|
return config;
|
|
1813
1813
|
}
|
|
1814
|
-
function buildNetworkSnapshot$
|
|
1815
|
-
const resourceParams = createResourceParams$
|
|
1816
|
-
const request = createResourceRequest$
|
|
1814
|
+
function buildNetworkSnapshot$3(luvio, config, options) {
|
|
1815
|
+
const resourceParams = createResourceParams$3(config);
|
|
1816
|
+
const request = createResourceRequest$3(resourceParams);
|
|
1817
1817
|
return luvio.dispatchResourceRequest(request, options)
|
|
1818
1818
|
.then((response) => {
|
|
1819
1819
|
return luvio.handleSuccessResponse(() => {
|
|
1820
|
-
const snapshot = ingestSuccess$
|
|
1820
|
+
const snapshot = ingestSuccess$3(luvio, resourceParams, response);
|
|
1821
1821
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
1822
1822
|
}, () => {
|
|
1823
1823
|
const cache = new StoreKeyMap();
|
|
1824
|
-
getResponseCacheKeys$
|
|
1824
|
+
getResponseCacheKeys$3(cache, luvio, resourceParams, response.body);
|
|
1825
1825
|
return cache;
|
|
1826
1826
|
});
|
|
1827
1827
|
}, (response) => {
|
|
@@ -1831,16 +1831,16 @@ function buildNetworkSnapshot$2(luvio, config, options) {
|
|
|
1831
1831
|
}
|
|
1832
1832
|
const createGenerationsAdapterFactory = (luvio) => {
|
|
1833
1833
|
return function createGenerations(untrustedConfig) {
|
|
1834
|
-
const config = validateAdapterConfig$
|
|
1834
|
+
const config = validateAdapterConfig$3(untrustedConfig, createGenerations_ConfigPropertyNames);
|
|
1835
1835
|
// Invalid or incomplete config
|
|
1836
1836
|
if (config === null) {
|
|
1837
1837
|
throw new Error('Invalid config for "createGenerations"');
|
|
1838
1838
|
}
|
|
1839
|
-
return buildNetworkSnapshot$
|
|
1839
|
+
return buildNetworkSnapshot$3(luvio, config);
|
|
1840
1840
|
};
|
|
1841
1841
|
};
|
|
1842
1842
|
|
|
1843
|
-
function validate$
|
|
1843
|
+
function validate$c(obj, path = 'WrappedValueMap') {
|
|
1844
1844
|
const v_error = (() => {
|
|
1845
1845
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1846
1846
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1863,7 +1863,7 @@ function validate$9(obj, path = 'WrappedValueMap') {
|
|
|
1863
1863
|
return v_error === undefined ? null : v_error;
|
|
1864
1864
|
}
|
|
1865
1865
|
|
|
1866
|
-
function validate$
|
|
1866
|
+
function validate$b(obj, path = 'EinsteinPromptTemplateGenerationsInputRepresentation') {
|
|
1867
1867
|
const v_error = (() => {
|
|
1868
1868
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1869
1869
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1871,7 +1871,7 @@ function validate$8(obj, path = 'EinsteinPromptTemplateGenerationsInputRepresent
|
|
|
1871
1871
|
if (obj.additionalConfig !== undefined) {
|
|
1872
1872
|
const obj_additionalConfig = obj.additionalConfig;
|
|
1873
1873
|
const path_additionalConfig = path + '.additionalConfig';
|
|
1874
|
-
const referencepath_additionalConfigValidationError = validate$
|
|
1874
|
+
const referencepath_additionalConfigValidationError = validate$j(obj_additionalConfig, path_additionalConfig);
|
|
1875
1875
|
if (referencepath_additionalConfigValidationError !== null) {
|
|
1876
1876
|
let message = 'Object doesn\'t match EinsteinLlmAdditionalConfigInputRepresentation (at "' + path_additionalConfig + '")\n';
|
|
1877
1877
|
message += referencepath_additionalConfigValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1880,7 +1880,7 @@ function validate$8(obj, path = 'EinsteinPromptTemplateGenerationsInputRepresent
|
|
|
1880
1880
|
}
|
|
1881
1881
|
const obj_inputParams = obj.inputParams;
|
|
1882
1882
|
const path_inputParams = path + '.inputParams';
|
|
1883
|
-
const referencepath_inputParamsValidationError = validate$
|
|
1883
|
+
const referencepath_inputParamsValidationError = validate$c(obj_inputParams, path_inputParams);
|
|
1884
1884
|
if (referencepath_inputParamsValidationError !== null) {
|
|
1885
1885
|
let message = 'Object doesn\'t match WrappedValueMap (at "' + path_inputParams + '")\n';
|
|
1886
1886
|
message += referencepath_inputParamsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1909,8 +1909,8 @@ function validate$8(obj, path = 'EinsteinPromptTemplateGenerationsInputRepresent
|
|
|
1909
1909
|
return v_error === undefined ? null : v_error;
|
|
1910
1910
|
}
|
|
1911
1911
|
|
|
1912
|
-
const VERSION$
|
|
1913
|
-
function validate$
|
|
1912
|
+
const VERSION$8 = "6458d624e5a1691821c764b6de0badb3";
|
|
1913
|
+
function validate$a(obj, path = 'EinsteinPromptTemplateGenerationsErrorRepresentation') {
|
|
1914
1914
|
const v_error = (() => {
|
|
1915
1915
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1916
1916
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1940,10 +1940,10 @@ function validate$7(obj, path = 'EinsteinPromptTemplateGenerationsErrorRepresent
|
|
|
1940
1940
|
})();
|
|
1941
1941
|
return v_error === undefined ? null : v_error;
|
|
1942
1942
|
}
|
|
1943
|
-
const select$
|
|
1943
|
+
const select$b = function EinsteinPromptTemplateGenerationsErrorRepresentationSelect() {
|
|
1944
1944
|
return {
|
|
1945
1945
|
kind: 'Fragment',
|
|
1946
|
-
version: VERSION$
|
|
1946
|
+
version: VERSION$8,
|
|
1947
1947
|
private: [],
|
|
1948
1948
|
selections: [
|
|
1949
1949
|
{
|
|
@@ -1966,7 +1966,7 @@ const select$7 = function EinsteinPromptTemplateGenerationsErrorRepresentationSe
|
|
|
1966
1966
|
]
|
|
1967
1967
|
};
|
|
1968
1968
|
};
|
|
1969
|
-
function equals$
|
|
1969
|
+
function equals$8(existing, incoming) {
|
|
1970
1970
|
const existing_errorMessage = existing.errorMessage;
|
|
1971
1971
|
const incoming_errorMessage = incoming.errorMessage;
|
|
1972
1972
|
if (!(existing_errorMessage === incoming_errorMessage)) {
|
|
@@ -1998,8 +1998,8 @@ function equals$5(existing, incoming) {
|
|
|
1998
1998
|
return true;
|
|
1999
1999
|
}
|
|
2000
2000
|
|
|
2001
|
-
const VERSION$
|
|
2002
|
-
function validate$
|
|
2001
|
+
const VERSION$7 = "7c417ce44e4bc05dfcc454e6825590e8";
|
|
2002
|
+
function validate$9(obj, path = 'EinsteinPromptTemplateMaskSettingsRepresentation') {
|
|
2003
2003
|
const v_error = (() => {
|
|
2004
2004
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2005
2005
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2012,10 +2012,10 @@ function validate$6(obj, path = 'EinsteinPromptTemplateMaskSettingsRepresentatio
|
|
|
2012
2012
|
})();
|
|
2013
2013
|
return v_error === undefined ? null : v_error;
|
|
2014
2014
|
}
|
|
2015
|
-
const select$
|
|
2015
|
+
const select$a = function EinsteinPromptTemplateMaskSettingsRepresentationSelect() {
|
|
2016
2016
|
return {
|
|
2017
2017
|
kind: 'Fragment',
|
|
2018
|
-
version: VERSION$
|
|
2018
|
+
version: VERSION$7,
|
|
2019
2019
|
private: [],
|
|
2020
2020
|
selections: [
|
|
2021
2021
|
{
|
|
@@ -2025,7 +2025,7 @@ const select$6 = function EinsteinPromptTemplateMaskSettingsRepresentationSelect
|
|
|
2025
2025
|
]
|
|
2026
2026
|
};
|
|
2027
2027
|
};
|
|
2028
|
-
function equals$
|
|
2028
|
+
function equals$7(existing, incoming) {
|
|
2029
2029
|
const existing_enableModeration = existing.enableModeration;
|
|
2030
2030
|
const incoming_enableModeration = incoming.enableModeration;
|
|
2031
2031
|
if (!(existing_enableModeration === incoming_enableModeration)) {
|
|
@@ -2034,8 +2034,8 @@ function equals$4(existing, incoming) {
|
|
|
2034
2034
|
return true;
|
|
2035
2035
|
}
|
|
2036
2036
|
|
|
2037
|
-
const VERSION$
|
|
2038
|
-
function validate$
|
|
2037
|
+
const VERSION$6 = "92ad1abd0e2a60bc36941409cadda7e2";
|
|
2038
|
+
function validate$8(obj, path = 'EinsteinPromptTemplateMaskContentRepresentation') {
|
|
2039
2039
|
const v_error = (() => {
|
|
2040
2040
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2041
2041
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2050,7 +2050,7 @@ function validate$5(obj, path = 'EinsteinPromptTemplateMaskContentRepresentation
|
|
|
2050
2050
|
const path_moderationSettings = path + '.moderationSettings';
|
|
2051
2051
|
let obj_moderationSettings_union0 = null;
|
|
2052
2052
|
const obj_moderationSettings_union0_error = (() => {
|
|
2053
|
-
const referencepath_moderationSettingsValidationError = validate$
|
|
2053
|
+
const referencepath_moderationSettingsValidationError = validate$9(obj_moderationSettings, path_moderationSettings);
|
|
2054
2054
|
if (referencepath_moderationSettingsValidationError !== null) {
|
|
2055
2055
|
let message = 'Object doesn\'t match EinsteinPromptTemplateMaskSettingsRepresentation (at "' + path_moderationSettings + '")\n';
|
|
2056
2056
|
message += referencepath_moderationSettingsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2086,11 +2086,11 @@ function validate$5(obj, path = 'EinsteinPromptTemplateMaskContentRepresentation
|
|
|
2086
2086
|
})();
|
|
2087
2087
|
return v_error === undefined ? null : v_error;
|
|
2088
2088
|
}
|
|
2089
|
-
const select$
|
|
2090
|
-
const { selections: EinsteinPromptTemplateMaskSettingsRepresentation__selections, opaque: EinsteinPromptTemplateMaskSettingsRepresentation__opaque, } = select$
|
|
2089
|
+
const select$9 = function EinsteinPromptTemplateMaskContentRepresentationSelect() {
|
|
2090
|
+
const { selections: EinsteinPromptTemplateMaskSettingsRepresentation__selections, opaque: EinsteinPromptTemplateMaskSettingsRepresentation__opaque, } = select$a();
|
|
2091
2091
|
return {
|
|
2092
2092
|
kind: 'Fragment',
|
|
2093
|
-
version: VERSION$
|
|
2093
|
+
version: VERSION$6,
|
|
2094
2094
|
private: [],
|
|
2095
2095
|
selections: [
|
|
2096
2096
|
{
|
|
@@ -2112,7 +2112,7 @@ const select$5 = function EinsteinPromptTemplateMaskContentRepresentationSelect(
|
|
|
2112
2112
|
]
|
|
2113
2113
|
};
|
|
2114
2114
|
};
|
|
2115
|
-
function equals$
|
|
2115
|
+
function equals$6(existing, incoming) {
|
|
2116
2116
|
const existing_content = existing.content;
|
|
2117
2117
|
const incoming_content = incoming.content;
|
|
2118
2118
|
if (!(existing_content === incoming_content)) {
|
|
@@ -2143,15 +2143,15 @@ function equals$3(existing, incoming) {
|
|
|
2143
2143
|
if (!(existing_moderationSettings === incoming_moderationSettings
|
|
2144
2144
|
|| (existing_moderationSettings != null &&
|
|
2145
2145
|
incoming_moderationSettings != null &&
|
|
2146
|
-
equals$
|
|
2146
|
+
equals$7(existing_moderationSettings, incoming_moderationSettings)))) {
|
|
2147
2147
|
return false;
|
|
2148
2148
|
}
|
|
2149
2149
|
}
|
|
2150
2150
|
return true;
|
|
2151
2151
|
}
|
|
2152
2152
|
|
|
2153
|
-
const VERSION$
|
|
2154
|
-
function validate$
|
|
2153
|
+
const VERSION$5 = "507a815605f8d30ae9b52b0ec513d25e";
|
|
2154
|
+
function validate$7(obj, path = 'EinsteinPromptTemplateMaskDataRepresentation') {
|
|
2155
2155
|
const v_error = (() => {
|
|
2156
2156
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2157
2157
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2181,10 +2181,10 @@ function validate$4(obj, path = 'EinsteinPromptTemplateMaskDataRepresentation')
|
|
|
2181
2181
|
})();
|
|
2182
2182
|
return v_error === undefined ? null : v_error;
|
|
2183
2183
|
}
|
|
2184
|
-
const select$
|
|
2184
|
+
const select$8 = function EinsteinPromptTemplateMaskDataRepresentationSelect() {
|
|
2185
2185
|
return {
|
|
2186
2186
|
kind: 'Fragment',
|
|
2187
|
-
version: VERSION$
|
|
2187
|
+
version: VERSION$5,
|
|
2188
2188
|
private: [],
|
|
2189
2189
|
selections: [
|
|
2190
2190
|
{
|
|
@@ -2203,7 +2203,7 @@ const select$4 = function EinsteinPromptTemplateMaskDataRepresentationSelect() {
|
|
|
2203
2203
|
]
|
|
2204
2204
|
};
|
|
2205
2205
|
};
|
|
2206
|
-
function equals$
|
|
2206
|
+
function equals$5(existing, incoming) {
|
|
2207
2207
|
const existing_originalValue = existing.originalValue;
|
|
2208
2208
|
const incoming_originalValue = incoming.originalValue;
|
|
2209
2209
|
if (!(existing_originalValue === incoming_originalValue)) {
|
|
@@ -2227,13 +2227,27 @@ function equals$2(existing, incoming) {
|
|
|
2227
2227
|
return true;
|
|
2228
2228
|
}
|
|
2229
2229
|
|
|
2230
|
-
const TTL$
|
|
2231
|
-
const VERSION$
|
|
2232
|
-
function validate$
|
|
2230
|
+
const TTL$2 = 100;
|
|
2231
|
+
const VERSION$4 = "5c0988467d96a6294bb404f5c378bf8a";
|
|
2232
|
+
function validate$6(obj, path = 'EinsteinPromptTemplateGenerationsRepresentation') {
|
|
2233
2233
|
const v_error = (() => {
|
|
2234
2234
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2235
2235
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
2236
2236
|
}
|
|
2237
|
+
if (obj.fileIds !== undefined) {
|
|
2238
|
+
const obj_fileIds = obj.fileIds;
|
|
2239
|
+
const path_fileIds = path + '.fileIds';
|
|
2240
|
+
if (!ArrayIsArray(obj_fileIds)) {
|
|
2241
|
+
return new TypeError('Expected "array" but received "' + typeof obj_fileIds + '" (at "' + path_fileIds + '")');
|
|
2242
|
+
}
|
|
2243
|
+
for (let i = 0; i < obj_fileIds.length; i++) {
|
|
2244
|
+
const obj_fileIds_item = obj_fileIds[i];
|
|
2245
|
+
const path_fileIds_item = path_fileIds + '[' + i + ']';
|
|
2246
|
+
if (typeof obj_fileIds_item !== 'string') {
|
|
2247
|
+
return new TypeError('Expected "string" but received "' + typeof obj_fileIds_item + '" (at "' + path_fileIds_item + '")');
|
|
2248
|
+
}
|
|
2249
|
+
}
|
|
2250
|
+
}
|
|
2237
2251
|
if (obj.generationErrors !== undefined) {
|
|
2238
2252
|
const obj_generationErrors = obj.generationErrors;
|
|
2239
2253
|
const path_generationErrors = path + '.generationErrors';
|
|
@@ -2243,7 +2257,7 @@ function validate$3(obj, path = 'EinsteinPromptTemplateGenerationsRepresentation
|
|
|
2243
2257
|
for (let i = 0; i < obj_generationErrors.length; i++) {
|
|
2244
2258
|
const obj_generationErrors_item = obj_generationErrors[i];
|
|
2245
2259
|
const path_generationErrors_item = path_generationErrors + '[' + i + ']';
|
|
2246
|
-
const referencepath_generationErrors_itemValidationError = validate$
|
|
2260
|
+
const referencepath_generationErrors_itemValidationError = validate$a(obj_generationErrors_item, path_generationErrors_item);
|
|
2247
2261
|
if (referencepath_generationErrors_itemValidationError !== null) {
|
|
2248
2262
|
let message = 'Object doesn\'t match EinsteinPromptTemplateGenerationsErrorRepresentation (at "' + path_generationErrors_item + '")\n';
|
|
2249
2263
|
message += referencepath_generationErrors_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2259,7 +2273,7 @@ function validate$3(obj, path = 'EinsteinPromptTemplateGenerationsRepresentation
|
|
|
2259
2273
|
for (let i = 0; i < obj_generations.length; i++) {
|
|
2260
2274
|
const obj_generations_item = obj_generations[i];
|
|
2261
2275
|
const path_generations_item = path_generations + '[' + i + ']';
|
|
2262
|
-
const referencepath_generations_itemValidationError = validate$
|
|
2276
|
+
const referencepath_generations_itemValidationError = validate$f(obj_generations_item, path_generations_item);
|
|
2263
2277
|
if (referencepath_generations_itemValidationError !== null) {
|
|
2264
2278
|
let message = 'Object doesn\'t match EinsteinLlmGenerationItemRepresentation (at "' + path_generations_item + '")\n';
|
|
2265
2279
|
message += referencepath_generations_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2270,7 +2284,7 @@ function validate$3(obj, path = 'EinsteinPromptTemplateGenerationsRepresentation
|
|
|
2270
2284
|
const path_parameters = path + '.parameters';
|
|
2271
2285
|
let obj_parameters_union0 = null;
|
|
2272
2286
|
const obj_parameters_union0_error = (() => {
|
|
2273
|
-
const referencepath_parametersValidationError = validate$
|
|
2287
|
+
const referencepath_parametersValidationError = validate$e(obj_parameters, path_parameters);
|
|
2274
2288
|
if (referencepath_parametersValidationError !== null) {
|
|
2275
2289
|
let message = 'Object doesn\'t match WrappedMap (at "' + path_parameters + '")\n';
|
|
2276
2290
|
message += referencepath_parametersValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2340,7 +2354,7 @@ function validate$3(obj, path = 'EinsteinPromptTemplateGenerationsRepresentation
|
|
|
2340
2354
|
for (let i = 0; i < obj_requestMessages.length; i++) {
|
|
2341
2355
|
const obj_requestMessages_item = obj_requestMessages[i];
|
|
2342
2356
|
const path_requestMessages_item = path_requestMessages + '[' + i + ']';
|
|
2343
|
-
const referencepath_requestMessages_itemValidationError = validate$
|
|
2357
|
+
const referencepath_requestMessages_itemValidationError = validate$8(obj_requestMessages_item, path_requestMessages_item);
|
|
2344
2358
|
if (referencepath_requestMessages_itemValidationError !== null) {
|
|
2345
2359
|
let message = 'Object doesn\'t match EinsteinPromptTemplateMaskContentRepresentation (at "' + path_requestMessages_item + '")\n';
|
|
2346
2360
|
message += referencepath_requestMessages_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2357,7 +2371,7 @@ function validate$3(obj, path = 'EinsteinPromptTemplateGenerationsRepresentation
|
|
|
2357
2371
|
for (let i = 0; i < obj_responseMessages.length; i++) {
|
|
2358
2372
|
const obj_responseMessages_item = obj_responseMessages[i];
|
|
2359
2373
|
const path_responseMessages_item = path_responseMessages + '[' + i + ']';
|
|
2360
|
-
const referencepath_responseMessages_itemValidationError = validate$
|
|
2374
|
+
const referencepath_responseMessages_itemValidationError = validate$8(obj_responseMessages_item, path_responseMessages_item);
|
|
2361
2375
|
if (referencepath_responseMessages_itemValidationError !== null) {
|
|
2362
2376
|
let message = 'Object doesn\'t match EinsteinPromptTemplateMaskContentRepresentation (at "' + path_responseMessages_item + '")\n';
|
|
2363
2377
|
message += referencepath_responseMessages_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2374,7 +2388,7 @@ function validate$3(obj, path = 'EinsteinPromptTemplateGenerationsRepresentation
|
|
|
2374
2388
|
for (let i = 0; i < obj_slotsMaskingInformation.length; i++) {
|
|
2375
2389
|
const obj_slotsMaskingInformation_item = obj_slotsMaskingInformation[i];
|
|
2376
2390
|
const path_slotsMaskingInformation_item = path_slotsMaskingInformation + '[' + i + ']';
|
|
2377
|
-
const referencepath_slotsMaskingInformation_itemValidationError = validate$
|
|
2391
|
+
const referencepath_slotsMaskingInformation_itemValidationError = validate$7(obj_slotsMaskingInformation_item, path_slotsMaskingInformation_item);
|
|
2378
2392
|
if (referencepath_slotsMaskingInformation_itemValidationError !== null) {
|
|
2379
2393
|
let message = 'Object doesn\'t match EinsteinPromptTemplateMaskDataRepresentation (at "' + path_slotsMaskingInformation_item + '")\n';
|
|
2380
2394
|
message += referencepath_slotsMaskingInformation_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2385,30 +2399,36 @@ function validate$3(obj, path = 'EinsteinPromptTemplateGenerationsRepresentation
|
|
|
2385
2399
|
})();
|
|
2386
2400
|
return v_error === undefined ? null : v_error;
|
|
2387
2401
|
}
|
|
2388
|
-
const RepresentationType$
|
|
2389
|
-
function keyBuilder$
|
|
2390
|
-
return keyPrefix + '::' + RepresentationType$
|
|
2402
|
+
const RepresentationType$2 = 'EinsteinPromptTemplateGenerationsRepresentation';
|
|
2403
|
+
function keyBuilder$4(luvio, config) {
|
|
2404
|
+
return keyPrefix + '::' + RepresentationType$2 + ':' + config.requestId;
|
|
2391
2405
|
}
|
|
2392
2406
|
function keyBuilderFromType(luvio, object) {
|
|
2393
2407
|
const keyParams = {
|
|
2394
2408
|
requestId: object.requestId
|
|
2395
2409
|
};
|
|
2396
|
-
return keyBuilder$
|
|
2410
|
+
return keyBuilder$4(luvio, keyParams);
|
|
2397
2411
|
}
|
|
2398
|
-
function normalize$
|
|
2412
|
+
function normalize$2(input, existing, path, luvio, store, timestamp) {
|
|
2399
2413
|
return input;
|
|
2400
2414
|
}
|
|
2401
|
-
const select$
|
|
2402
|
-
const { selections: EinsteinPromptTemplateGenerationsErrorRepresentation__selections, opaque: EinsteinPromptTemplateGenerationsErrorRepresentation__opaque, } = select$
|
|
2403
|
-
const { selections: EinsteinLlmGenerationItemRepresentation__selections, opaque: EinsteinLlmGenerationItemRepresentation__opaque, } = select$
|
|
2404
|
-
const { selections: WrappedMap__selections, opaque: WrappedMap__opaque, } = select$
|
|
2405
|
-
const { selections: EinsteinPromptTemplateMaskContentRepresentation__selections, opaque: EinsteinPromptTemplateMaskContentRepresentation__opaque, } = select$
|
|
2406
|
-
const { selections: EinsteinPromptTemplateMaskDataRepresentation__selections, opaque: EinsteinPromptTemplateMaskDataRepresentation__opaque, } = select$
|
|
2415
|
+
const select$7 = function EinsteinPromptTemplateGenerationsRepresentationSelect() {
|
|
2416
|
+
const { selections: EinsteinPromptTemplateGenerationsErrorRepresentation__selections, opaque: EinsteinPromptTemplateGenerationsErrorRepresentation__opaque, } = select$b();
|
|
2417
|
+
const { selections: EinsteinLlmGenerationItemRepresentation__selections, opaque: EinsteinLlmGenerationItemRepresentation__opaque, } = select$f();
|
|
2418
|
+
const { selections: WrappedMap__selections, opaque: WrappedMap__opaque, } = select$e();
|
|
2419
|
+
const { selections: EinsteinPromptTemplateMaskContentRepresentation__selections, opaque: EinsteinPromptTemplateMaskContentRepresentation__opaque, } = select$9();
|
|
2420
|
+
const { selections: EinsteinPromptTemplateMaskDataRepresentation__selections, opaque: EinsteinPromptTemplateMaskDataRepresentation__opaque, } = select$8();
|
|
2407
2421
|
return {
|
|
2408
2422
|
kind: 'Fragment',
|
|
2409
|
-
version: VERSION$
|
|
2423
|
+
version: VERSION$4,
|
|
2410
2424
|
private: [],
|
|
2411
2425
|
selections: [
|
|
2426
|
+
{
|
|
2427
|
+
name: 'fileIds',
|
|
2428
|
+
kind: 'Scalar',
|
|
2429
|
+
plural: true,
|
|
2430
|
+
required: false
|
|
2431
|
+
},
|
|
2412
2432
|
{
|
|
2413
2433
|
name: 'generationErrors',
|
|
2414
2434
|
kind: 'Object',
|
|
@@ -2464,7 +2484,7 @@ const select$3 = function EinsteinPromptTemplateGenerationsRepresentationSelect(
|
|
|
2464
2484
|
]
|
|
2465
2485
|
};
|
|
2466
2486
|
};
|
|
2467
|
-
function equals$
|
|
2487
|
+
function equals$4(existing, incoming) {
|
|
2468
2488
|
const existing_promptTemplateDevName = existing.promptTemplateDevName;
|
|
2469
2489
|
const incoming_promptTemplateDevName = incoming.promptTemplateDevName;
|
|
2470
2490
|
if (!(existing_promptTemplateDevName === incoming_promptTemplateDevName)) {
|
|
@@ -2475,6 +2495,24 @@ function equals$1(existing, incoming) {
|
|
|
2475
2495
|
if (!(existing_requestId === incoming_requestId)) {
|
|
2476
2496
|
return false;
|
|
2477
2497
|
}
|
|
2498
|
+
const existing_fileIds = existing.fileIds;
|
|
2499
|
+
const incoming_fileIds = incoming.fileIds;
|
|
2500
|
+
// if at least one of these optionals is defined
|
|
2501
|
+
if (existing_fileIds !== undefined || incoming_fileIds !== undefined) {
|
|
2502
|
+
// if one of these is not defined we know the other is defined and therefore
|
|
2503
|
+
// not equal
|
|
2504
|
+
if (existing_fileIds === undefined || incoming_fileIds === undefined) {
|
|
2505
|
+
return false;
|
|
2506
|
+
}
|
|
2507
|
+
const equals_fileIds_items = equalsArray(existing_fileIds, incoming_fileIds, (existing_fileIds_item, incoming_fileIds_item) => {
|
|
2508
|
+
if (!(existing_fileIds_item === incoming_fileIds_item)) {
|
|
2509
|
+
return false;
|
|
2510
|
+
}
|
|
2511
|
+
});
|
|
2512
|
+
if (equals_fileIds_items === false) {
|
|
2513
|
+
return false;
|
|
2514
|
+
}
|
|
2515
|
+
}
|
|
2478
2516
|
const existing_generationErrors = existing.generationErrors;
|
|
2479
2517
|
const incoming_generationErrors = incoming.generationErrors;
|
|
2480
2518
|
// if at least one of these optionals is defined
|
|
@@ -2485,7 +2523,7 @@ function equals$1(existing, incoming) {
|
|
|
2485
2523
|
return false;
|
|
2486
2524
|
}
|
|
2487
2525
|
const equals_generationErrors_items = equalsArray(existing_generationErrors, incoming_generationErrors, (existing_generationErrors_item, incoming_generationErrors_item) => {
|
|
2488
|
-
if (!(equals$
|
|
2526
|
+
if (!(equals$8(existing_generationErrors_item, incoming_generationErrors_item))) {
|
|
2489
2527
|
return false;
|
|
2490
2528
|
}
|
|
2491
2529
|
});
|
|
@@ -2496,7 +2534,7 @@ function equals$1(existing, incoming) {
|
|
|
2496
2534
|
const existing_generations = existing.generations;
|
|
2497
2535
|
const incoming_generations = incoming.generations;
|
|
2498
2536
|
const equals_generations_items = equalsArray(existing_generations, incoming_generations, (existing_generations_item, incoming_generations_item) => {
|
|
2499
|
-
if (!(equals$
|
|
2537
|
+
if (!(equals$b(existing_generations_item, incoming_generations_item))) {
|
|
2500
2538
|
return false;
|
|
2501
2539
|
}
|
|
2502
2540
|
});
|
|
@@ -2508,7 +2546,7 @@ function equals$1(existing, incoming) {
|
|
|
2508
2546
|
if (!(existing_parameters === incoming_parameters
|
|
2509
2547
|
|| (existing_parameters != null &&
|
|
2510
2548
|
incoming_parameters != null &&
|
|
2511
|
-
equals$
|
|
2549
|
+
equals$a(existing_parameters, incoming_parameters)))) {
|
|
2512
2550
|
return false;
|
|
2513
2551
|
}
|
|
2514
2552
|
const existing_prompt = existing.prompt;
|
|
@@ -2526,7 +2564,7 @@ function equals$1(existing, incoming) {
|
|
|
2526
2564
|
return false;
|
|
2527
2565
|
}
|
|
2528
2566
|
const equals_requestMessages_items = equalsArray(existing_requestMessages, incoming_requestMessages, (existing_requestMessages_item, incoming_requestMessages_item) => {
|
|
2529
|
-
if (!(equals$
|
|
2567
|
+
if (!(equals$6(existing_requestMessages_item, incoming_requestMessages_item))) {
|
|
2530
2568
|
return false;
|
|
2531
2569
|
}
|
|
2532
2570
|
});
|
|
@@ -2544,7 +2582,7 @@ function equals$1(existing, incoming) {
|
|
|
2544
2582
|
return false;
|
|
2545
2583
|
}
|
|
2546
2584
|
const equals_responseMessages_items = equalsArray(existing_responseMessages, incoming_responseMessages, (existing_responseMessages_item, incoming_responseMessages_item) => {
|
|
2547
|
-
if (!(equals$
|
|
2585
|
+
if (!(equals$6(existing_responseMessages_item, incoming_responseMessages_item))) {
|
|
2548
2586
|
return false;
|
|
2549
2587
|
}
|
|
2550
2588
|
});
|
|
@@ -2562,7 +2600,7 @@ function equals$1(existing, incoming) {
|
|
|
2562
2600
|
return false;
|
|
2563
2601
|
}
|
|
2564
2602
|
const equals_slotsMaskingInformation_items = equalsArray(existing_slotsMaskingInformation, incoming_slotsMaskingInformation, (existing_slotsMaskingInformation_item, incoming_slotsMaskingInformation_item) => {
|
|
2565
|
-
if (!(equals$
|
|
2603
|
+
if (!(equals$5(existing_slotsMaskingInformation_item, incoming_slotsMaskingInformation_item))) {
|
|
2566
2604
|
return false;
|
|
2567
2605
|
}
|
|
2568
2606
|
});
|
|
@@ -2572,41 +2610,41 @@ function equals$1(existing, incoming) {
|
|
|
2572
2610
|
}
|
|
2573
2611
|
return true;
|
|
2574
2612
|
}
|
|
2575
|
-
const ingest$
|
|
2613
|
+
const ingest$2 = function EinsteinPromptTemplateGenerationsRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
2576
2614
|
if (process.env.NODE_ENV !== 'production') {
|
|
2577
|
-
const validateError = validate$
|
|
2615
|
+
const validateError = validate$6(input);
|
|
2578
2616
|
if (validateError !== null) {
|
|
2579
2617
|
throw validateError;
|
|
2580
2618
|
}
|
|
2581
2619
|
}
|
|
2582
2620
|
const key = keyBuilderFromType(luvio, input);
|
|
2583
|
-
const ttlToUse = TTL$
|
|
2584
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$
|
|
2621
|
+
const ttlToUse = TTL$2;
|
|
2622
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$2, "EinsteinLLM", VERSION$4, RepresentationType$2, equals$4);
|
|
2585
2623
|
return createLink(key);
|
|
2586
2624
|
};
|
|
2587
|
-
function getTypeCacheKeys$
|
|
2625
|
+
function getTypeCacheKeys$2(rootKeySet, luvio, input, fullPathFactory) {
|
|
2588
2626
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
2589
2627
|
const rootKey = keyBuilderFromType(luvio, input);
|
|
2590
2628
|
rootKeySet.set(rootKey, {
|
|
2591
2629
|
namespace: keyPrefix,
|
|
2592
|
-
representationName: RepresentationType$
|
|
2630
|
+
representationName: RepresentationType$2,
|
|
2593
2631
|
mergeable: false
|
|
2594
2632
|
});
|
|
2595
2633
|
}
|
|
2596
2634
|
|
|
2597
|
-
function select$
|
|
2598
|
-
return select$
|
|
2635
|
+
function select$6(luvio, params) {
|
|
2636
|
+
return select$7();
|
|
2599
2637
|
}
|
|
2600
|
-
function getResponseCacheKeys$
|
|
2601
|
-
getTypeCacheKeys$
|
|
2638
|
+
function getResponseCacheKeys$2(storeKeyMap, luvio, resourceParams, response) {
|
|
2639
|
+
getTypeCacheKeys$2(storeKeyMap, luvio, response);
|
|
2602
2640
|
}
|
|
2603
|
-
function ingestSuccess$
|
|
2641
|
+
function ingestSuccess$2(luvio, resourceParams, response) {
|
|
2604
2642
|
const { body } = response;
|
|
2605
2643
|
const key = keyBuilderFromType(luvio, body);
|
|
2606
|
-
luvio.storeIngest(key, ingest$
|
|
2644
|
+
luvio.storeIngest(key, ingest$2, body);
|
|
2607
2645
|
const snapshot = luvio.storeLookup({
|
|
2608
2646
|
recordId: key,
|
|
2609
|
-
node: select$
|
|
2647
|
+
node: select$6(),
|
|
2610
2648
|
variables: {},
|
|
2611
2649
|
});
|
|
2612
2650
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -2617,7 +2655,7 @@ function ingestSuccess$1(luvio, resourceParams, response) {
|
|
|
2617
2655
|
deepFreeze(snapshot.data);
|
|
2618
2656
|
return snapshot;
|
|
2619
2657
|
}
|
|
2620
|
-
function createResourceRequest$
|
|
2658
|
+
function createResourceRequest$2(config) {
|
|
2621
2659
|
const headers = {};
|
|
2622
2660
|
return {
|
|
2623
2661
|
baseUri: '/services/data/v63.0',
|
|
@@ -2631,48 +2669,48 @@ function createResourceRequest$1(config) {
|
|
|
2631
2669
|
};
|
|
2632
2670
|
}
|
|
2633
2671
|
|
|
2634
|
-
const adapterName$
|
|
2672
|
+
const adapterName$2 = 'createGenerationsForPromptTemplate';
|
|
2635
2673
|
const createGenerationsForPromptTemplate_ConfigPropertyMetadata = [
|
|
2636
2674
|
generateParamConfigMetadata('promptTemplateDevName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
2637
2675
|
generateParamConfigMetadata('versionId', false, 1 /* QueryParameter */, 0 /* String */),
|
|
2638
2676
|
generateParamConfigMetadata('promptTemplateGenerationsInput', true, 2 /* Body */, 4 /* Unsupported */),
|
|
2639
2677
|
];
|
|
2640
|
-
const createGenerationsForPromptTemplate_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$
|
|
2641
|
-
const createResourceParams$
|
|
2642
|
-
function typeCheckConfig$
|
|
2678
|
+
const createGenerationsForPromptTemplate_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$2, createGenerationsForPromptTemplate_ConfigPropertyMetadata);
|
|
2679
|
+
const createResourceParams$2 = /*#__PURE__*/ createResourceParams$6(createGenerationsForPromptTemplate_ConfigPropertyMetadata);
|
|
2680
|
+
function typeCheckConfig$2(untrustedConfig) {
|
|
2643
2681
|
const config = {};
|
|
2644
|
-
typeCheckConfig$
|
|
2682
|
+
typeCheckConfig$6(untrustedConfig, config, createGenerationsForPromptTemplate_ConfigPropertyMetadata);
|
|
2645
2683
|
const untrustedConfig_promptTemplateGenerationsInput = untrustedConfig.promptTemplateGenerationsInput;
|
|
2646
|
-
const referenceEinsteinPromptTemplateGenerationsInputRepresentationValidationError = validate$
|
|
2684
|
+
const referenceEinsteinPromptTemplateGenerationsInputRepresentationValidationError = validate$b(untrustedConfig_promptTemplateGenerationsInput);
|
|
2647
2685
|
if (referenceEinsteinPromptTemplateGenerationsInputRepresentationValidationError === null) {
|
|
2648
2686
|
config.promptTemplateGenerationsInput = untrustedConfig_promptTemplateGenerationsInput;
|
|
2649
2687
|
}
|
|
2650
2688
|
return config;
|
|
2651
2689
|
}
|
|
2652
|
-
function validateAdapterConfig$
|
|
2690
|
+
function validateAdapterConfig$2(untrustedConfig, configPropertyNames) {
|
|
2653
2691
|
if (!untrustedIsObject(untrustedConfig)) {
|
|
2654
2692
|
return null;
|
|
2655
2693
|
}
|
|
2656
2694
|
if (process.env.NODE_ENV !== 'production') {
|
|
2657
2695
|
validateConfig(untrustedConfig, configPropertyNames);
|
|
2658
2696
|
}
|
|
2659
|
-
const config = typeCheckConfig$
|
|
2697
|
+
const config = typeCheckConfig$2(untrustedConfig);
|
|
2660
2698
|
if (!areRequiredParametersPresent(config, configPropertyNames)) {
|
|
2661
2699
|
return null;
|
|
2662
2700
|
}
|
|
2663
2701
|
return config;
|
|
2664
2702
|
}
|
|
2665
|
-
function buildNetworkSnapshot$
|
|
2666
|
-
const resourceParams = createResourceParams$
|
|
2667
|
-
const request = createResourceRequest$
|
|
2703
|
+
function buildNetworkSnapshot$2(luvio, config, options) {
|
|
2704
|
+
const resourceParams = createResourceParams$2(config);
|
|
2705
|
+
const request = createResourceRequest$2(resourceParams);
|
|
2668
2706
|
return luvio.dispatchResourceRequest(request, options)
|
|
2669
2707
|
.then((response) => {
|
|
2670
2708
|
return luvio.handleSuccessResponse(() => {
|
|
2671
|
-
const snapshot = ingestSuccess$
|
|
2709
|
+
const snapshot = ingestSuccess$2(luvio, resourceParams, response);
|
|
2672
2710
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
2673
2711
|
}, () => {
|
|
2674
2712
|
const cache = new StoreKeyMap();
|
|
2675
|
-
getResponseCacheKeys$
|
|
2713
|
+
getResponseCacheKeys$2(cache, luvio, resourceParams, response.body);
|
|
2676
2714
|
return cache;
|
|
2677
2715
|
});
|
|
2678
2716
|
}, (response) => {
|
|
@@ -2682,15 +2720,409 @@ function buildNetworkSnapshot$1(luvio, config, options) {
|
|
|
2682
2720
|
}
|
|
2683
2721
|
const createGenerationsForPromptTemplateAdapterFactory = (luvio) => {
|
|
2684
2722
|
return function createGenerationsForPromptTemplate(untrustedConfig) {
|
|
2685
|
-
const config = validateAdapterConfig$
|
|
2723
|
+
const config = validateAdapterConfig$2(untrustedConfig, createGenerationsForPromptTemplate_ConfigPropertyNames);
|
|
2686
2724
|
// Invalid or incomplete config
|
|
2687
2725
|
if (config === null) {
|
|
2688
2726
|
throw new Error('Invalid config for "createGenerationsForPromptTemplate"');
|
|
2689
2727
|
}
|
|
2690
|
-
return buildNetworkSnapshot$
|
|
2728
|
+
return buildNetworkSnapshot$2(luvio, config);
|
|
2691
2729
|
};
|
|
2692
2730
|
};
|
|
2693
2731
|
|
|
2732
|
+
const VERSION$3 = "b513bbac1672327d8eaaf120660e94b5";
|
|
2733
|
+
function validate$5(obj, path = 'EinsteinPromptTemplateSupportedLanguageErrorRepresentation') {
|
|
2734
|
+
const v_error = (() => {
|
|
2735
|
+
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2736
|
+
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
2737
|
+
}
|
|
2738
|
+
const obj_errorMessage = obj.errorMessage;
|
|
2739
|
+
const path_errorMessage = path + '.errorMessage';
|
|
2740
|
+
if (typeof obj_errorMessage !== 'string') {
|
|
2741
|
+
return new TypeError('Expected "string" but received "' + typeof obj_errorMessage + '" (at "' + path_errorMessage + '")');
|
|
2742
|
+
}
|
|
2743
|
+
const obj_messageCode = obj.messageCode;
|
|
2744
|
+
const path_messageCode = path + '.messageCode';
|
|
2745
|
+
if (typeof obj_messageCode !== 'string') {
|
|
2746
|
+
return new TypeError('Expected "string" but received "' + typeof obj_messageCode + '" (at "' + path_messageCode + '")');
|
|
2747
|
+
}
|
|
2748
|
+
})();
|
|
2749
|
+
return v_error === undefined ? null : v_error;
|
|
2750
|
+
}
|
|
2751
|
+
const select$5 = function EinsteinPromptTemplateSupportedLanguageErrorRepresentationSelect() {
|
|
2752
|
+
return {
|
|
2753
|
+
kind: 'Fragment',
|
|
2754
|
+
version: VERSION$3,
|
|
2755
|
+
private: [],
|
|
2756
|
+
selections: [
|
|
2757
|
+
{
|
|
2758
|
+
name: 'errorMessage',
|
|
2759
|
+
kind: 'Scalar'
|
|
2760
|
+
},
|
|
2761
|
+
{
|
|
2762
|
+
name: 'messageCode',
|
|
2763
|
+
kind: 'Scalar'
|
|
2764
|
+
}
|
|
2765
|
+
]
|
|
2766
|
+
};
|
|
2767
|
+
};
|
|
2768
|
+
function equals$3(existing, incoming) {
|
|
2769
|
+
const existing_errorMessage = existing.errorMessage;
|
|
2770
|
+
const incoming_errorMessage = incoming.errorMessage;
|
|
2771
|
+
if (!(existing_errorMessage === incoming_errorMessage)) {
|
|
2772
|
+
return false;
|
|
2773
|
+
}
|
|
2774
|
+
const existing_messageCode = existing.messageCode;
|
|
2775
|
+
const incoming_messageCode = incoming.messageCode;
|
|
2776
|
+
if (!(existing_messageCode === incoming_messageCode)) {
|
|
2777
|
+
return false;
|
|
2778
|
+
}
|
|
2779
|
+
return true;
|
|
2780
|
+
}
|
|
2781
|
+
|
|
2782
|
+
const VERSION$2 = "65a17d345c28eeca91872a73d8ffe9fd";
|
|
2783
|
+
function validate$4(obj, path = 'EinsteinPromptTemplateSupportedLanguageRepresentation') {
|
|
2784
|
+
const v_error = (() => {
|
|
2785
|
+
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2786
|
+
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
2787
|
+
}
|
|
2788
|
+
const obj_languageCode = obj.languageCode;
|
|
2789
|
+
const path_languageCode = path + '.languageCode';
|
|
2790
|
+
if (typeof obj_languageCode !== 'string') {
|
|
2791
|
+
return new TypeError('Expected "string" but received "' + typeof obj_languageCode + '" (at "' + path_languageCode + '")');
|
|
2792
|
+
}
|
|
2793
|
+
const obj_languageDisplayName = obj.languageDisplayName;
|
|
2794
|
+
const path_languageDisplayName = path + '.languageDisplayName';
|
|
2795
|
+
if (typeof obj_languageDisplayName !== 'string') {
|
|
2796
|
+
return new TypeError('Expected "string" but received "' + typeof obj_languageDisplayName + '" (at "' + path_languageDisplayName + '")');
|
|
2797
|
+
}
|
|
2798
|
+
})();
|
|
2799
|
+
return v_error === undefined ? null : v_error;
|
|
2800
|
+
}
|
|
2801
|
+
const select$4 = function EinsteinPromptTemplateSupportedLanguageRepresentationSelect() {
|
|
2802
|
+
return {
|
|
2803
|
+
kind: 'Fragment',
|
|
2804
|
+
version: VERSION$2,
|
|
2805
|
+
private: [],
|
|
2806
|
+
selections: [
|
|
2807
|
+
{
|
|
2808
|
+
name: 'languageCode',
|
|
2809
|
+
kind: 'Scalar'
|
|
2810
|
+
},
|
|
2811
|
+
{
|
|
2812
|
+
name: 'languageDisplayName',
|
|
2813
|
+
kind: 'Scalar'
|
|
2814
|
+
}
|
|
2815
|
+
]
|
|
2816
|
+
};
|
|
2817
|
+
};
|
|
2818
|
+
function equals$2(existing, incoming) {
|
|
2819
|
+
const existing_languageCode = existing.languageCode;
|
|
2820
|
+
const incoming_languageCode = incoming.languageCode;
|
|
2821
|
+
if (!(existing_languageCode === incoming_languageCode)) {
|
|
2822
|
+
return false;
|
|
2823
|
+
}
|
|
2824
|
+
const existing_languageDisplayName = existing.languageDisplayName;
|
|
2825
|
+
const incoming_languageDisplayName = incoming.languageDisplayName;
|
|
2826
|
+
if (!(existing_languageDisplayName === incoming_languageDisplayName)) {
|
|
2827
|
+
return false;
|
|
2828
|
+
}
|
|
2829
|
+
return true;
|
|
2830
|
+
}
|
|
2831
|
+
|
|
2832
|
+
const TTL$1 = 100;
|
|
2833
|
+
const VERSION$1 = "c635f260bce9a11f7c3bf31d60f42b53";
|
|
2834
|
+
function validate$3(obj, path = 'EinsteinPromptTemplateVersionOutputLanguagesRepresentation') {
|
|
2835
|
+
const v_error = (() => {
|
|
2836
|
+
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2837
|
+
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
2838
|
+
}
|
|
2839
|
+
const obj_errors = obj.errors;
|
|
2840
|
+
const path_errors = path + '.errors';
|
|
2841
|
+
if (!ArrayIsArray(obj_errors)) {
|
|
2842
|
+
return new TypeError('Expected "array" but received "' + typeof obj_errors + '" (at "' + path_errors + '")');
|
|
2843
|
+
}
|
|
2844
|
+
for (let i = 0; i < obj_errors.length; i++) {
|
|
2845
|
+
const obj_errors_item = obj_errors[i];
|
|
2846
|
+
const path_errors_item = path_errors + '[' + i + ']';
|
|
2847
|
+
const referencepath_errors_itemValidationError = validate$5(obj_errors_item, path_errors_item);
|
|
2848
|
+
if (referencepath_errors_itemValidationError !== null) {
|
|
2849
|
+
let message = 'Object doesn\'t match EinsteinPromptTemplateSupportedLanguageErrorRepresentation (at "' + path_errors_item + '")\n';
|
|
2850
|
+
message += referencepath_errors_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
2851
|
+
return new TypeError(message);
|
|
2852
|
+
}
|
|
2853
|
+
}
|
|
2854
|
+
const obj_isSuccess = obj.isSuccess;
|
|
2855
|
+
const path_isSuccess = path + '.isSuccess';
|
|
2856
|
+
if (typeof obj_isSuccess !== 'boolean') {
|
|
2857
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isSuccess + '" (at "' + path_isSuccess + '")');
|
|
2858
|
+
}
|
|
2859
|
+
const obj_promptTemplateDevName = obj.promptTemplateDevName;
|
|
2860
|
+
const path_promptTemplateDevName = path + '.promptTemplateDevName';
|
|
2861
|
+
if (typeof obj_promptTemplateDevName !== 'string') {
|
|
2862
|
+
return new TypeError('Expected "string" but received "' + typeof obj_promptTemplateDevName + '" (at "' + path_promptTemplateDevName + '")');
|
|
2863
|
+
}
|
|
2864
|
+
const obj_supportedLanguages = obj.supportedLanguages;
|
|
2865
|
+
const path_supportedLanguages = path + '.supportedLanguages';
|
|
2866
|
+
if (!ArrayIsArray(obj_supportedLanguages)) {
|
|
2867
|
+
return new TypeError('Expected "array" but received "' + typeof obj_supportedLanguages + '" (at "' + path_supportedLanguages + '")');
|
|
2868
|
+
}
|
|
2869
|
+
for (let i = 0; i < obj_supportedLanguages.length; i++) {
|
|
2870
|
+
const obj_supportedLanguages_item = obj_supportedLanguages[i];
|
|
2871
|
+
const path_supportedLanguages_item = path_supportedLanguages + '[' + i + ']';
|
|
2872
|
+
const referencepath_supportedLanguages_itemValidationError = validate$4(obj_supportedLanguages_item, path_supportedLanguages_item);
|
|
2873
|
+
if (referencepath_supportedLanguages_itemValidationError !== null) {
|
|
2874
|
+
let message = 'Object doesn\'t match EinsteinPromptTemplateSupportedLanguageRepresentation (at "' + path_supportedLanguages_item + '")\n';
|
|
2875
|
+
message += referencepath_supportedLanguages_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
2876
|
+
return new TypeError(message);
|
|
2877
|
+
}
|
|
2878
|
+
}
|
|
2879
|
+
const obj_versionId = obj.versionId;
|
|
2880
|
+
const path_versionId = path + '.versionId';
|
|
2881
|
+
if (typeof obj_versionId !== 'string') {
|
|
2882
|
+
return new TypeError('Expected "string" but received "' + typeof obj_versionId + '" (at "' + path_versionId + '")');
|
|
2883
|
+
}
|
|
2884
|
+
})();
|
|
2885
|
+
return v_error === undefined ? null : v_error;
|
|
2886
|
+
}
|
|
2887
|
+
const RepresentationType$1 = 'EinsteinPromptTemplateVersionOutputLanguagesRepresentation';
|
|
2888
|
+
function normalize$1(input, existing, path, luvio, store, timestamp) {
|
|
2889
|
+
return input;
|
|
2890
|
+
}
|
|
2891
|
+
const select$3 = function EinsteinPromptTemplateVersionOutputLanguagesRepresentationSelect() {
|
|
2892
|
+
const { selections: EinsteinPromptTemplateSupportedLanguageErrorRepresentation__selections, opaque: EinsteinPromptTemplateSupportedLanguageErrorRepresentation__opaque, } = select$5();
|
|
2893
|
+
const { selections: EinsteinPromptTemplateSupportedLanguageRepresentation__selections, opaque: EinsteinPromptTemplateSupportedLanguageRepresentation__opaque, } = select$4();
|
|
2894
|
+
return {
|
|
2895
|
+
kind: 'Fragment',
|
|
2896
|
+
version: VERSION$1,
|
|
2897
|
+
private: [],
|
|
2898
|
+
selections: [
|
|
2899
|
+
{
|
|
2900
|
+
name: 'errors',
|
|
2901
|
+
kind: 'Object',
|
|
2902
|
+
plural: true,
|
|
2903
|
+
selections: EinsteinPromptTemplateSupportedLanguageErrorRepresentation__selections
|
|
2904
|
+
},
|
|
2905
|
+
{
|
|
2906
|
+
name: 'isSuccess',
|
|
2907
|
+
kind: 'Scalar'
|
|
2908
|
+
},
|
|
2909
|
+
{
|
|
2910
|
+
name: 'promptTemplateDevName',
|
|
2911
|
+
kind: 'Scalar'
|
|
2912
|
+
},
|
|
2913
|
+
{
|
|
2914
|
+
name: 'supportedLanguages',
|
|
2915
|
+
kind: 'Object',
|
|
2916
|
+
plural: true,
|
|
2917
|
+
selections: EinsteinPromptTemplateSupportedLanguageRepresentation__selections
|
|
2918
|
+
},
|
|
2919
|
+
{
|
|
2920
|
+
name: 'versionId',
|
|
2921
|
+
kind: 'Scalar'
|
|
2922
|
+
}
|
|
2923
|
+
]
|
|
2924
|
+
};
|
|
2925
|
+
};
|
|
2926
|
+
function equals$1(existing, incoming) {
|
|
2927
|
+
const existing_isSuccess = existing.isSuccess;
|
|
2928
|
+
const incoming_isSuccess = incoming.isSuccess;
|
|
2929
|
+
if (!(existing_isSuccess === incoming_isSuccess)) {
|
|
2930
|
+
return false;
|
|
2931
|
+
}
|
|
2932
|
+
const existing_promptTemplateDevName = existing.promptTemplateDevName;
|
|
2933
|
+
const incoming_promptTemplateDevName = incoming.promptTemplateDevName;
|
|
2934
|
+
if (!(existing_promptTemplateDevName === incoming_promptTemplateDevName)) {
|
|
2935
|
+
return false;
|
|
2936
|
+
}
|
|
2937
|
+
const existing_versionId = existing.versionId;
|
|
2938
|
+
const incoming_versionId = incoming.versionId;
|
|
2939
|
+
if (!(existing_versionId === incoming_versionId)) {
|
|
2940
|
+
return false;
|
|
2941
|
+
}
|
|
2942
|
+
const existing_errors = existing.errors;
|
|
2943
|
+
const incoming_errors = incoming.errors;
|
|
2944
|
+
const equals_errors_items = equalsArray(existing_errors, incoming_errors, (existing_errors_item, incoming_errors_item) => {
|
|
2945
|
+
if (!(equals$3(existing_errors_item, incoming_errors_item))) {
|
|
2946
|
+
return false;
|
|
2947
|
+
}
|
|
2948
|
+
});
|
|
2949
|
+
if (equals_errors_items === false) {
|
|
2950
|
+
return false;
|
|
2951
|
+
}
|
|
2952
|
+
const existing_supportedLanguages = existing.supportedLanguages;
|
|
2953
|
+
const incoming_supportedLanguages = incoming.supportedLanguages;
|
|
2954
|
+
const equals_supportedLanguages_items = equalsArray(existing_supportedLanguages, incoming_supportedLanguages, (existing_supportedLanguages_item, incoming_supportedLanguages_item) => {
|
|
2955
|
+
if (!(equals$2(existing_supportedLanguages_item, incoming_supportedLanguages_item))) {
|
|
2956
|
+
return false;
|
|
2957
|
+
}
|
|
2958
|
+
});
|
|
2959
|
+
if (equals_supportedLanguages_items === false) {
|
|
2960
|
+
return false;
|
|
2961
|
+
}
|
|
2962
|
+
return true;
|
|
2963
|
+
}
|
|
2964
|
+
const ingest$1 = function EinsteinPromptTemplateVersionOutputLanguagesRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
2965
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
2966
|
+
const validateError = validate$3(input);
|
|
2967
|
+
if (validateError !== null) {
|
|
2968
|
+
throw validateError;
|
|
2969
|
+
}
|
|
2970
|
+
}
|
|
2971
|
+
const key = path.fullPath;
|
|
2972
|
+
const ttlToUse = TTL$1;
|
|
2973
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$1, "EinsteinLLM", VERSION$1, RepresentationType$1, equals$1);
|
|
2974
|
+
return createLink(key);
|
|
2975
|
+
};
|
|
2976
|
+
function getTypeCacheKeys$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
2977
|
+
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
2978
|
+
const rootKey = fullPathFactory();
|
|
2979
|
+
rootKeySet.set(rootKey, {
|
|
2980
|
+
namespace: keyPrefix,
|
|
2981
|
+
representationName: RepresentationType$1,
|
|
2982
|
+
mergeable: false
|
|
2983
|
+
});
|
|
2984
|
+
}
|
|
2985
|
+
|
|
2986
|
+
function select$2(luvio, params) {
|
|
2987
|
+
return select$3();
|
|
2988
|
+
}
|
|
2989
|
+
function keyBuilder$3(luvio, params) {
|
|
2990
|
+
return keyPrefix + '::EinsteinPromptTemplateVersionOutputLanguagesRepresentation:(' + 'useStandardVersion:' + params.queryParams.useStandardVersion + ',' + 'versionId:' + params.queryParams.versionId + ',' + 'promptTemplateDevName:' + params.urlParams.promptTemplateDevName + ')';
|
|
2991
|
+
}
|
|
2992
|
+
function getResponseCacheKeys$1(storeKeyMap, luvio, resourceParams, response) {
|
|
2993
|
+
getTypeCacheKeys$1(storeKeyMap, luvio, response, () => keyBuilder$3(luvio, resourceParams));
|
|
2994
|
+
}
|
|
2995
|
+
function ingestSuccess$1(luvio, resourceParams, response, snapshotRefresh) {
|
|
2996
|
+
const { body } = response;
|
|
2997
|
+
const key = keyBuilder$3(luvio, resourceParams);
|
|
2998
|
+
luvio.storeIngest(key, ingest$1, body);
|
|
2999
|
+
const snapshot = luvio.storeLookup({
|
|
3000
|
+
recordId: key,
|
|
3001
|
+
node: select$2(),
|
|
3002
|
+
variables: {},
|
|
3003
|
+
}, snapshotRefresh);
|
|
3004
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
3005
|
+
if (snapshot.state !== 'Fulfilled') {
|
|
3006
|
+
throw new Error('Invalid network response. Expected resource response to result in Fulfilled snapshot');
|
|
3007
|
+
}
|
|
3008
|
+
}
|
|
3009
|
+
deepFreeze(snapshot.data);
|
|
3010
|
+
return snapshot;
|
|
3011
|
+
}
|
|
3012
|
+
function ingestError$1(luvio, params, error, snapshotRefresh) {
|
|
3013
|
+
const key = keyBuilder$3(luvio, params);
|
|
3014
|
+
const errorSnapshot = luvio.errorSnapshot(error, snapshotRefresh);
|
|
3015
|
+
const storeMetadataParams = {
|
|
3016
|
+
ttl: TTL$1,
|
|
3017
|
+
namespace: keyPrefix,
|
|
3018
|
+
version: VERSION$1,
|
|
3019
|
+
representationName: RepresentationType$1
|
|
3020
|
+
};
|
|
3021
|
+
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
3022
|
+
return errorSnapshot;
|
|
3023
|
+
}
|
|
3024
|
+
function createResourceRequest$1(config) {
|
|
3025
|
+
const headers = {};
|
|
3026
|
+
return {
|
|
3027
|
+
baseUri: '/services/data/v63.0',
|
|
3028
|
+
basePath: '/einstein/prompt-template/' + config.urlParams.promptTemplateDevName + '/output-languages',
|
|
3029
|
+
method: 'get',
|
|
3030
|
+
body: null,
|
|
3031
|
+
urlParams: config.urlParams,
|
|
3032
|
+
queryParams: config.queryParams,
|
|
3033
|
+
headers,
|
|
3034
|
+
priority: 'normal',
|
|
3035
|
+
};
|
|
3036
|
+
}
|
|
3037
|
+
|
|
3038
|
+
const adapterName$1 = 'getOutputLanguages';
|
|
3039
|
+
const getOutputLanguages_ConfigPropertyMetadata = [
|
|
3040
|
+
generateParamConfigMetadata('promptTemplateDevName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
3041
|
+
generateParamConfigMetadata('useStandardVersion', false, 1 /* QueryParameter */, 1 /* Boolean */),
|
|
3042
|
+
generateParamConfigMetadata('versionId', false, 1 /* QueryParameter */, 0 /* String */),
|
|
3043
|
+
];
|
|
3044
|
+
const getOutputLanguages_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$1, getOutputLanguages_ConfigPropertyMetadata);
|
|
3045
|
+
const createResourceParams$1 = /*#__PURE__*/ createResourceParams$6(getOutputLanguages_ConfigPropertyMetadata);
|
|
3046
|
+
function keyBuilder$2(luvio, config) {
|
|
3047
|
+
const resourceParams = createResourceParams$1(config);
|
|
3048
|
+
return keyBuilder$3(luvio, resourceParams);
|
|
3049
|
+
}
|
|
3050
|
+
function typeCheckConfig$1(untrustedConfig) {
|
|
3051
|
+
const config = {};
|
|
3052
|
+
typeCheckConfig$6(untrustedConfig, config, getOutputLanguages_ConfigPropertyMetadata);
|
|
3053
|
+
return config;
|
|
3054
|
+
}
|
|
3055
|
+
function validateAdapterConfig$1(untrustedConfig, configPropertyNames) {
|
|
3056
|
+
if (!untrustedIsObject(untrustedConfig)) {
|
|
3057
|
+
return null;
|
|
3058
|
+
}
|
|
3059
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
3060
|
+
validateConfig(untrustedConfig, configPropertyNames);
|
|
3061
|
+
}
|
|
3062
|
+
const config = typeCheckConfig$1(untrustedConfig);
|
|
3063
|
+
if (!areRequiredParametersPresent(config, configPropertyNames)) {
|
|
3064
|
+
return null;
|
|
3065
|
+
}
|
|
3066
|
+
return config;
|
|
3067
|
+
}
|
|
3068
|
+
function adapterFragment$1(luvio, config) {
|
|
3069
|
+
createResourceParams$1(config);
|
|
3070
|
+
return select$2();
|
|
3071
|
+
}
|
|
3072
|
+
function onFetchResponseSuccess$1(luvio, config, resourceParams, response) {
|
|
3073
|
+
const snapshot = ingestSuccess$1(luvio, resourceParams, response, {
|
|
3074
|
+
config,
|
|
3075
|
+
resolve: () => buildNetworkSnapshot$1(luvio, config, snapshotRefreshOptions)
|
|
3076
|
+
});
|
|
3077
|
+
return luvio.storeBroadcast().then(() => snapshot);
|
|
3078
|
+
}
|
|
3079
|
+
function onFetchResponseError$1(luvio, config, resourceParams, response) {
|
|
3080
|
+
const snapshot = ingestError$1(luvio, resourceParams, response, {
|
|
3081
|
+
config,
|
|
3082
|
+
resolve: () => buildNetworkSnapshot$1(luvio, config, snapshotRefreshOptions)
|
|
3083
|
+
});
|
|
3084
|
+
return luvio.storeBroadcast().then(() => snapshot);
|
|
3085
|
+
}
|
|
3086
|
+
function buildNetworkSnapshot$1(luvio, config, options) {
|
|
3087
|
+
const resourceParams = createResourceParams$1(config);
|
|
3088
|
+
const request = createResourceRequest$1(resourceParams);
|
|
3089
|
+
return luvio.dispatchResourceRequest(request, options)
|
|
3090
|
+
.then((response) => {
|
|
3091
|
+
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$1(luvio, config, resourceParams, response), () => {
|
|
3092
|
+
const cache = new StoreKeyMap();
|
|
3093
|
+
getResponseCacheKeys$1(cache, luvio, resourceParams, response.body);
|
|
3094
|
+
return cache;
|
|
3095
|
+
});
|
|
3096
|
+
}, (response) => {
|
|
3097
|
+
return luvio.handleErrorResponse(() => onFetchResponseError$1(luvio, config, resourceParams, response));
|
|
3098
|
+
});
|
|
3099
|
+
}
|
|
3100
|
+
function buildNetworkSnapshotCachePolicy$1(context, coercedAdapterRequestContext) {
|
|
3101
|
+
return buildNetworkSnapshotCachePolicy$3(context, coercedAdapterRequestContext, buildNetworkSnapshot$1, undefined, false);
|
|
3102
|
+
}
|
|
3103
|
+
function buildCachedSnapshotCachePolicy$1(context, storeLookup) {
|
|
3104
|
+
const { luvio, config } = context;
|
|
3105
|
+
const selector = {
|
|
3106
|
+
recordId: keyBuilder$2(luvio, config),
|
|
3107
|
+
node: adapterFragment$1(luvio, config),
|
|
3108
|
+
variables: {},
|
|
3109
|
+
};
|
|
3110
|
+
const cacheSnapshot = storeLookup(selector, {
|
|
3111
|
+
config,
|
|
3112
|
+
resolve: () => buildNetworkSnapshot$1(luvio, config, snapshotRefreshOptions)
|
|
3113
|
+
});
|
|
3114
|
+
return cacheSnapshot;
|
|
3115
|
+
}
|
|
3116
|
+
const getOutputLanguagesAdapterFactory = (luvio) => function EinsteinLLM__getOutputLanguages(untrustedConfig, requestContext) {
|
|
3117
|
+
const config = validateAdapterConfig$1(untrustedConfig, getOutputLanguages_ConfigPropertyNames);
|
|
3118
|
+
// Invalid or incomplete config
|
|
3119
|
+
if (config === null) {
|
|
3120
|
+
return null;
|
|
3121
|
+
}
|
|
3122
|
+
return luvio.applyCachePolicy((requestContext || {}), { config, luvio }, // BuildSnapshotContext
|
|
3123
|
+
buildCachedSnapshotCachePolicy$1, buildNetworkSnapshotCachePolicy$1);
|
|
3124
|
+
};
|
|
3125
|
+
|
|
2694
3126
|
function validate$2(obj, path = 'EinsteinPromptRecordFieldRepresentation') {
|
|
2695
3127
|
const v_error = (() => {
|
|
2696
3128
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -2953,14 +3385,14 @@ const getPromptTemplates_ConfigPropertyMetadata = [
|
|
|
2953
3385
|
generateParamConfigMetadata('sortBy', false, 1 /* QueryParameter */, 0 /* String */),
|
|
2954
3386
|
];
|
|
2955
3387
|
const getPromptTemplates_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName, getPromptTemplates_ConfigPropertyMetadata);
|
|
2956
|
-
const createResourceParams = /*#__PURE__*/ createResourceParams$
|
|
3388
|
+
const createResourceParams = /*#__PURE__*/ createResourceParams$6(getPromptTemplates_ConfigPropertyMetadata);
|
|
2957
3389
|
function keyBuilder(luvio, config) {
|
|
2958
3390
|
const resourceParams = createResourceParams(config);
|
|
2959
3391
|
return keyBuilder$1(luvio, resourceParams);
|
|
2960
3392
|
}
|
|
2961
3393
|
function typeCheckConfig(untrustedConfig) {
|
|
2962
3394
|
const config = {};
|
|
2963
|
-
typeCheckConfig$
|
|
3395
|
+
typeCheckConfig$6(untrustedConfig, config, getPromptTemplates_ConfigPropertyMetadata);
|
|
2964
3396
|
return config;
|
|
2965
3397
|
}
|
|
2966
3398
|
function validateAdapterConfig(untrustedConfig, configPropertyNames) {
|
|
@@ -3009,7 +3441,7 @@ function buildNetworkSnapshot(luvio, config, options) {
|
|
|
3009
3441
|
});
|
|
3010
3442
|
}
|
|
3011
3443
|
function buildNetworkSnapshotCachePolicy(context, coercedAdapterRequestContext) {
|
|
3012
|
-
return buildNetworkSnapshotCachePolicy$
|
|
3444
|
+
return buildNetworkSnapshotCachePolicy$3(context, coercedAdapterRequestContext, buildNetworkSnapshot, undefined, false);
|
|
3013
3445
|
}
|
|
3014
3446
|
function buildCachedSnapshotCachePolicy(context, storeLookup) {
|
|
3015
3447
|
const { luvio, config } = context;
|
|
@@ -3038,12 +3470,19 @@ let createEmbeddings;
|
|
|
3038
3470
|
let createFeedback;
|
|
3039
3471
|
let createGenerations;
|
|
3040
3472
|
let createGenerationsForPromptTemplate;
|
|
3473
|
+
let getOutputLanguages;
|
|
3041
3474
|
let getPromptTemplates;
|
|
3042
3475
|
// Imperative GET Adapters
|
|
3043
3476
|
let createEmbeddings_imperative;
|
|
3477
|
+
let getOutputLanguages_imperative;
|
|
3044
3478
|
let getPromptTemplates_imperative;
|
|
3045
3479
|
// Adapter Metadata
|
|
3046
3480
|
const createEmbeddingsMetadata = { apiFamily: 'EinsteinLLM', name: 'createEmbeddings', ttl: 100 };
|
|
3481
|
+
const getOutputLanguagesMetadata = {
|
|
3482
|
+
apiFamily: 'EinsteinLLM',
|
|
3483
|
+
name: 'getOutputLanguages',
|
|
3484
|
+
ttl: 100,
|
|
3485
|
+
};
|
|
3047
3486
|
const getPromptTemplatesMetadata = {
|
|
3048
3487
|
apiFamily: 'EinsteinLLM',
|
|
3049
3488
|
name: 'getPromptTemplates',
|
|
@@ -3053,6 +3492,7 @@ const getPromptTemplatesMetadata = {
|
|
|
3053
3492
|
function bindExportsTo(luvio) {
|
|
3054
3493
|
// LDS Adapters
|
|
3055
3494
|
const createEmbeddings_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'createEmbeddings', createEmbeddingsAdapterFactory), createEmbeddingsMetadata);
|
|
3495
|
+
const getOutputLanguages_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getOutputLanguages', getOutputLanguagesAdapterFactory), getOutputLanguagesMetadata);
|
|
3056
3496
|
const getPromptTemplates_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getPromptTemplates', getPromptTemplatesAdapterFactory), getPromptTemplatesMetadata);
|
|
3057
3497
|
function unwrapSnapshotData(factory) {
|
|
3058
3498
|
const adapter = factory(luvio);
|
|
@@ -3063,9 +3503,11 @@ function bindExportsTo(luvio) {
|
|
|
3063
3503
|
createFeedback: unwrapSnapshotData(createFeedbackAdapterFactory),
|
|
3064
3504
|
createGenerations: unwrapSnapshotData(createGenerationsAdapterFactory),
|
|
3065
3505
|
createGenerationsForPromptTemplate: unwrapSnapshotData(createGenerationsForPromptTemplateAdapterFactory),
|
|
3506
|
+
getOutputLanguages: createWireAdapterConstructor(luvio, getOutputLanguages_ldsAdapter, getOutputLanguagesMetadata),
|
|
3066
3507
|
getPromptTemplates: createWireAdapterConstructor(luvio, getPromptTemplates_ldsAdapter, getPromptTemplatesMetadata),
|
|
3067
3508
|
// Imperative GET Adapters
|
|
3068
3509
|
createEmbeddings_imperative: createImperativeAdapter(luvio, createEmbeddings_ldsAdapter, createEmbeddingsMetadata),
|
|
3510
|
+
getOutputLanguages_imperative: createImperativeAdapter(luvio, getOutputLanguages_ldsAdapter, getOutputLanguagesMetadata),
|
|
3069
3511
|
getPromptTemplates_imperative: createImperativeAdapter(luvio, getPromptTemplates_ldsAdapter, getPromptTemplatesMetadata),
|
|
3070
3512
|
// Notify Update Availables
|
|
3071
3513
|
};
|
|
@@ -3076,11 +3518,13 @@ withDefaultLuvio((luvio) => {
|
|
|
3076
3518
|
createFeedback,
|
|
3077
3519
|
createGenerations,
|
|
3078
3520
|
createGenerationsForPromptTemplate,
|
|
3521
|
+
getOutputLanguages,
|
|
3079
3522
|
getPromptTemplates,
|
|
3080
3523
|
createEmbeddings_imperative,
|
|
3524
|
+
getOutputLanguages_imperative,
|
|
3081
3525
|
getPromptTemplates_imperative,
|
|
3082
3526
|
} = bindExportsTo(luvio));
|
|
3083
3527
|
});
|
|
3084
3528
|
|
|
3085
|
-
export { createEmbeddings, createEmbeddings_imperative, createFeedback, createGenerations, createGenerationsForPromptTemplate, getPromptTemplates, getPromptTemplates_imperative };
|
|
3086
|
-
// version: 1.
|
|
3529
|
+
export { createEmbeddings, createEmbeddings_imperative, createFeedback, createGenerations, createGenerationsForPromptTemplate, getOutputLanguages, getOutputLanguages_imperative, getPromptTemplates, getPromptTemplates_imperative };
|
|
3530
|
+
// version: 1.332.0-dev10-d8601dd102
|