SAP AI SDK for JavaScript - v2.8.0
    Preparing search index...

    Type Alias OrchestrationConfigRef

    OrchestrationConfigRef: Xor<
        { id: string },
        { name: string; scenario: string; version: string },
    >

    Reference to an orchestration configuration created via the Prompt Registry API. Use this to reference a pre-configured orchestration setup without defining the full configuration in code. The configuration must be created via the Prompt Registry API before it can be referenced. Reference by ID.

    const configRef: OrchestrationConfigRef = {
    id: 'f47ac10b-58cc-4372-a567-0e02b2c3d479'
    };
    Reference by scenario, name and version.
    const configRef: OrchestrationConfigRef = {
    scenario: 'customer-support',
    name: 'example-orchestration-config',
    version: '0.0.1'
    };

    Copyright Ⓒ 2026 SAP SE or an SAP affiliate company. All rights reserved.