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

    Basic search options used to control how choices are recognized in a users utterance.

    interface FindValuesOptions {
        allowPartialMatches?: boolean;
        locale?: string;
        maxTokenDistance?: number;
        tokenizer?: TokenizerFunction;
    }

    Hierarchy (View Summary)

    Index

    Properties

    allowPartialMatches?: boolean

    If true, allows partial matches of values in the search.

    locale?: string

    The locale to use for tokenization and comparison.

    maxTokenDistance?: number

    The maximum token distance allowed between matches.

    tokenizer?: TokenizerFunction

    The tokenizer function to use for breaking the utterance into tokens.