@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**.
26 lines • 696 B
TypeScript
/**
* Representation of the 'SAPDocumentTranslation' schema.
*/
export type SAPDocumentTranslation = {
/**
* Type of document translation provider
* @example "sap_document_translation"
*/
type: 'sap_document_translation';
/**
* Configuration for `sap_document_translation` translation provider.
*/
config: {
/**
* Language of the text to be translated.
* @example "de-DE"
*/
source_language?: string;
/**
* Language to which the text should be translated.
* @example "en-US"
*/
target_language: string;
};
};
//# sourceMappingURL=sap-document-translation.d.ts.map