@sap-ai-sdk/orchestration
Version:
SAP Cloud SDK for AI is the official Software Development Kit (SDK) for **SAP AI Core**, **SAP Generative AI Hub**, and **Orchestration Service**.
17 lines • 601 B
TypeScript
/**
* Representation of the 'TemplateRefByID' schema.
*/
export type TemplateRefByID = {
/**
* ID of the template in prompt registry
* @example "template_id"
*/
id: string;
/**
* Defines the scope that is searched for the referenced template. 'tenant' indicates the template is shared across all resource groups within the tenant, while 'resource_group' indicates the template is only accessible within the specific resource group.
*
* Default: "tenant".
*/
scope?: 'resource_group' | 'tenant';
};
//# sourceMappingURL=template-ref-by-id.d.ts.map