QueryInterpretationConfigArgs

data class QueryInterpretationConfigArgs(val forceDisableSupplementalResults: Output<Boolean>? = null, val forceVerbatimMode: Output<Boolean>? = null) : ConvertibleToJava<QueryInterpretationConfigArgs>

Default options to interpret user query.

Constructors

Link copied to clipboard
fun QueryInterpretationConfigArgs(forceDisableSupplementalResults: Output<Boolean>? = null, forceVerbatimMode: Output<Boolean>? = null)

Functions

Link copied to clipboard
open override fun toJava(): QueryInterpretationConfigArgs

Properties

Link copied to clipboard

Set this flag to disable supplemental results retrieval, setting a flag here will not retrieve supplemental results for queries associated with a given search application. If this flag is set to True, it will take precedence over the option set at Query level. For the default value of False, query level flag will set the correct interpretation for supplemental results.

Link copied to clipboard
val forceVerbatimMode: Output<Boolean>? = null

Enable this flag to turn off all internal optimizations like natural language (NL) interpretation of queries, supplemental results retrieval, and usage of synonyms including custom ones. If this flag is set to True, it will take precedence over the option set at Query level. For the default value of False, query level flag will set the correct interpretation for verbatim mode.