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**.

20 lines 919 B
import type { CompletionRequestConfigurationReferenceByIdConfigRef } from './completion-request-configuration-reference-by-id-config-ref.js'; import type { ChatMessages } from './chat-messages.js'; /** * Representation of the 'CompletionRequestConfigurationReferenceById' schema. */ export type CompletionRequestConfigurationReferenceById = { config_ref: CompletionRequestConfigurationReferenceByIdConfigRef; /** * @example { * "groundingInput": "What is SAP Joule?", * "inputContext": "optimizing supply chain management" * } */ placeholder_values?: Record<string, string>; /** * History of chat messages. Can be used to provide system and assistant messages to set the context of the conversation. Will be merged with the template message */ messages_history?: ChatMessages; }; //# sourceMappingURL=completion-request-configuration-reference-by-id.d.ts.map