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