Documentation - v1.2.0-alpha.3
    Preparing search index...

    Value returned from a recognizer.

    interface RecognizerResult {
        alteredText?: string;
        entities?: any;
        intents: Record<string, IntentScore>;
        text: string;
        [propName: string]: any;
    }

    Indexable

    • [propName: string]: any

      Additional properties that may be included in the recognizer result.

    Index

    Properties

    alteredText?: string

    Optional. The modified version of the text input, if applicable.

    entities?: any

    Optional. Entities recognized in the input, if any.

    intents: Record<string, IntentScore>

    A mapping of intent names to their corresponding confidence scores.

    text: string

    The original text input provided by the user.