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 281 B
import type { ChatMessageContent } from './chat-message-content.js'; /** * Representation of the 'DeveloperChatMessage' schema. */ export type DeveloperChatMessage = { role: 'developer'; content: ChatMessageContent; }; //# sourceMappingURL=developer-chat-message.d.ts.map