@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**.
10 lines • 563 B
TypeScript
import type { SystemChatMessage } from './system-chat-message.js';
import type { UserChatMessage } from './user-chat-message.js';
import type { AssistantChatMessage } from './assistant-chat-message.js';
import type { ToolChatMessage } from './tool-chat-message.js';
import type { DeveloperChatMessage } from './developer-chat-message.js';
/**
* Representation of the 'ChatMessage' schema.
*/
export type ChatMessage = SystemChatMessage | UserChatMessage | AssistantChatMessage | ToolChatMessage | DeveloperChatMessage;
//# sourceMappingURL=chat-message.d.ts.map