@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**.
20 lines • 473 B
TypeScript
import type { PromptTemplateSpec } from './prompt-template-spec.js';
/**
* Representation of the 'PromptTemplatePostRequest' schema.
*/
export type PromptTemplatePostRequest = {
/**
* Max Length: 120.
*/
name: string;
/**
* Max Length: 10.
*/
version: string;
/**
* Max Length: 120.
*/
scenario: string;
spec: PromptTemplateSpec;
} & Record<string, any>;
//# sourceMappingURL=prompt-template-post-request.d.ts.map