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 1.02 kB
import type { CompletionRequestConfigurationReferenceByNameScenarioVersionConfigRef } from './completion-request-configuration-reference-by-name-scenario-version-config-ref.js'; import type { ChatMessages } from './chat-messages.js'; /** * Representation of the 'CompletionRequestConfigurationReferenceByNameScenarioVersion' schema. */ export type CompletionRequestConfigurationReferenceByNameScenarioVersion = { config_ref: CompletionRequestConfigurationReferenceByNameScenarioVersionConfigRef; /** * @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-name-scenario-version.d.ts.map