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

9 lines 269 B
import type { ChatMessageContent } from './chat-message-content.js'; /** * Representation of the 'SystemChatMessage' schema. */ export type SystemChatMessage = { role: 'system'; content: ChatMessageContent; }; //# sourceMappingURL=system-chat-message.d.ts.map