Member Junction
    Preparing search index...

    Interface PromptComponentScope

    The scope a prompt-component resolution runs in. Mirrors the polymorphic scope the agent runtime already carries for memory (PrimaryScopeEntity/Record + SecondaryScopes).

    interface PromptComponentScope {
        primaryScopeEntityId?: string;
        primaryScopeRecordId?: string;
        secondaryScopes?: Record<string, SecondaryScopeValue>;
    }
    Index

    Properties

    primaryScopeEntityId?: string
    primaryScopeRecordId?: string
    secondaryScopes?: Record<string, SecondaryScopeValue>