@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**.
15 lines • 460 B
TypeScript
import type { PromptTemplateSpec } from './prompt-template-spec.js';
/**
* Representation of the 'RuntimePromptTemplateFile' schema.
*/
export type RuntimePromptTemplateFile = {
apiVersion?: string;
kind?: string;
metadata?: {
name?: string;
version?: string;
scenario?: string;
} & Record<string, any>;
spec?: PromptTemplateSpec;
} & Record<string, any>;
//# sourceMappingURL=runtime-prompt-template-file.d.ts.map