UNPKG

@sap-ai-sdk/prompt-registry

Version:

SAP Cloud SDK for AI is the official Software Development Kit (SDK) for **SAP AI Core**, **SAP Generative AI Hub**, and **Orchestration Service**.

22 lines 573 B
import type { PromptTemplateSpec } from './prompt-template-spec.js'; /** * Representation of the 'PromptTemplateGetResponse' schema. */ export type PromptTemplateGetResponse = { /** * Format: "uuid". */ id?: string; name?: string; version?: string; scenario?: string; /** * Format: "timestamp". */ creationTimestamp?: string; managedBy?: string; isVersionHead?: boolean; resourceGroupId?: string; spec?: PromptTemplateSpec; } & Record<string, any>; //# sourceMappingURL=prompt-template-get-response.d.ts.map