@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**.
20 lines • 698 B
TypeScript
import type { SAPDocumentTranslationOutputTargetLanguage } from './sap-document-translation-output-target-language.js';
/**
* Representation of the 'SAPDocumentTranslationOutput' schema.
*/
export type SAPDocumentTranslationOutput = {
/**
* Configuration for `sap_document_translation` translation provider.
* @example "sap_document_translation"
*/
type: 'sap_document_translation';
config: {
/**
* Language of the text to be translated.
* @example "de-DE"
*/
source_language?: string;
target_language: SAPDocumentTranslationOutputTargetLanguage;
};
};
//# sourceMappingURL=sap-document-translation-output.d.ts.map