AssistQueryParameters

Represents the parameters of human assist query.

JSON representation
{
  "documentsMetadataFilters": {
    string: string,
    ...
  }
}
Fields
documentsMetadataFilters

map (key: string, value: string)

Key-value filters on the metadata of documents returned by article suggestion. If specified, article suggestion only returns suggested documents that match all filters in their Document.metadata. Multiple values for a metadata key should be concatenated by comma. For example, filters to match all documents that have 'US' or 'CA' in their market metadata values and 'agent' in their user metadata values will be

documentsMetadataFilters {
  key: "market"
  value: "US,CA"
}
documentsMetadataFilters {
  key: "user"
  value: "agent"
}

An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.