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

23 lines 582 B
import type { PromptTemplateSpec } from './prompt-template-spec.js'; /** * Representation of the 'PromptTemplatePostRequest' schema. */ export type PromptTemplatePostRequest = { /** * Max Length: 120. * Pattern: "^[a-zA-Z0-9_-]+$". */ name: string; /** * Max Length: 10. * Pattern: "^[a-zA-Z0-9._-]+$". */ version: string; /** * Max Length: 120. * Pattern: "^[a-zA-Z0-9_-]+$". */ scenario: string; spec: PromptTemplateSpec; } & Record<string, any>; //# sourceMappingURL=prompt-template-post-request.d.ts.map