@salesforce/lds-adapters-service-einsteinllm 1.287.0-dev1 → 1.287.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.
@@ -1,3 +1,3 @@
1
- export { createGenerationsAdapterFactory } from '../adapters/createGenerations';
2
1
  export { createFeedbackAdapterFactory } from '../adapters/createFeedback';
2
+ export { createGenerationsAdapterFactory } from '../adapters/createGenerations';
3
3
  export { createGenerationsForPromptTemplateAdapterFactory } from '../adapters/createGenerationsForPromptTemplate';
@@ -1,5 +1,7 @@
1
+ import { EinsteinLlmGenerationsContentQualityRepresentation as EinsteinLlmGenerationsContentQualityRepresentation_EinsteinLlmGenerationsContentQualityRepresentation } from './EinsteinLlmGenerationsContentQualityRepresentation';
2
+ import { EinsteinLlmGenerationsSafetyScoreRepresentation as EinsteinLlmGenerationsSafetyScoreRepresentation_EinsteinLlmGenerationsSafetyScoreRepresentation } from './EinsteinLlmGenerationsSafetyScoreRepresentation';
1
3
  import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
- export declare const VERSION = "9b45c0734fec120819b03e3b115caf64";
4
+ export declare const VERSION = "aebe0f32437ab18bd126a1fb5ff48d9b";
3
5
  export declare function validate(obj: any, path?: string): TypeError | null;
4
6
  export declare const RepresentationType: string;
5
7
  export declare function normalize(input: EinsteinLlmGenerationItemRepresentation, existing: EinsteinLlmGenerationItemRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): EinsteinLlmGenerationItemRepresentationNormalized;
@@ -14,10 +16,14 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
14
16
  * (none)
15
17
  */
16
18
  export interface EinsteinLlmGenerationItemRepresentationNormalized {
19
+ /** Generations Content Quality Representation */
20
+ contentQualityRepresentation?: EinsteinLlmGenerationsContentQualityRepresentation_EinsteinLlmGenerationsContentQualityRepresentation | null;
17
21
  /** Any provider specific attributes will be included as part of this object */
18
22
  parameters: string;
19
- /** Id of the generation response */
23
+ /** Generations Response Id */
20
24
  responseId: string;
25
+ /** Generations Safety Score Representation */
26
+ safetyScoreRepresentation?: EinsteinLlmGenerationsSafetyScoreRepresentation_EinsteinLlmGenerationsSafetyScoreRepresentation | null;
21
27
  /** Text */
22
28
  text: string;
23
29
  }
