Skip to main content
Configuration for RemoteSTTNode using an existing STT component. Remarks: This approach references a pre-configured STT component that can be reused across multiple nodes. Extends: AbstractNodeProps

Interface Definition

interface RemoteSTTNodeWithComponentProps {
    id?: string;
    reportToClient?: boolean;
    sttComponent: RemoteSTTComponent;
}

Properties

id (optional)

id?: string
Optional explicit node identifier. Remarks: If omitted, a stable auto-generated ID based on the class name is assigned. Inherited from: AbstractNodeProps.id

reportToClient (optional)

reportToClient?: boolean
Whether this node should report its outputs to the client. If set to true, you will see the output of this node in the GraphOutputStream. Inherited from: AbstractNodeProps.reportToClient

sttComponent

sttComponent: RemoteSTTComponent
Existing STT component to use