BrainEngine AI
  • Welcome
  • Quick Start
    • Introduction
    • Platform Configuration
    • Validate Connectivity
    • Configure Redaction
    • Update Configuration
    • Advanced Redaction
  • Concepts
    • What is Conversational Redaction?
    • Redaction Strategy
    • Understanding Redaction
    • Navigating Utterances
      • Walk through
    • Redaction Techniques
      • Behavior
      • Confidence
      • Mask Types
        • Basic
        • Placeholder
        • Random
        • Truncate
        • Anonymization
      • Redaction Options
    • Insights
      • Insights
      • Query Syntax
      • Advance Processing
      • Simulated Pause & Resume
      • Real-Time Alerts
      • Agent Ignore
      • Offsets
      • Redaction Options
  • Features
    • Overview
    • Entities
      • PII
        • Name
        • Occupation
        • Phone Number
        • Organization
        • Address
        • Email
        • Location
        • Url
        • IP Address
        • Date
        • Age
        • Social Security Number
        • Drivers License
        • Passport
        • Id
        • Money
        • Time
        • User Name
        • Password
      • PHI
        • Medical Condition
        • Medication
        • Family Relation
        • Treatment
        • Examination
        • Anatomy
        • Medical Other
        • Demographic
        • Medical Event
      • PCI
        • Credit Card
        • Credit Card CVV
        • Credit Card Expiry
        • Routing Number
        • Bank Account
      • Custom
        • Dictionary
        • Identifier
        • Custom NER
    • Summarization
    • Sentiment Analysis
    • Topic Extraction
    • Profanity Filtering
  • Configuration
    • Project Configuration
    • Redaction Configuration
    • Samples
      • Configurations
      • Calls
  • Integration
    • V-Blaze
    • V-Spark
    • Analytics
      • Embedded
      • Callback
  • API Guide
    • Overview
      • Errors
      • Getting Help
    • Endpoints
      • ASR
        • Transcribe
        • Maxstreamscheck
        • Languages
        • Models
        • Params
        • Stats
        • Status
        • Sysinfo
        • Statusfull
      • Live
        • Callback
        • Listen
      • Redaction
        • Types
        • Validate
      • System
        • Initialize
        • Set parameter
        • Get parameter
        • Cache
          • List
          • Real time
          • Post call
          • Version 2
            • Publish
            • List
        • Get Settings
      • Status
        • Health
        • Webhooks
  • Deployment
    • Overview
    • Virtual Appliance
      • BrainEngine AMIs
        • Finding AMIs
        • Launching AMIs
        • Connecting to an Instance
        • SSL Configuration
        • Networking (optional)
    • Containers
      • Details
      • Deployment
    • Environment Parameters
    • Logging
  • Support
    • Release Notes
Powered by GitBook
On this page
  1. Concepts
  2. Insights

Query Syntax

BrainEngine incorporates a comprehensive full-text search engine, simplifying the process of integrating search functionality into your configuration.

Keyword and Phrase Matching

Birthday

Birthday must appear in the utterance exactly.

"my birthday is"

The words "my birthday is" must appear in sequence in the utterance.

Fuzzy Matching

?Crd

Words that fuzzy match crd must appear in the utterance exactly.

?3,2?Card

Words that fuzzy match crd must appear in the utterance exactly.

birth*

Words that start with birth must appear in the utterance exactly.

Wildcard Matching

%%ing

Words that starts with any two letters and end with ing, e.g. doing

Proximity Matching

social & security

The words social and security must appear in the text.

social security

The words social and security must appear in the text. The default operator is & if none is specified between search words.

social | security

The words social or security must appear in the text.

social ~ security

The words social and security must appear near to each other(within 5 words) in the text.

social ~3 security

The words social and security must appear near to each other(within 3 words) in the text.

social ~> security

social must be closely (within 5 words) followed by security in the text.

social ~3> security

social must be closely (within 3 words) followed by security in the text.

social > security

social must precede security anywhere in the text.

Examples

("long card" | car* | digit) ~3> "number"

May I have the 16 digit number on your card?

(debit | credit) ~2> number

May I have your credit card number?

PreviousInsightsNextAdvance Processing

Last updated 1 year ago