@@ -28,7 +34,9 @@ export interface EinsteinLlmGenerationItemRepresentationNormalized {
28
34
  * (none)
29
35
  */
30
36
  export interface EinsteinLlmGenerationItemRepresentation {
37
+ contentQualityRepresentation?: EinsteinLlmGenerationsContentQualityRepresentation_EinsteinLlmGenerationsContentQualityRepresentation | null;
31
38
  parameters: string;
32
39
  responseId: string;
40
+ safetyScoreRepresentation?: EinsteinLlmGenerationsSafetyScoreRepresentation_EinsteinLlmGenerationsSafetyScoreRepresentation | null;
33
41
  text: string;
34
42
  }
@@ -0,0 +1,28 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "9ebac74e6f964c363d5fd1913df363af";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: EinsteinLlmGenerationsContentQualityRepresentation, existing: EinsteinLlmGenerationsContentQualityRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): EinsteinLlmGenerationsContentQualityRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: EinsteinLlmGenerationsContentQualityRepresentationNormalized, incoming: EinsteinLlmGenerationsContentQualityRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: EinsteinLlmGenerationsContentQualityRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Output of a einstein llm generation content quality representation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface EinsteinLlmGenerationsContentQualityRepresentationNormalized {
17
+ /** Content Quality */
18
+ isToxicityDetected?: boolean | null;
19
+ }
20
+ /**
21
+ * Output of a einstein llm generation content quality representation
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface EinsteinLlmGenerationsContentQualityRepresentation {
27
+ isToxicityDetected?: boolean | null;
28
+ }
@@ -0,0 +1,46 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "77af44a252cb5b45b4d9a8101368d2aa";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: EinsteinLlmGenerationsSafetyScoreRepresentation, existing: EinsteinLlmGenerationsSafetyScoreRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): EinsteinLlmGenerationsSafetyScoreRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: EinsteinLlmGenerationsSafetyScoreRepresentationNormalized, incoming: EinsteinLlmGenerationsSafetyScoreRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: EinsteinLlmGenerationsSafetyScoreRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Output of a einstein llm generation safety score representation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface EinsteinLlmGenerationsSafetyScoreRepresentationNormalized {
17
+ /** Hate Score */
18
+ hateScore?: number | null;
19
+ /** Physical Score */
20
+ physicalScore?: number | null;
21
+ /** Profanity Score */
22
+ profanityScore?: number | null;
23
+ /** Safety Score */
24
+ safetyScore?: number | null;
25
+ /** Sexual Score */
26
+ sexualScore?: number | null;
27
+ /** Toxicity Score */
28
+ toxicityScore?: number | null;
29
+ /** Violence Score */
30
+ violenceScore?: number | null;
31
+ }
32
+ /**
33
+ * Output of a einstein llm generation safety score representation
34
+ *
35
+ * Keys:
36
+ * (none)
37
+ */
38
+ export interface EinsteinLlmGenerationsSafetyScoreRepresentation {
39
+ hateScore?: number | null;
40
+ physicalScore?: number | null;
41
+ profanityScore?: number | null;
42
+ safetyScore?: number | null;
43
+ sexualScore?: number | null;
44
+ toxicityScore?: number | null;
45
+ violenceScore?: number | null;
46
+ }
@@ -0,0 +1,37 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "6458d624e5a1691821c764b6de0badb3";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: EinsteinPromptTemplateGenerationsErrorRepresentation, existing: EinsteinPromptTemplateGenerationsErrorRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): EinsteinPromptTemplateGenerationsErrorRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: EinsteinPromptTemplateGenerationsErrorRepresentationNormalized, incoming: EinsteinPromptTemplateGenerationsErrorRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: EinsteinPromptTemplateGenerationsErrorRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Error output of a EinsteinPromptTemplateGeneration request
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface EinsteinPromptTemplateGenerationsErrorRepresentationNormalized {
17
+ /** This is the error message meant for client consumption. It may differ from the Gateway Error Message */
18
+ errorMessage: string;
19
+ /** HTTP Error Code classifying the error */
20
+ httpErrorCode: string;
21
+ /** This is the localized error message. */
22
+ localizedErrorMessage?: string;
23
+ /** The message code received from the LLM Gateway */
24
+ messageCode: string;
25
+ }
26
+ /**
27
+ * Error output of a EinsteinPromptTemplateGeneration request
28
+ *
29
+ * Keys:
30
+ * (none)
31
+ */
32
+ export interface EinsteinPromptTemplateGenerationsErrorRepresentation {
33
+ errorMessage: string;
34
+ httpErrorCode: string;
35
+ localizedErrorMessage?: string;
36
+ messageCode: string;
37
+ }
@@ -1,8 +1,11 @@
1
+ import { EinsteinPromptTemplateGenerationsErrorRepresentation as EinsteinPromptTemplateGenerationsErrorRepresentation_EinsteinPromptTemplateGenerationsErrorRepresentation } from './EinsteinPromptTemplateGenerationsErrorRepresentation';
1
2
  import { EinsteinLlmGenerationItemRepresentation as EinsteinLlmGenerationItemRepresentation_EinsteinLlmGenerationItemRepresentation } from './EinsteinLlmGenerationItemRepresentation';
2
3
  import { WrappedMap as WrappedMap_WrappedMap } from './WrappedMap';
4
+ import { EinsteinPromptTemplateMaskContentRepresentation as EinsteinPromptTemplateMaskContentRepresentation_EinsteinPromptTemplateMaskContentRepresentation } from './EinsteinPromptTemplateMaskContentRepresentation';
5
+ import { EinsteinPromptTemplateMaskDataRepresentation as EinsteinPromptTemplateMaskDataRepresentation_EinsteinPromptTemplateMaskDataRepresentation } from './EinsteinPromptTemplateMaskDataRepresentation';
3
6
  import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
