Apathy
Identifying Mentions of Apathy
The “Apathy” tracker detects phrases indicating that one party in the conversation is indifferent, uninterested, or showing minimal emotional investment. By capturing these subtle cues, teams can gain insights into what triggers apathy, informing approaches to re-engage customers, energize representatives, or adjust conversation strategies to restore engagement.
Who Benefits:
- Project Managers & Team Leads: Identify when and why apathy arises, guiding training and coaching to improve engagement and rapport-building skills.
- Sales & CX Teams: Recognize signals of customer indifference, enabling proactive attempts to regain interest, provide relevant information, or adjust the approach.
- Business Managers & Strategists: Spot trends in apathy to inform product changes, messaging shifts, or improved support resources.
- Compliance Officers: Ensure that representatives address apathy ethically and compliantly, not glossing over or manipulating the situation improperly.
Value Proposition:
- Improved Engagement: Highlighting apathetic moments helps teams intervene effectively to spark renewed interest and prevent lost opportunities.
- Scalable Insights: Structured, machine-readable output integrates into dashboards for trend analysis and timely action.
- Continuous Improvement: By understanding what triggers apathy, organizations can refine scripts, training materials, and outreach methods.
Data Dictionary
Objective:
Detect phrases or signals in the conversation that suggest apathy—such as indifferent responses, disinterest, or lack of concern. The tracker returns occurrences of matched phrases, timestamps, and confidence, helping teams know when and where conversation energy wanes.
Proposed JSON Schema:
{
"trackers": [
{
"name": "Apathy",
"matches": [
{
"text": "<string>",
"timestamp": "<ISO 8601 or relative time>",
"confidence": <number> // 0.0 to 1.0
}
]
}
]
}
Data Dictionary:
Field | Description | Example |
---|---|---|
trackers | Array of tracker objects. | [ {...} ] |
trackers[].name | The tracker’s name. | "Apathy" |
trackers[].matches | Array of matches for phrases indicating apathy. | [ {...}, {...} ] |
matches[].text | The matched phrase representing apathetic intent. | "I don’t really care," "It doesn't matter to me." |
matches[].timestamp | When the phrase occurred (ISO 8601 or relative time). | "2024-07-10T14:30:00Z" or "00:02:50" |
matches[].confidence | Confidence (0.0 to 1.0) reflecting how closely the phrase aligns with apathetic sentiment. | 0.85 |
If No Matches Found:
If no apathy references are detected, return an empty matches
array for "Apathy" or omit the tracker. If no trackers match at all, return:
{
"trackers": []
}
Determining Confidence & Thresholds
How the Apathy Tracker Works:
- Seed the tracker with phrases that signal indifference (e.g., "I don’t care," "Whatever," "It doesn’t matter," "No difference to me").
- The system interprets these seed phrases and identifies semantically related statements expressing a lack of interest.
- Confidence indicates how closely the detected phrase aligns with apathetic sentiment.
Confidence & Calibration:
- Initial Testing: Validate on known calls to ensure detected phrases truly represent apathy.
- Refine Phrases: Add or remove seed phrases to capture evolving language or subtle variations of apathy.
- Thresholding: Downstream processes can ignore low-confidence matches.
- Stakeholder Feedback: Incorporate input from CX leads or managers to refine definitions and ensure relevant apathetic cues are captured.
Prompt Construction & Instructions
Role Specification & Reiteration:
- Present the system as a “highly experienced assistant” identifying apathy mentions.
- Reiterate instructions: return only JSON, follow schema, no extra commentary.
No Hallucination:
- Only detect apathy references if the transcript supports it.
- If uncertain, assign lower confidence or omit matches.
Strict Formatting:
- Return only JSON with
trackers
. - If none found, return empty
trackers
.
Example Prompt for Implementation
System Message (Role: System):
"You are a highly experienced assistant that identifies 'Apathy' mentions in a conversation. You have:
- A transcript
- An 'Apathy' tracker defined by seed phrases indicating disinterest or indifference.
Your task:
- Detect phrases showing lack of interest or caring.
- Return
text
,timestamp
, andconfidence
. - Return only JSON as per the schema, no extra commentary.
Instructions & Variables (example):
{
"tracker": {
"name": "Apathy",
"phrases": [
"I don't care",
"doesn't matter to me",
"whatever",
"no difference"
]
}
}
User Message (Role: User):
"Analyze the following transcript and detect 'Apathy' mentions:
[TRANSCRIPT_JSON][TRANSCRIPT_JSON]"
Expected Output Format:
{
"trackers": [
{
"name": "Apathy",
"matches": [
{
"text": "Honestly, whatever you decide is fine; I don’t really care either way.",
"timestamp": "2024-07-10T14:30:00Z",
"confidence": 0.9
}
]
}
]
}
Updated about 2 months ago