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 749 B
import type { OrchestrationConfig } from './orchestration-config.js'; import type { ChatMessages } from './chat-messages.js'; /** * Representation of the 'CompletionPostRequest' schema. */ export type CompletionPostRequest = { orchestration_config: OrchestrationConfig; /** * @example { * "groundingInput": "What is SAP Joule?", * "inputContext": "optimizing supply chain management" * } */ input_params?: 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-post-request.d.ts.map