@salesforce/lds-adapters-service-einsteinllm 1.448.0 → 1.449.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -28,7 +28,7 @@ export interface EinsteinPromptTemplateGenerationsInputRepresentationNormalized
|
|
|
28
28
|
outputLanguage?: string;
|
|
29
29
|
/** LLM Provider */
|
|
30
30
|
provider?: string;
|
|
31
|
-
/** When this flag is true, mergeFieldInformation will be added to the LLM Generations Response output, which will be used to show annotations in the resolved prompt. */
|
|
31
|
+
/** DEPRECATED (as of v67.0, W-23331884). When this flag is true, mergeFieldInformation will be added to the LLM Generations Response output, which will be used to show annotations in the resolved prompt. */
|
|
32
32
|
showGroundingMetadataInResolvedPrompt?: boolean;
|
|
33
33
|
}
|
|
34
34
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-service-einsteinllm",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.449.0",
|
|
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",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"test:unit": "jest --config=./jest.config.js"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@salesforce/lds-bindings": "^1.
|
|
47
|
+
"@salesforce/lds-bindings": "^1.449.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
51
|
-
"@salesforce/lds-karma": "^1.
|
|
50
|
+
"@salesforce/lds-compiler-plugins": "^1.449.0",
|
|
51
|
+
"@salesforce/lds-karma": "^1.449.0"
|
|
52
52
|
},
|
|
53
53
|
"nx": {
|
|
54
54
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -8272,4 +8272,4 @@ withDefaultLuvio((luvio) => {
|
|
|
8272
8272
|
});
|
|
8273
8273
|
|
|
8274
8274
|
export { createEmbeddings, createEmbeddings_imperative, createFeedback, createGenerations, createGenerationsForPromptTemplate, createPromptTemplate, createPromptTemplateVersion, getDataProviderInstanceConfig, getDataProviderInstanceConfig_imperative, getDataProviderTypeConfigs, getDataProviderTypeConfigs_imperative, getDataProviders, getDataProviders_imperative, getEinsteinPromptTemplateReferences, getEinsteinPromptTemplateReferences_imperative, getInputMappedDataProviders, getInputMappedDataProviders_imperative, getOutputLanguages, getOutputLanguages_imperative, getPromptTemplate, getPromptTemplateVersion, getPromptTemplateVersion_imperative, getPromptTemplateVersions, getPromptTemplateVersions_imperative, getPromptTemplate_imperative, getPromptTemplates, getPromptTemplates_imperative, getTemplateType, getTemplateType_imperative, putEinsteinPromptTemplateStatus, putEinsteinPromptTemplateVersionStatus, updatePromptTemplateVersion };
|
|
8275
|
-
// version: 1.
|
|
8275
|
+
// version: 1.449.0-7b415dc950
|
package/src/raml/api.raml
CHANGED
|
@@ -459,7 +459,8 @@ types:
|
|
|
459
459
|
type: string
|
|
460
460
|
required: false # TODO Hand-rolled W-9314597
|
|
461
461
|
showGroundingMetadataInResolvedPrompt:
|
|
462
|
-
description: When this flag is true, mergeFieldInformation will be added to the LLM Generations Response output, which will be used to show annotations in the resolved prompt.
|
|
462
|
+
description: DEPRECATED (as of v67.0, W-23331884). When this flag is true, mergeFieldInformation will be added to the LLM Generations Response output, which will be used to show annotations in the resolved prompt.
|
|
463
|
+
(oas-deprecated): true
|
|
463
464
|
type: boolean
|
|
464
465
|
required: false # TODO Hand-rolled W-18853661
|
|
465
466
|
EinsteinPromptTemplateGenerationsRepresentation:
|