4
7
  export declare const TTL = 100;
5
- export declare const VERSION = "72c96c11855d430a55c0a79c239c0838";
8
+ export declare const VERSION = "af7cfa8bd9d9cdd1923263da1734499c";
6
9
  export declare function validate(obj: any, path?: string): TypeError | null;
7
10
  export declare const RepresentationType: string;
8
11
  export interface KeyParams extends $64$luvio_engine_KeyMetadata {
@@ -26,6 +29,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
26
29
  * requestId (string): requestId
27
30
  */
28
31
  export interface EinsteinPromptTemplateGenerationsRepresentationNormalized {
32
+ /** generated prompt template generationErrors */
33
+ generationErrors?: Array<EinsteinPromptTemplateGenerationsErrorRepresentation_EinsteinPromptTemplateGenerationsErrorRepresentation>;
29
34
  /** List of generated text */
30
35
  generations: Array<EinsteinLlmGenerationItemRepresentation_EinsteinLlmGenerationItemRepresentation>;
31
36
  /** Any provider specific attributes will be included as part of this object */
@@ -36,6 +41,12 @@ export interface EinsteinPromptTemplateGenerationsRepresentationNormalized {
36
41
  promptTemplateDevName: string;
37
42
  /** ID of the generation request */
38
43
  requestId: string;
44
+ /** generated prompt template RequestMessages */
45
+ requestMessages?: Array<EinsteinPromptTemplateMaskContentRepresentation_EinsteinPromptTemplateMaskContentRepresentation>;
46
+ /** generated prompt template ResponseMessages */
47
+ responseMessages?: Array<EinsteinPromptTemplateMaskContentRepresentation_EinsteinPromptTemplateMaskContentRepresentation>;
48
+ /** generated prompt template slotsMaskingInformation */
49
+ slotsMaskingInformation?: Array<EinsteinPromptTemplateMaskDataRepresentation_EinsteinPromptTemplateMaskDataRepresentation>;
39
50
  }
40
51
  /**
41
52
  * Output of a einstein llm generations response for given prompt template
@@ -44,9 +55,13 @@ export interface EinsteinPromptTemplateGenerationsRepresentationNormalized {
44
55
  * requestId (string): requestId
45
56
  */
46
57
  export interface EinsteinPromptTemplateGenerationsRepresentation {
58
+ generationErrors?: Array<EinsteinPromptTemplateGenerationsErrorRepresentation_EinsteinPromptTemplateGenerationsErrorRepresentation>;
47
59
  generations: Array<EinsteinLlmGenerationItemRepresentation_EinsteinLlmGenerationItemRepresentation>;
48
60
  parameters: WrappedMap_WrappedMap | null;
49
61
  prompt: string | null;
50
62
  promptTemplateDevName: string;
51
63
  requestId: string;
64
+ requestMessages?: Array<EinsteinPromptTemplateMaskContentRepresentation_EinsteinPromptTemplateMaskContentRepresentation>;
65
+ responseMessages?: Array<EinsteinPromptTemplateMaskContentRepresentation_EinsteinPromptTemplateMaskContentRepresentation>;
66
+ slotsMaskingInformation?: Array<EinsteinPromptTemplateMaskDataRepresentation_EinsteinPromptTemplateMaskDataRepresentation>;
52
67
  }
@@ -0,0 +1,35 @@
1
+ import { EinsteinPromptTemplateMaskSettingsRepresentation as EinsteinPromptTemplateMaskSettingsRepresentation_EinsteinPromptTemplateMaskSettingsRepresentation } from './EinsteinPromptTemplateMaskSettingsRepresentation';
2
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
+ export declare const VERSION = "92ad1abd0e2a60bc36941409cadda7e2";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: EinsteinPromptTemplateMaskContentRepresentation, existing: EinsteinPromptTemplateMaskContentRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): EinsteinPromptTemplateMaskContentRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: EinsteinPromptTemplateMaskContentRepresentationNormalized, incoming: EinsteinPromptTemplateMaskContentRepresentationNormalized): boolean;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: EinsteinPromptTemplateMaskContentRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Output of a einstein mask data request and response for given prompt template
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface EinsteinPromptTemplateMaskContentRepresentationNormalized {
18
+ /** content value */
19
+ content: string;
20
+ /** moderationSettings value */
21
+ moderationSettings?: EinsteinPromptTemplateMaskSettingsRepresentation_EinsteinPromptTemplateMaskSettingsRepresentation | null;
22
+ /** RoleEnum value */
23
+ role?: string;
24
+ }
25
+ /**
26
+ * Output of a einstein mask data request and response for given prompt template
27
+ *
28
+ * Keys:
29
+ * (none)
30
+ */
31
+ export interface EinsteinPromptTemplateMaskContentRepresentation {
32
+ content: string;
33
+ moderationSettings?: EinsteinPromptTemplateMaskSettingsRepresentation_EinsteinPromptTemplateMaskSettingsRepresentation | null;
34
+ role?: string;
35
+ }
@@ -0,0 +1,34 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "507a815605f8d30ae9b52b0ec513d25e";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: EinsteinPromptTemplateMaskDataRepresentation, existing: EinsteinPromptTemplateMaskDataRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): EinsteinPromptTemplateMaskDataRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: EinsteinPromptTemplateMaskDataRepresentationNormalized, incoming: EinsteinPromptTemplateMaskDataRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: EinsteinPromptTemplateMaskDataRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Output of a einstein mask data response for given prompt template
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface EinsteinPromptTemplateMaskDataRepresentationNormalized {
17
+ /** original field value */
18
+ originalValue: string;
19
+ /** placeholder value */
20
+ placeHolder: string;
21
+ /** recognizers */
22
+ recognizers: Array<string>;
23
+ }
24
+ /**
25
+ * Output of a einstein mask data response for given prompt template
26
+ *
27
+ * Keys:
28
+ * (none)
29
+ */
30
+ export interface EinsteinPromptTemplateMaskDataRepresentation {
31
+ originalValue: string;
32
+ placeHolder: string;
33
+ recognizers: Array<string>;
34
+ }
@@ -0,0 +1,28 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "7c417ce44e4bc05dfcc454e6825590e8";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: EinsteinPromptTemplateMaskSettingsRepresentation, existing: EinsteinPromptTemplateMaskSettingsRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): EinsteinPromptTemplateMaskSettingsRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: EinsteinPromptTemplateMaskSettingsRepresentationNormalized, incoming: EinsteinPromptTemplateMaskSettingsRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: EinsteinPromptTemplateMaskSettingsRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Output of a einstein mask data moderation setting for given prompt template
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface EinsteinPromptTemplateMaskSettingsRepresentationNormalized {
17
+ /** enable moderation value */
18
+ enableModeration: boolean;
19
+ }
20
+ /**
21
+ * Output of a einstein mask data moderation setting for given prompt template
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface EinsteinPromptTemplateMaskSettingsRepresentation {
27
+ enableModeration: boolean;
28
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-service-einsteinllm",
3
- "version": "1.287.0-dev1",
3
+ "version": "1.287.0-dev10",
4
4
  "description": "Connect family for Einstein LLM generations",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "dist/es/es2018/service-einsteinllm.js",
@@ -43,11 +43,11 @@
43
43
  "test": "nx build:karma && karma start --single-run"
44
44
  },
45
45
  "dependencies": {
46
- "@salesforce/lds-bindings": "^1.287.0-dev1"
46
+ "@salesforce/lds-bindings": "^1.287.0-dev10"
47
47
  },
48
48
  "devDependencies": {
49
- "@salesforce/lds-compiler-plugins": "^1.287.0-dev1",
50
- "@salesforce/lds-karma": "^1.287.0-dev1"
49
+ "@salesforce/lds-compiler-plugins": "^1.287.0-dev10",
50
+ "@salesforce/lds-karma": "^1.287.0-dev10"
51
51
  },
52
52
  "nx": {
53
53
  "targets": {