Class SuggestionInfo (0.6.3)

SuggestionInfo(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Detailed information about the suggestion.

Attributes

NameDescription
annotated_suggestion google.cloud.dataqna_v1alpha.types.AnnotatedString
Annotations for the suggestion. This provides information about which part of the suggestion corresponds to what semantic meaning (e.g. a metric).
query_matches Sequence[google.cloud.dataqna_v1alpha.types.SuggestionInfo.MatchInfo]
Matches between user query and the annotated string.

Classes

MatchInfo

MatchInfo(mapping=None, *, ignore_unknown_fields=False, **kwargs)

MatchInfo describes which part of suggestion matched with data in user typed query. This can be used to highlight matching parts in the UI. This is different from the annotations provided in annotated_suggestion. The annotated_suggestion provides information about the semantic meaning, while this provides information about how it relates to the input.

Example: user query: top products

::

annotated_suggestion { text_formatted = "top product_group" html_formatted = "top product_group" markups { {type: TEXT, start_char_index: 0, length: 3} {type: DIMENSION, start_char_index: 4, length: 13} } }

query_matches { { start_char_index: 0, length: 3 } { start_char_index: 4, length: 7} }