UNPKG

@sap-ai-sdk/orchestration

Version:

SAP Cloud SDK for AI is the official Software Development Kit (SDK) for **SAP AI Core**, **SAP Generative AI Hub**, and **Orchestration Service**.

34 lines 866 B
import type { DpiEntityConfig } from './dpi-entity-config.js'; /** * Representation of the 'DpiConfig' schema. */ export type DpiConfig = { /** * Type of masking service provider */ type: 'sap_data_privacy_integration'; /** * Type of masking method to be used */ method: 'anonymization' | 'pseudonymization'; /** * List of entities to be masked * Min Items: 1. */ entities: DpiEntityConfig[]; /** * List of strings that should not be masked * @example [ * "SAP", * "Joule" * ] */ allowlist?: string[]; mask_grounding_input?: { /** * controls whether the input to the grounding module will be masked with the configuration supplied in the masking module */ enabled?: boolean; }; }; //# sourceMappingURL=dpi-config.d.ts.map