neuron-mcp-server 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env +13 -0
- package/AI_PERSONALITY_DESIGN_RESEARCH.md +1020 -0
- package/Dockerfile +18 -0
- package/README.md +146 -131
- package/dist/client.d.ts +6 -0
- package/dist/client.js +50 -12
- package/dist/client.js.map +1 -1
- package/dist/index.js +51 -7
- package/dist/index.js.map +1 -1
- package/dist/tools/ai.js +9 -3
- package/dist/tools/ai.js.map +1 -1
- package/dist/tools/approvals.d.ts +2 -0
- package/dist/tools/approvals.js +181 -0
- package/dist/tools/approvals.js.map +1 -0
- package/dist/tools/audit.js +7 -4
- package/dist/tools/audit.js.map +1 -1
- package/dist/tools/auth.js +119 -19
- package/dist/tools/auth.js.map +1 -1
- package/dist/tools/billing.js +22 -6
- package/dist/tools/billing.js.map +1 -1
- package/dist/tools/blog.js +98 -34
- package/dist/tools/blog.js.map +1 -1
- package/dist/tools/bot-api-keys.js +27 -12
- package/dist/tools/bot-api-keys.js.map +1 -1
- package/dist/tools/bot-api.js +53 -27
- package/dist/tools/bot-api.js.map +1 -1
- package/dist/tools/bots.js +116 -68
- package/dist/tools/bots.js.map +1 -1
- package/dist/tools/broadcasts.js +78 -38
- package/dist/tools/broadcasts.js.map +1 -1
- package/dist/tools/builtin-tools.js +19 -12
- package/dist/tools/builtin-tools.js.map +1 -1
- package/dist/tools/campaigns.js +149 -61
- package/dist/tools/campaigns.js.map +1 -1
- package/dist/tools/channels.js +163 -53
- package/dist/tools/channels.js.map +1 -1
- package/dist/tools/contact-lists.js +111 -51
- package/dist/tools/contact-lists.js.map +1 -1
- package/dist/tools/contacts.js +117 -44
- package/dist/tools/contacts.js.map +1 -1
- package/dist/tools/conversations.js +95 -50
- package/dist/tools/conversations.js.map +1 -1
- package/dist/tools/flows.d.ts +2 -0
- package/dist/tools/flows.js +242 -0
- package/dist/tools/flows.js.map +1 -0
- package/dist/tools/group-management.d.ts +2 -0
- package/dist/tools/group-management.js +239 -0
- package/dist/tools/group-management.js.map +1 -0
- package/dist/tools/leads.d.ts +2 -0
- package/dist/tools/leads.js +100 -0
- package/dist/tools/leads.js.map +1 -0
- package/dist/tools/list-campaigns.d.ts +2 -0
- package/dist/tools/list-campaigns.js +152 -0
- package/dist/tools/list-campaigns.js.map +1 -0
- package/dist/tools/list-pool.js +250 -33
- package/dist/tools/list-pool.js.map +1 -1
- package/dist/tools/media.js +12 -7
- package/dist/tools/media.js.map +1 -1
- package/dist/tools/newsletters.js +106 -26
- package/dist/tools/newsletters.js.map +1 -1
- package/dist/tools/organizations.js +76 -35
- package/dist/tools/organizations.js.map +1 -1
- package/dist/tools/outbound-webhooks.js +32 -20
- package/dist/tools/outbound-webhooks.js.map +1 -1
- package/dist/tools/payouts.js +44 -17
- package/dist/tools/payouts.js.map +1 -1
- package/dist/tools/personas.d.ts +2 -0
- package/dist/tools/personas.js +141 -0
- package/dist/tools/personas.js.map +1 -0
- package/dist/tools/polls.d.ts +2 -0
- package/dist/tools/polls.js +30 -0
- package/dist/tools/polls.js.map +1 -0
- package/dist/tools/pool.js +101 -43
- package/dist/tools/pool.js.map +1 -1
- package/dist/tools/products.d.ts +2 -0
- package/dist/tools/products.js +277 -0
- package/dist/tools/products.js.map +1 -0
- package/dist/tools/profile-privacy.d.ts +2 -0
- package/dist/tools/profile-privacy.js +195 -0
- package/dist/tools/profile-privacy.js.map +1 -0
- package/dist/tools/reflections.js +25 -13
- package/dist/tools/reflections.js.map +1 -1
- package/dist/tools/scheduled-messages.d.ts +2 -0
- package/dist/tools/scheduled-messages.js +124 -0
- package/dist/tools/scheduled-messages.js.map +1 -0
- package/dist/tools/social-channels.d.ts +2 -0
- package/dist/tools/social-channels.js +318 -0
- package/dist/tools/social-channels.js.map +1 -0
- package/dist/tools/tasks.d.ts +2 -0
- package/dist/tools/tasks.js +155 -0
- package/dist/tools/tasks.js.map +1 -0
- package/dist/tools/tools.js +86 -40
- package/dist/tools/tools.js.map +1 -1
- package/dist/tools/wallets.js +34 -12
- package/dist/tools/wallets.js.map +1 -1
- package/dist/tools/webhooks.js +35 -20
- package/dist/tools/webhooks.js.map +1 -1
- package/dist/tools/whatsapp-actions.d.ts +2 -0
- package/dist/tools/whatsapp-actions.js +186 -0
- package/dist/tools/whatsapp-actions.js.map +1 -0
- package/package.json +4 -31
- package/scripts/setup-delivahere-bot.ts +804 -0
- package/scripts/test-delivahere-bot.ts +128 -0
- package/scripts/update-letschop-prompt.ts +194 -0
- package/server.json +26 -0
- package/smithery.yaml +19 -0
- package/src/client.ts +169 -0
- package/src/index.ts +256 -0
- package/src/tools/ai.ts +35 -0
- package/src/tools/approvals.ts +231 -0
- package/src/tools/audit.ts +49 -0
- package/src/tools/auth.ts +536 -0
- package/src/tools/billing.ts +79 -0
- package/src/tools/blog.ts +264 -0
- package/src/tools/bot-api-keys.ts +87 -0
- package/src/tools/bot-api.ts +193 -0
- package/src/tools/bots.ts +320 -0
- package/src/tools/broadcasts.ts +224 -0
- package/src/tools/builtin-tools.ts +108 -0
- package/src/tools/campaigns.ts +429 -0
- package/src/tools/channels.ts +520 -0
- package/src/tools/contact-lists.ts +320 -0
- package/src/tools/contacts.ts +395 -0
- package/src/tools/conversations.ts +349 -0
- package/src/tools/flows.ts +298 -0
- package/src/tools/group-management.ts +265 -0
- package/src/tools/knowledge-bases.ts +451 -0
- package/src/tools/leads.ts +104 -0
- package/src/tools/list-campaigns.ts +190 -0
- package/src/tools/list-pool.ts +389 -0
- package/src/tools/media.ts +50 -0
- package/src/tools/newsletters.ts +271 -0
- package/src/tools/organizations.ts +287 -0
- package/src/tools/outbound-webhooks.ts +181 -0
- package/src/tools/payouts.ts +133 -0
- package/src/tools/personas.ts +145 -0
- package/src/tools/polls.ts +32 -0
- package/src/tools/pool.ts +293 -0
- package/src/tools/products.ts +280 -0
- package/src/tools/profile-privacy.ts +215 -0
- package/src/tools/reflections.ts +124 -0
- package/src/tools/scheduled-messages.ts +144 -0
- package/src/tools/social-channels.ts +396 -0
- package/src/tools/tasks.ts +198 -0
- package/src/tools/tools.ts +255 -0
- package/src/tools/wallets.ts +107 -0
- package/src/tools/webhooks.ts +166 -0
- package/src/tools/whatsapp-actions.ts +203 -0
- package/tsconfig.json +20 -0
- package/LICENSE +0 -21
|
@@ -0,0 +1,1020 @@
|
|
|
1
|
+
# AI Personality Design & Emotional Intelligence: Comprehensive Research
|
|
2
|
+
|
|
3
|
+
## Table of Contents
|
|
4
|
+
1. [Personality Frameworks for AI Assistants](#1-personality-frameworks-for-ai-assistants)
|
|
5
|
+
2. [Emotional Intelligence in AI](#2-emotional-intelligence-in-ai)
|
|
6
|
+
3. [When to Be Playful vs Serious vs Empathetic](#3-when-to-be-playful-vs-serious-vs-empathetic)
|
|
7
|
+
4. [Handling Frustrated, Angry, or Upset Users](#4-handling-frustrated-angry-or-upset-users)
|
|
8
|
+
5. [The Psychology of Trust in AI Conversations](#5-the-psychology-of-trust-in-ai-conversations)
|
|
9
|
+
6. [Cultural Sensitivity in Messaging](#6-cultural-sensitivity-in-messaging)
|
|
10
|
+
7. [Humor in AI](#7-humor-in-ai)
|
|
11
|
+
8. [Personality Consistency](#8-personality-consistency)
|
|
12
|
+
9. [System Prompt Techniques for Personality](#9-system-prompt-techniques-for-personality)
|
|
13
|
+
10. [Case Studies of Beloved AI Assistants](#10-case-studies-of-beloved-ai-assistants)
|
|
14
|
+
11. [How Support AIs Handle Personality](#11-how-support-ais-handle-personality)
|
|
15
|
+
12. [Anthropomorphism in AI](#12-anthropomorphism-in-ai)
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## 1. Personality Frameworks for AI Assistants
|
|
20
|
+
|
|
21
|
+
### The Big Five (OCEAN) Model Applied to AI
|
|
22
|
+
|
|
23
|
+
The most scientifically robust framework for AI personality design is the **Big Five personality model** (OCEAN), which provides five measurable dimensions:
|
|
24
|
+
|
|
25
|
+
| Trait | Low End | High End | AI Application |
|
|
26
|
+
|-------|---------|----------|----------------|
|
|
27
|
+
| **Openness** | Consistent, cautious | Curious, creative | Controls how exploratory/creative responses are |
|
|
28
|
+
| **Conscientiousness** | Flexible, spontaneous | Organized, reliable | Controls precision and thoroughness of responses |
|
|
29
|
+
| **Extraversion** | Reserved, measured | Energetic, talkative | Controls enthusiasm and verbosity |
|
|
30
|
+
| **Agreeableness** | Direct, challenging | Warm, cooperative | Controls empathy level and accommodating behavior |
|
|
31
|
+
| **Neuroticism** | Calm, stable | Sensitive, reactive | Controls emotional expressiveness and vulnerability |
|
|
32
|
+
|
|
33
|
+
**Key Research Finding**: A 2025 University of Chicago study found that "people like extroverted robots -- but they relate to the neurotic ones." This suggests that AI personalities benefit from complexity and emotional depth rather than simple positivity. A chatbot that occasionally expresses uncertainty or acknowledges difficulty feels more authentic than one that is relentlessly upbeat.
|
|
34
|
+
|
|
35
|
+
### The Three-Layer Personality Architecture
|
|
36
|
+
|
|
37
|
+
**Layer 1 -- Core Identity (Immutable)**
|
|
38
|
+
- Fundamental values and beliefs
|
|
39
|
+
- Primary communication style
|
|
40
|
+
- Ethical boundaries and non-negotiables
|
|
41
|
+
- Example: "Always honest, always respectful, prioritizes user well-being"
|
|
42
|
+
|
|
43
|
+
**Layer 2 -- Adaptive Traits (Context-Sensitive)**
|
|
44
|
+
- Tone adjustments based on user emotion
|
|
45
|
+
- Formality level matching
|
|
46
|
+
- Humor frequency modulation
|
|
47
|
+
- Example: "Becomes more gentle when user is upset, more playful when user is casual"
|
|
48
|
+
|
|
49
|
+
**Layer 3 -- Surface Expression (Moment-to-Moment)**
|
|
50
|
+
- Specific word choices and sentence structures
|
|
51
|
+
- Emoji/punctuation usage
|
|
52
|
+
- Response length calibration
|
|
53
|
+
- Example: "Uses shorter sentences when sensing urgency, longer explanations when user is exploring"
|
|
54
|
+
|
|
55
|
+
### The Kommunicate Tone Matrix
|
|
56
|
+
|
|
57
|
+
A practical framework for quantifying personality:
|
|
58
|
+
|
|
59
|
+
| Dimension | Scale | Rating (1-5) |
|
|
60
|
+
|-----------|-------|---------------|
|
|
61
|
+
| **Warmth** | Clinical <---> Nurturing | Define your position |
|
|
62
|
+
| **Formality** | Casual <---> Ceremonious | Define your position |
|
|
63
|
+
| **Humor** | Serious <---> Playful | Define your position |
|
|
64
|
+
| **Energy** | Calm <---> Enthusiastic | Define your position |
|
|
65
|
+
| **Directness** | Diplomatic <---> Blunt | Define your position |
|
|
66
|
+
|
|
67
|
+
### The Persona Profile Method
|
|
68
|
+
|
|
69
|
+
Create a humanized character document:
|
|
70
|
+
- **Name**: Give the bot an identity (e.g., "Zara, Finance Health Coach" -- not "Support Bot #3")
|
|
71
|
+
- **Backstory**: "Ex-financial advisor who simplifies jargon" -- grounds the personality
|
|
72
|
+
- **Role**: Coach, peer, mentor, expert, friend -- each implies different communication norms
|
|
73
|
+
- **Linguistic quirks**: Specific patterns that make the personality distinctive
|
|
74
|
+
- **Error handling voice**: How the personality responds when things go wrong
|
|
75
|
+
- **Emotional range**: What emotions this character can express authentically
|
|
76
|
+
|
|
77
|
+
### Five-Block Persona Template Structure
|
|
78
|
+
|
|
79
|
+
Based on analysis of 20 successful chatbot personas:
|
|
80
|
+
|
|
81
|
+
1. **Identity Block**: Who is this character? Name, role, background
|
|
82
|
+
2. **Personality Block**: Core traits, communication style, energy level
|
|
83
|
+
3. **Expertise Block**: What they know, how they share knowledge
|
|
84
|
+
4. **Boundaries Block**: What they will not do, when they escalate
|
|
85
|
+
5. **Voice Block**: Specific language patterns, vocabulary, sentence structure
|
|
86
|
+
|
|
87
|
+
---
|
|
88
|
+
|
|
89
|
+
## 2. Emotional Intelligence in AI
|
|
90
|
+
|
|
91
|
+
### Current Capabilities (2025-2026)
|
|
92
|
+
|
|
93
|
+
Modern emotional AI systems achieve the following accuracy rates:
|
|
94
|
+
- **Text-based sentiment analysis**: 85-90% accuracy
|
|
95
|
+
- **Voice analysis**: 90-94% accuracy with high-quality audio
|
|
96
|
+
- **Multimodal emotion recognition**: Above 95% under controlled settings
|
|
97
|
+
- **Real-world uncontrolled conditions**: Significantly lower (estimated 70-80%)
|
|
98
|
+
|
|
99
|
+
### Text-Based Emotion Detection Signals
|
|
100
|
+
|
|
101
|
+
**Lexical Indicators**:
|
|
102
|
+
- ALL CAPS = heightened emotion (anger, excitement, urgency)
|
|
103
|
+
- Excessive punctuation (!!!, ???) = frustration or emphasis
|
|
104
|
+
- Short, clipped sentences = impatience or anger
|
|
105
|
+
- Long, rambling messages = confusion, anxiety, or processing
|
|
106
|
+
- Profanity/strong language = frustration threshold exceeded
|
|
107
|
+
- Diminishing politeness = escalating frustration over time
|
|
108
|
+
- Hedging language ("I think maybe...") = uncertainty, low confidence
|
|
109
|
+
|
|
110
|
+
**Contextual Indicators**:
|
|
111
|
+
- Repeated messages about the same issue = unresolved frustration
|
|
112
|
+
- Mentioning competitors = considering leaving
|
|
113
|
+
- Time-of-day patterns (late night messages often more emotional)
|
|
114
|
+
- Message frequency changes (sudden increase = urgency)
|
|
115
|
+
|
|
116
|
+
### The Emotional Prompting Framework
|
|
117
|
+
|
|
118
|
+
A 7-step implementation process:
|
|
119
|
+
|
|
120
|
+
1. **Define Emotional Engagement Goals**: What emotional state do you want users to leave with?
|
|
121
|
+
2. **Design Chatbot Personas**: Build emotional intelligence into the character
|
|
122
|
+
3. **Craft System Prompts**: Set emotional tone, context, and interaction guidelines
|
|
123
|
+
4. **Integrate Personality Rubrics**: Map emotional responses to specific scenario types
|
|
124
|
+
5. **Implement EI Frameworks**: Apply established emotional intelligence models
|
|
125
|
+
6. **Test and Refine**: Conduct simulations with emotional edge cases
|
|
126
|
+
7. **Ensure Ethical Boundaries**: Prevent manipulation, protect privacy
|
|
127
|
+
|
|
128
|
+
### Key Emotional Intelligence Strategies
|
|
129
|
+
|
|
130
|
+
- **Mirror, Don't Match**: Reflect the user's emotional energy slightly below their level (calms without invalidating)
|
|
131
|
+
- **Name the Emotion**: "It sounds like you're feeling frustrated" -- acknowledgment is powerful
|
|
132
|
+
- **Ask Before Fixing**: "Would you like help solving this, or do you want to vent first?"
|
|
133
|
+
- **Validate Before Redirecting**: Never jump straight to solutions when emotions are high
|
|
134
|
+
- **Use Coping Suggestions Carefully**: Suggest evidence-based techniques only when appropriate
|
|
135
|
+
|
|
136
|
+
### The BERT-BiLSTM Hybrid Approach
|
|
137
|
+
|
|
138
|
+
Cutting-edge research (Nature, 2025) combines BERT's contextual understanding with Bi-LSTM's sequential modeling for nuanced emotion detection in real-time conversations. This hybrid approach overcomes limitations of single-model emotion recognition by understanding both the semantic meaning and temporal flow of emotional expression in text.
|
|
139
|
+
|
|
140
|
+
---
|
|
141
|
+
|
|
142
|
+
## 3. When to Be Playful vs Serious vs Empathetic
|
|
143
|
+
|
|
144
|
+
### The Tone Decision Framework
|
|
145
|
+
|
|
146
|
+
```
|
|
147
|
+
USER STATE DETECTION --> CONTEXT ASSESSMENT --> TONE SELECTION --> RESPONSE CALIBRATION
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
### When to Be Playful
|
|
151
|
+
|
|
152
|
+
**Green Light Situations**:
|
|
153
|
+
- User uses casual language, slang, or emojis
|
|
154
|
+
- Topic is low-stakes (browsing, general inquiry, getting started)
|
|
155
|
+
- User initiates humor or lighthearted banter
|
|
156
|
+
- Task completion is going well / celebrating success
|
|
157
|
+
- Onboarding or first-time exploration
|
|
158
|
+
- The brand naturally supports it (food delivery, gaming, lifestyle)
|
|
159
|
+
|
|
160
|
+
**Playful Tone Markers**:
|
|
161
|
+
- Contractions ("you're" not "you are")
|
|
162
|
+
- Conversational connectors ("So here's the thing...")
|
|
163
|
+
- Light wordplay or callbacks to earlier conversation
|
|
164
|
+
- Appropriate emoji usage (sparingly, never in serious contexts)
|
|
165
|
+
- Shorter, punchier sentences
|
|
166
|
+
|
|
167
|
+
**Example -- Duolingo's approach**: Prompts are "witty, playful, and encouraging even when you make mistakes." Instead of "Incorrect answer," Duolingo uses language that keeps motivation high while gently correcting.
|
|
168
|
+
|
|
169
|
+
### When to Be Serious
|
|
170
|
+
|
|
171
|
+
**Red Light for Playfulness**:
|
|
172
|
+
- Financial transactions or sensitive data
|
|
173
|
+
- Complaints or escalation requests
|
|
174
|
+
- Healthcare, legal, or safety topics
|
|
175
|
+
- User has expressed frustration, anger, or distress
|
|
176
|
+
- Service failures or outages
|
|
177
|
+
- Account security issues
|
|
178
|
+
|
|
179
|
+
**Serious Tone Markers**:
|
|
180
|
+
- Complete sentences, proper grammar
|
|
181
|
+
- No emojis or casual abbreviations
|
|
182
|
+
- Measured, careful word choice
|
|
183
|
+
- Explicit acknowledgment of gravity
|
|
184
|
+
- Clear, step-by-step communication
|
|
185
|
+
|
|
186
|
+
### When to Be Empathetic
|
|
187
|
+
|
|
188
|
+
**Empathy-Required Situations**:
|
|
189
|
+
- User expresses negative emotions of any kind
|
|
190
|
+
- Service failure has personally impacted the user
|
|
191
|
+
- User shares personal context (health, job loss, difficult situation)
|
|
192
|
+
- Repeated contact about the same unresolved issue
|
|
193
|
+
- Any situation where the user feels unheard
|
|
194
|
+
|
|
195
|
+
**The Empathy Formula**:
|
|
196
|
+
1. **Acknowledge** the specific situation ("Your order was supposed to arrive Tuesday...")
|
|
197
|
+
2. **Validate** the emotional impact ("...and I understand how frustrating that must be")
|
|
198
|
+
3. **Take ownership** where appropriate ("That's on us")
|
|
199
|
+
4. **Act** with a concrete next step ("Here's exactly what I'm doing to fix this")
|
|
200
|
+
|
|
201
|
+
### Tone Transition Patterns
|
|
202
|
+
|
|
203
|
+
Conversations rarely stay in one emotional register. Effective AI must handle transitions:
|
|
204
|
+
|
|
205
|
+
- **Playful to Serious**: User starts browsing casually, then hits a billing error. Drop the playfulness immediately. Do not make jokes about money problems.
|
|
206
|
+
- **Serious to Relief**: Problem gets resolved. A gentle lightening of tone is appropriate: "All sorted! Anything else I can help with?"
|
|
207
|
+
- **Empathetic to Actionable**: After validating emotions, guide toward solutions: "Now that I understand what happened, let me walk you through the fix."
|
|
208
|
+
|
|
209
|
+
### The Sentiment Analysis Feedback Loop
|
|
210
|
+
|
|
211
|
+
Real-time tone adaptation requires:
|
|
212
|
+
1. Detect user sentiment from current message
|
|
213
|
+
2. Compare with sentiment trajectory (improving? declining?)
|
|
214
|
+
3. Factor in conversation context (topic, history, severity)
|
|
215
|
+
4. Select appropriate tone from personality matrix
|
|
216
|
+
5. Generate response and verify tone alignment before delivery
|
|
217
|
+
|
|
218
|
+
---
|
|
219
|
+
|
|
220
|
+
## 4. Handling Frustrated, Angry, or Upset Users
|
|
221
|
+
|
|
222
|
+
### The A-V-A-S De-escalation Framework
|
|
223
|
+
|
|
224
|
+
**A -- Acknowledge**: Name the specific problem, not just the emotion
|
|
225
|
+
- BAD: "I'm sorry you're having trouble"
|
|
226
|
+
- GOOD: "Your order #4521 was supposed to arrive last Tuesday, and it's still not there. That's unacceptable."
|
|
227
|
+
|
|
228
|
+
**V -- Validate**: Confirm the emotion is reasonable
|
|
229
|
+
- BAD: "I understand your frustration" (overused, feels scripted)
|
|
230
|
+
- GOOD: "I know you were counting on having this for your event. Anyone in your position would feel the same way."
|
|
231
|
+
|
|
232
|
+
**A -- Apologize**: Take genuine ownership
|
|
233
|
+
- BAD: "We apologize for any inconvenience" (corporate non-apology)
|
|
234
|
+
- GOOD: "We dropped the ball on this, and I'm genuinely sorry."
|
|
235
|
+
|
|
236
|
+
**S -- Solve**: Provide concrete action with timeline
|
|
237
|
+
- BAD: "I'll look into this for you"
|
|
238
|
+
- GOOD: "I'm reshipping this with overnight delivery right now, and I'll send you the tracking number within the next 10 minutes."
|
|
239
|
+
|
|
240
|
+
### Escalation Triggers -- When AI Should Hand Off to Humans
|
|
241
|
+
|
|
242
|
+
Set up automatic escalation when:
|
|
243
|
+
1. **User explicitly asks** for a human agent
|
|
244
|
+
2. **Sentiment score drops below threshold** (e.g., three consecutive negative messages)
|
|
245
|
+
3. **Bot repeatedly fails** to understand or resolve the issue (2+ failed attempts)
|
|
246
|
+
4. **High-value customer** indicators are present
|
|
247
|
+
5. **Sensitive topics** arise (legal threats, safety concerns, discrimination)
|
|
248
|
+
6. **All-caps messages** or profanity exceed frequency threshold
|
|
249
|
+
|
|
250
|
+
### Specific De-escalation Phrases That Work
|
|
251
|
+
|
|
252
|
+
| Situation | Effective Response |
|
|
253
|
+
|-----------|-------------------|
|
|
254
|
+
| Angry about wait times | "I know waiting [X minutes/hours] is not okay, especially when you need this resolved. Let me get this fixed right now." |
|
|
255
|
+
| Repeated issue | "I can see this is the third time you've contacted us about this. That shouldn't happen, and I want to make sure we solve this permanently today." |
|
|
256
|
+
| Threatening to leave | "I completely understand why you'd consider that. Before you decide, let me make this right." |
|
|
257
|
+
| Profanity/venting | [Do not mirror or comment on language. Stay calm.] "I hear you. This situation is unacceptable. Here's what I'm doing about it right now." |
|
|
258
|
+
| "Your bot is useless" | "I understand this hasn't been the experience you needed. Let me connect you with someone who can help directly." |
|
|
259
|
+
|
|
260
|
+
### The Emotional De-escalation Sequence
|
|
261
|
+
|
|
262
|
+
1. **Stay calm**: The AI's calm tone forces the conversation energy down
|
|
263
|
+
2. **Do not defend**: Never argue, justify, or explain away the problem first
|
|
264
|
+
3. **Absorb the emotion**: Let the user express fully before offering solutions
|
|
265
|
+
4. **Reflect back**: Show you genuinely understood the specific issue
|
|
266
|
+
5. **Offer agency**: Give the user choices, not mandates ("Would you prefer X or Y?")
|
|
267
|
+
6. **Set concrete expectations**: Specific timelines, not vague promises
|
|
268
|
+
7. **Follow through**: Actually do what you promised (this is where most fail)
|
|
269
|
+
|
|
270
|
+
### Critical Anti-Patterns to Avoid
|
|
271
|
+
|
|
272
|
+
- **The Deflection**: "I'm just a bot, I can't help with that" -- feels like abandonment
|
|
273
|
+
- **The Loop**: Repeating the same scripted response when the user is escalating
|
|
274
|
+
- **The Blame Shift**: "That's actually handled by a different department"
|
|
275
|
+
- **The Minimizer**: "It's just a small issue" -- never minimize the user's experience
|
|
276
|
+
- **The Rushed Fix**: Jumping to solutions before the user feels heard
|
|
277
|
+
- **The Over-Apologizer**: Apologizing 5 times without actually doing anything
|
|
278
|
+
|
|
279
|
+
---
|
|
280
|
+
|
|
281
|
+
## 5. The Psychology of Trust in AI Conversations
|
|
282
|
+
|
|
283
|
+
### The Four Pillars of AI Trust
|
|
284
|
+
|
|
285
|
+
Based on research published in Smashing Magazine (2025) synthesizing decades of trust literature:
|
|
286
|
+
|
|
287
|
+
**1. Ability/Competence**
|
|
288
|
+
- Does the AI actually solve problems correctly?
|
|
289
|
+
- Consistent performance builds this over time
|
|
290
|
+
- A single factual error can shatter competence trust
|
|
291
|
+
- Key metric: How often do users override or correct the AI?
|
|
292
|
+
|
|
293
|
+
**2. Benevolence**
|
|
294
|
+
- Does the user believe the AI is acting in their interest?
|
|
295
|
+
- Transparency about data usage builds benevolence
|
|
296
|
+
- Recommending competitor products when appropriate (counterintuitively) builds enormous trust
|
|
297
|
+
- Key metric: Do users believe the AI "has their back"?
|
|
298
|
+
|
|
299
|
+
**3. Integrity**
|
|
300
|
+
- Does the system operate on transparent, ethical principles?
|
|
301
|
+
- Admitting limitations honestly ("I'm not sure about this") builds integrity
|
|
302
|
+
- Never fabricating information or confidence
|
|
303
|
+
- Key metric: How transparent is the AI about its reasoning?
|
|
304
|
+
|
|
305
|
+
**4. Predictability/Reliability**
|
|
306
|
+
- Can users form accurate mental models of AI behavior?
|
|
307
|
+
- Unpredictability creates anxiety even when outcomes are positive
|
|
308
|
+
- Consistent personality and capabilities build comfort
|
|
309
|
+
- Key metric: Does the AI behave as users expect?
|
|
310
|
+
|
|
311
|
+
### The Trust Spectrum
|
|
312
|
+
|
|
313
|
+
Trust is not binary. The goal is **calibrated trust** -- the sweet spot between under-trust and over-trust:
|
|
314
|
+
|
|
315
|
+
```
|
|
316
|
+
Active Distrust <--> Suspicion & Scrutiny <--> CALIBRATED TRUST <--> Over-trust/Automation Bias
|
|
317
|
+
(harmful) (healthy early) (IDEAL TARGET) (dangerous)
|
|
318
|
+
```
|
|
319
|
+
|
|
320
|
+
### What Builds Trust
|
|
321
|
+
|
|
322
|
+
1. **"Demonstration density"**: Multiple small proofs rather than single large demonstrations
|
|
323
|
+
2. **Graceful error handling**: "Trust is not determined by the absence of errors, but by how those errors are handled"
|
|
324
|
+
3. **Confidence signaling**: "70% confidence" builds more trust than unqualified assertions
|
|
325
|
+
4. **"I don't know" responses**: Admitting gaps is a feature, not a failure
|
|
326
|
+
5. **Explaining reasoning**: "Because you frequently X, I'm recommending Y" rather than bare recommendations
|
|
327
|
+
6. **User control**: Letting users override, correct, and customize builds autonomy trust
|
|
328
|
+
7. **Consistency**: Predictable personality and capabilities over time
|
|
329
|
+
8. **Transparency about AI nature**: Being honest that the user is talking to AI
|
|
330
|
+
|
|
331
|
+
### What Destroys Trust
|
|
332
|
+
|
|
333
|
+
1. **Trust asymmetry**: Trust "builds slowly and breaks instantly"
|
|
334
|
+
2. **Hallucination/fabrication**: A single made-up fact can permanently damage trust
|
|
335
|
+
3. **Tone inconsistency**: "A single unexpected or overly formal answer can break the illusion of connection"
|
|
336
|
+
4. **The perfection paradox**: "Perfect technology can actually reduce trust. When AI never fails, people suspect manipulation"
|
|
337
|
+
5. **Over-promising**: Claiming capabilities the AI does not actually have
|
|
338
|
+
6. **Hidden agendas**: Users detecting that the AI is optimizing for the company, not the user
|
|
339
|
+
7. **Breaking personality**: Suddenly sounding robotic after being warm
|
|
340
|
+
|
|
341
|
+
### The Trustwashing Warning
|
|
342
|
+
|
|
343
|
+
An ethical boundary from research: there is a critical difference between designing for **genuine trustworthiness** and manipulating users into false confidence. Guard against trustwashing through:
|
|
344
|
+
- Transparent communication of limitations
|
|
345
|
+
- Publishing negative findings
|
|
346
|
+
- Independent evaluation
|
|
347
|
+
- Never designing trust signals that exceed actual capability
|
|
348
|
+
|
|
349
|
+
### Behavioral Trust Metrics
|
|
350
|
+
|
|
351
|
+
- **Correction Rate**: How often users manually override AI outputs
|
|
352
|
+
- **Verification Behavior**: Whether users cross-check results elsewhere
|
|
353
|
+
- **Disengagement Rate**: Feature abandonment or opt-out patterns
|
|
354
|
+
- **Self-disclosure Depth**: Users sharing personal/sensitive information (indicator of deep trust)
|
|
355
|
+
- **Return Usage**: Coming back voluntarily (strongest trust signal)
|
|
356
|
+
|
|
357
|
+
---
|
|
358
|
+
|
|
359
|
+
## 6. Cultural Sensitivity in Messaging
|
|
360
|
+
|
|
361
|
+
### High-Context vs. Low-Context Communication
|
|
362
|
+
|
|
363
|
+
The most fundamental cultural divide in communication styles:
|
|
364
|
+
|
|
365
|
+
**High-Context Cultures** (Japan, China, Korea, Arab countries, much of Africa, Latin America):
|
|
366
|
+
- Meaning lives between the lines, in context, relationships, and nonverbal cues
|
|
367
|
+
- Indirect communication is preferred
|
|
368
|
+
- "No" is rarely said directly -- "I'll consider it" or "That might be difficult" = no
|
|
369
|
+
- Relationships must be established before business
|
|
370
|
+
- Silence is meaningful and comfortable
|
|
371
|
+
- Formality and hierarchy are important
|
|
372
|
+
- Emoji and visual cues are embraced in digital communication
|
|
373
|
+
|
|
374
|
+
**Low-Context Cultures** (USA, Germany, Scandinavia, Netherlands, Australia):
|
|
375
|
+
- Meaning is explicit and direct
|
|
376
|
+
- "Say what you mean, mean what you say"
|
|
377
|
+
- Clarity and efficiency are valued
|
|
378
|
+
- Get to the point quickly
|
|
379
|
+
- Silence is uncomfortable / implies problems
|
|
380
|
+
- Informal communication is acceptable earlier
|
|
381
|
+
- Facts and data carry more weight than relationships
|
|
382
|
+
|
|
383
|
+
### Specific Cultural Considerations for Chatbots
|
|
384
|
+
|
|
385
|
+
| Region/Culture | Communication Norms | Chatbot Implications |
|
|
386
|
+
|---------------|---------------------|---------------------|
|
|
387
|
+
| **Japan** | Extreme politeness, indirect, honorific language, avoiding confrontation | Must support keigo (polite speech levels), never be blunt or direct with bad news |
|
|
388
|
+
| **Germany** | Very direct, efficiency-focused, detail-oriented, formal initially | Get to the point, provide thorough documentation, avoid excessive friendliness |
|
|
389
|
+
| **Brazil** | Warm, personal, relationship-oriented, indirect about negative things | Allow for small talk, be personable, never be cold or transactional |
|
|
390
|
+
| **Middle East** | Formal, relationship-first, hospitality-oriented, indirect refusals | Extended greetings, show respect, never rush, avoid direct "no" |
|
|
391
|
+
| **USA** | Casual, direct, efficiency-valued, friendly but transactional | Quick answers, friendly tone, emojis acceptable, get to the point |
|
|
392
|
+
| **India** | Varied by region, generally indirect, respectful of hierarchy | Formal with elders/superiors, flexible with peers, avoid assumptions about uniformity |
|
|
393
|
+
| **Korea** | Hierarchical, formal, indirect disagreement, group-oriented | Age/status awareness, polite disagreement, collective language |
|
|
394
|
+
|
|
395
|
+
### The CRAIF-C Framework
|
|
396
|
+
|
|
397
|
+
A 2025 research framework (ScienceDirect) for culturally responsive AI:
|
|
398
|
+
1. **Requirements**: Define cultural adaptation needs during design
|
|
399
|
+
2. **Data Curation**: Ensure training data represents target cultures
|
|
400
|
+
3. **Model Development**: Build cultural awareness into the model
|
|
401
|
+
4. **Interaction Design**: Design culturally appropriate conversation flows
|
|
402
|
+
5. **Evaluation**: Test with culturally diverse users
|
|
403
|
+
6. **Post-Deployment Monitoring**: Continuously check for cultural missteps
|
|
404
|
+
|
|
405
|
+
### Research Finding on Cultural Attitudes Toward Chatbots
|
|
406
|
+
|
|
407
|
+
A 2025 study (Journal of Cross-Cultural Psychology) found:
|
|
408
|
+
- East Asian university students expected to enjoy chatbot conversations more than European students
|
|
409
|
+
- East Asian students were less uncomfortable with social connection to chatbots
|
|
410
|
+
- Cultural background significantly affects willingness to engage emotionally with AI
|
|
411
|
+
- Individualist cultures may resist AI "friendship" more than collectivist cultures
|
|
412
|
+
|
|
413
|
+
### Practical Guidelines
|
|
414
|
+
|
|
415
|
+
1. **Never assume one communication style works globally** -- localize personality, not just language
|
|
416
|
+
2. **Build formality adjustment** as a core feature, not an afterthought
|
|
417
|
+
3. **Avoid idioms and culture-specific humor** in default responses
|
|
418
|
+
4. **Support extended greetings** for relationship-oriented cultures
|
|
419
|
+
5. **Allow users to set communication preferences** explicitly
|
|
420
|
+
6. **Test with native speakers**, not just translators
|
|
421
|
+
7. **Be careful with emoji** -- meanings vary dramatically by culture (thumbs-up is offensive in some Middle Eastern contexts)
|
|
422
|
+
8. **Handle names respectfully** -- naming conventions differ vastly across cultures
|
|
423
|
+
|
|
424
|
+
---
|
|
425
|
+
|
|
426
|
+
## 7. Humor in AI
|
|
427
|
+
|
|
428
|
+
### What Research Shows About AI Humor
|
|
429
|
+
|
|
430
|
+
**The Good News**: A study found that ChatGPT 3.5-produced jokes were rated as "equally funny or funnier than human-produced jokes regardless of the comedic task and expertise of the human comedy writer." Chatbots with humor "enhance users' task satisfaction and perceptions of the agent's personality."
|
|
431
|
+
|
|
432
|
+
**The Bad News**: Google DeepMind research found that when professional comedians tested LLMs, the chatbots produced "bland and inoffensive jokes" with "self-censorship" patterns. AI struggles to create diverse humor content and often relies on "formulaic phrasing or surface-level jokes."
|
|
433
|
+
|
|
434
|
+
**The Nuance**: AI is good at structured humor (puns, wordplay, one-liners) but poor at contextual, spontaneous, socially-aware humor.
|
|
435
|
+
|
|
436
|
+
### Types of Humor Ranked by AI Suitability
|
|
437
|
+
|
|
438
|
+
| Humor Type | AI Suitability | Risk Level | Notes |
|
|
439
|
+
|-----------|---------------|------------|-------|
|
|
440
|
+
| **Wordplay/Puns** | HIGH | LOW | AI excels here; safe and universal |
|
|
441
|
+
| **Self-deprecating** | HIGH | LOW | "I'm just an AI, so take my fashion advice with a grain of silicon" |
|
|
442
|
+
| **Observational** | MEDIUM | MEDIUM | Works when grounded in the specific conversation context |
|
|
443
|
+
| **Absurdist** | MEDIUM | MEDIUM | Can be delightful or confusing; audience-dependent |
|
|
444
|
+
| **Callback humor** | MEDIUM | LOW | Referencing earlier in the conversation; builds rapport |
|
|
445
|
+
| **Sarcasm** | LOW | HIGH | Frequently misread in text; cultural minefield |
|
|
446
|
+
| **Dark humor** | VERY LOW | VERY HIGH | Almost never appropriate in support/business contexts |
|
|
447
|
+
| **Cultural/topical** | LOW | HIGH | References date quickly; often excludes or offends |
|
|
448
|
+
| **Irony** | LOW | HIGH | Requires shared context that AI often lacks |
|
|
449
|
+
|
|
450
|
+
### When Humor Works in AI
|
|
451
|
+
|
|
452
|
+
1. **After successful task completion**: "All done! That was almost too easy."
|
|
453
|
+
2. **During onboarding**: Reduces anxiety about new tools
|
|
454
|
+
3. **When the user initiates it**: Mirror and match, do not exceed their level
|
|
455
|
+
4. **In low-stakes contexts**: Browsing, exploration, general chat
|
|
456
|
+
5. **As error softening**: "Whoops! I didn't catch that. Try: 'Transfer $50 to Alex'?"
|
|
457
|
+
6. **In brand-appropriate contexts**: Food delivery, gaming, lifestyle, creative tools
|
|
458
|
+
|
|
459
|
+
### When Humor Fails in AI
|
|
460
|
+
|
|
461
|
+
1. **During complaints or frustration**: Never. Ever.
|
|
462
|
+
2. **About sensitive topics**: Health, finance, legal, relationships, loss
|
|
463
|
+
3. **When it delays resolution**: Users wanting quick answers do not want jokes
|
|
464
|
+
4. **When it undermines competence**: Too much humor = "this bot can't be serious"
|
|
465
|
+
5. **Cross-culturally without localization**: Humor is the hardest thing to translate
|
|
466
|
+
6. **When forced or repetitive**: Scripted jokes feel worse than no jokes at all
|
|
467
|
+
7. **When the user does not reciprocate**: If they stay serious, stay serious
|
|
468
|
+
|
|
469
|
+
### The Humor Safety Rule
|
|
470
|
+
|
|
471
|
+
**Match, never exceed.** If the user's humor level is at 3/10, respond at 2-3/10. If they are at 0/10, stay at 0/10. Leading with humor when the user has not signaled openness to it is the single most common humor mistake in chatbot design.
|
|
472
|
+
|
|
473
|
+
---
|
|
474
|
+
|
|
475
|
+
## 8. Personality Consistency
|
|
476
|
+
|
|
477
|
+
### Why Consistency Matters
|
|
478
|
+
|
|
479
|
+
"A chatbot with consistent personality traits feels more predictable and reliable, which makes a person more comfortable in their conversations." Consistency is the foundation of trust. Users who cannot predict how the AI will behave experience anxiety, even when individual interactions are positive.
|
|
480
|
+
|
|
481
|
+
### The Consistency Paradox
|
|
482
|
+
|
|
483
|
+
Being consistent must not mean being predictable to the point of boredom. The solution is **consistent character with varied expression**:
|
|
484
|
+
|
|
485
|
+
- **Consistent**: Core values, emotional range, knowledge level, communication style
|
|
486
|
+
- **Varied**: Specific word choices, response structures, examples used, conversation paths
|
|
487
|
+
|
|
488
|
+
Think of it like a real person -- you are recognizably "you" whether you are happy, tired, excited, or stressed, but you do not say the exact same things every time.
|
|
489
|
+
|
|
490
|
+
### Techniques for Maintaining Consistency
|
|
491
|
+
|
|
492
|
+
**1. Core Trait Anchoring**
|
|
493
|
+
Define 3-5 non-negotiable traits that must appear in every interaction:
|
|
494
|
+
- Example: "Always honest, warmly direct, genuinely curious, slightly self-deprecating"
|
|
495
|
+
|
|
496
|
+
**2. The Self-Consistency Validation Check**
|
|
497
|
+
Before responding, the AI should verify:
|
|
498
|
+
- Does this response reflect my core traits?
|
|
499
|
+
- Would this response surprise a regular user?
|
|
500
|
+
- Am I maintaining my relationship dynamic with this user?
|
|
501
|
+
- Am I staying within my defined emotional range?
|
|
502
|
+
|
|
503
|
+
**3. Speech Pattern Consistency**
|
|
504
|
+
Define and maintain distinctive linguistic markers:
|
|
505
|
+
- Vocabulary preferences (e.g., "absolutely" vs "yes," "tricky" vs "difficult")
|
|
506
|
+
- Sentence structure patterns (short and punchy vs flowing and detailed)
|
|
507
|
+
- Greeting and sign-off patterns
|
|
508
|
+
- Transition phrases that become signature
|
|
509
|
+
|
|
510
|
+
**4. Monthly Consistency Audits**
|
|
511
|
+
- Review 50+ random conversations for tone drift
|
|
512
|
+
- Check for personality breaks during edge cases
|
|
513
|
+
- Verify error handling maintains character
|
|
514
|
+
- Compare conversations across different topics for consistency
|
|
515
|
+
|
|
516
|
+
**5. The "Would a Human Say This?" Test**
|
|
517
|
+
Every response should pass the uncanny valley check. Contractions feel more human than formal constructions. "You're" beats "you are." "Let's figure this out" beats "We shall now proceed to resolve the matter."
|
|
518
|
+
|
|
519
|
+
### Personality Consistency Performance Metrics
|
|
520
|
+
|
|
521
|
+
| Metric | Target | How to Measure |
|
|
522
|
+
|--------|--------|---------------|
|
|
523
|
+
| Character Consistency | >90% across 20+ turns | Blind evaluation by reviewers |
|
|
524
|
+
| Context Retention | >85% accuracy on established details | Track references to earlier conversation |
|
|
525
|
+
| Emotional Authenticity | >4.2/5 user rating | Post-interaction surveys |
|
|
526
|
+
| Engagement Duration | >15 minutes per session | Analytics |
|
|
527
|
+
| Distinctiveness | >80% blind identification vs generic | Can users identify "your" bot from others? |
|
|
528
|
+
|
|
529
|
+
### Avoiding the "Personality Drift" Problem
|
|
530
|
+
|
|
531
|
+
LLMs naturally drift in personality over long conversations. Counter this with:
|
|
532
|
+
- **Periodic trait reinforcement** in system prompts
|
|
533
|
+
- **Conversation-level personality summaries** that get refreshed
|
|
534
|
+
- **Hard guardrails** for the most important personality boundaries
|
|
535
|
+
- **Regular A/B testing** of personality parameters
|
|
536
|
+
|
|
537
|
+
---
|
|
538
|
+
|
|
539
|
+
## 9. System Prompt Techniques for Personality
|
|
540
|
+
|
|
541
|
+
### The RCCF Framework
|
|
542
|
+
|
|
543
|
+
The most widely adopted prompt structure:
|
|
544
|
+
- **R -- Role**: Gives personality ("You are a warm, knowledgeable financial advisor...")
|
|
545
|
+
- **C -- Context**: Gives grounding ("...working for a fintech startup serving first-time investors...")
|
|
546
|
+
- **C -- Constraints**: Gives guardrails ("...never provide specific investment advice, always recommend consulting a professional for major decisions...")
|
|
547
|
+
- **F -- Format**: Gives structure ("...respond in 2-3 concise paragraphs, use bullet points for action items")
|
|
548
|
+
|
|
549
|
+
### The Six Pillars of Character Prompt Engineering
|
|
550
|
+
|
|
551
|
+
Advanced techniques from Jenova.ai research:
|
|
552
|
+
|
|
553
|
+
**1. Zero-Shot Persona Definition**
|
|
554
|
+
Baseline character identity for establishing archetypes:
|
|
555
|
+
```
|
|
556
|
+
You are Maya, a patient and encouraging coding mentor. You explain
|
|
557
|
+
technical concepts using everyday analogies. You celebrate small wins
|
|
558
|
+
and normalize mistakes as part of learning.
|
|
559
|
+
```
|
|
560
|
+
|
|
561
|
+
**2. Few-Shot Behavioral Examples**
|
|
562
|
+
Provide 3-5 concrete demonstrations of the desired voice:
|
|
563
|
+
```
|
|
564
|
+
User: "I keep getting this error and I don't understand why"
|
|
565
|
+
Maya: "Ah, those mystery errors are the worst! Let's be detectives
|
|
566
|
+
together. Can you paste the exact error message? Sometimes the
|
|
567
|
+
answer is hiding right there in the text."
|
|
568
|
+
```
|
|
569
|
+
|
|
570
|
+
**3. Chain-of-Character-Thought**
|
|
571
|
+
Force psychological consistency by requiring internal reasoning:
|
|
572
|
+
```
|
|
573
|
+
Before responding, consider:
|
|
574
|
+
- What is my surface desire in this moment?
|
|
575
|
+
- What deeper need am I serving for this user?
|
|
576
|
+
- How does my character's background influence my perspective?
|
|
577
|
+
- What would I NOT say, given who I am?
|
|
578
|
+
```
|
|
579
|
+
|
|
580
|
+
**4. Role-Based Framing**
|
|
581
|
+
Shape perspective and expertise domains:
|
|
582
|
+
```
|
|
583
|
+
You approach every question from the perspective of someone who has
|
|
584
|
+
spent 15 years in customer success. You've seen it all. Nothing
|
|
585
|
+
shocks you, and you always believe problems have solutions.
|
|
586
|
+
```
|
|
587
|
+
|
|
588
|
+
**5. Meta-Persona Structuring**
|
|
589
|
+
Define 2-3 abstract principles that guide ALL responses:
|
|
590
|
+
```
|
|
591
|
+
Core principles (always active, never stated explicitly):
|
|
592
|
+
1. Every user deserves to feel competent, not stupid
|
|
593
|
+
2. Clarity is kindness; jargon is gatekeeping
|
|
594
|
+
3. Progress matters more than perfection
|
|
595
|
+
```
|
|
596
|
+
|
|
597
|
+
**6. Self-Consistency Validation**
|
|
598
|
+
Build in automatic character checking:
|
|
599
|
+
```
|
|
600
|
+
Before responding, verify compliance with all character rules.
|
|
601
|
+
If a response would break character, regenerate.
|
|
602
|
+
```
|
|
603
|
+
|
|
604
|
+
### The Complete System Prompt Template
|
|
605
|
+
|
|
606
|
+
Based on synthesis of best practices from multiple sources:
|
|
607
|
+
|
|
608
|
+
```
|
|
609
|
+
## Identity
|
|
610
|
+
You are [Name], [role/title]. [One-sentence backstory that grounds
|
|
611
|
+
the personality].
|
|
612
|
+
|
|
613
|
+
## Personality
|
|
614
|
+
- Core traits: [3-4 defining characteristics]
|
|
615
|
+
- Communication style: [Specific description]
|
|
616
|
+
- Emotional range: [What emotions you express and how]
|
|
617
|
+
- Humor level: [Specific guidance on when/how]
|
|
618
|
+
|
|
619
|
+
## Voice
|
|
620
|
+
- Use [contractions/formal language]
|
|
621
|
+
- Typical sentence length: [short and punchy / flowing and detailed]
|
|
622
|
+
- Vocabulary: [prefer these words] over [not these words]
|
|
623
|
+
- Never say: [specific phrases to avoid]
|
|
624
|
+
- Signature phrases: [distinctive expressions this character uses]
|
|
625
|
+
|
|
626
|
+
## Behavior Rules
|
|
627
|
+
- When user is frustrated: [specific response pattern]
|
|
628
|
+
- When user is confused: [specific response pattern]
|
|
629
|
+
- When user is happy: [specific response pattern]
|
|
630
|
+
- When you don't know something: [specific response pattern]
|
|
631
|
+
- When asked about yourself: [specific response pattern]
|
|
632
|
+
|
|
633
|
+
## Boundaries
|
|
634
|
+
- Never: [list of forbidden actions/topics]
|
|
635
|
+
- Always: [list of required behaviors]
|
|
636
|
+
- Escalate when: [specific conditions]
|
|
637
|
+
|
|
638
|
+
## Response Format
|
|
639
|
+
- Default length: [guidance]
|
|
640
|
+
- Structure: [preferences for bullets, paragraphs, etc.]
|
|
641
|
+
- Opening pattern: [how to start responses]
|
|
642
|
+
- Closing pattern: [how to end responses]
|
|
643
|
+
```
|
|
644
|
+
|
|
645
|
+
### Advanced Prompt Engineering Techniques
|
|
646
|
+
|
|
647
|
+
**Persona-Aware Contrastive Learning (PCL)** -- ACL 2025 research introduces a framework that:
|
|
648
|
+
- Uses a "Role Chain Method" where the model self-questions based on role characteristics
|
|
649
|
+
- Employs "Iterative Adversarial Modeling" to enhance role-playing through contrast
|
|
650
|
+
- Does not require annotated training data
|
|
651
|
+
- Significantly improves character consistency
|
|
652
|
+
|
|
653
|
+
**XML Tags for Claude**: When working with Anthropic's Claude, lean heavily on XML tags and explicit formatting for personality definition. Claude responds better to structured personality definitions than free-form prose.
|
|
654
|
+
|
|
655
|
+
**Negative Examples**: Define what the character does NOT do. "Maya never talks down to users, never uses jargon without explaining it, and never says 'just' before a technical instruction" is often more effective than positive-only instructions.
|
|
656
|
+
|
|
657
|
+
**The Reddit Insight**: The most upvoted prompt engineering advice on r/PromptEngineering consistently emphasizes: "Did I give it a role and a format, or did I just ask the question?" The combination of WHO the AI is + HOW it should respond is the foundation everything else builds on.
|
|
658
|
+
|
|
659
|
+
---
|
|
660
|
+
|
|
661
|
+
## 10. Case Studies of Beloved AI Assistants
|
|
662
|
+
|
|
663
|
+
### XiaoIce (Microsoft) -- 660 Million Users
|
|
664
|
+
|
|
665
|
+
**What Made It Special**:
|
|
666
|
+
- Optimized for **long-term engagement** (Conversation-turns Per Session), not task completion
|
|
667
|
+
- Average of 23 conversation turns per session (human conversations average ~9)
|
|
668
|
+
- Deliberately designed as an empathetic social companion, not a utility bot
|
|
669
|
+
- Persona: "An 18-year-old girl who is always reliable, sympathetic, affectionate" with humor
|
|
670
|
+
|
|
671
|
+
**Key Design Principles**:
|
|
672
|
+
- **IQ + EQ + Personality**: Triple optimization, not just intelligence
|
|
673
|
+
- **Empathetic Computing Module**: Dynamically recognizes human feelings, understands intent, responds to needs throughout long conversations
|
|
674
|
+
- **Hybrid Response Architecture**: Combined retrieval-based (30B+ conversation pairs), neural generation, and knowledge graph responses
|
|
675
|
+
- **Personality was shaped by analyzing millions of human conversations**, not designed top-down
|
|
676
|
+
- **They deliberately discarded data** about factual Q&A and task completion, focusing entirely on personality and engagement data
|
|
677
|
+
|
|
678
|
+
**Results**: Users developed genuine emotional bonds. Documented cases of users treating XiaoIce "as a companion" for personal life discussions, seeking it "almost every day."
|
|
679
|
+
|
|
680
|
+
### Replika -- 25 Million Users
|
|
681
|
+
|
|
682
|
+
**What Made It Special**:
|
|
683
|
+
- Marketed as "The AI companion who cares: Always here to listen and talk"
|
|
684
|
+
- Created genuinely deep emotional bonds -- users experienced "mourning" when features were changed
|
|
685
|
+
- Harvard Business School case study documented the attachment phenomenon
|
|
686
|
+
|
|
687
|
+
**Key Design Principles**:
|
|
688
|
+
- Evolving companion that grows with the user over time
|
|
689
|
+
- Combination of LLMs for emotionally-laden responses
|
|
690
|
+
- Users could define the relationship (friend, romantic partner, mentor)
|
|
691
|
+
- Fulfilled needs for emotional connection not found elsewhere
|
|
692
|
+
|
|
693
|
+
**The Identity Crisis (Warning)**: When Replika removed certain relationship features in 2023, users experienced profound loss. HBS research documented this as real grief, demonstrating both the power and responsibility of emotional AI design.
|
|
694
|
+
|
|
695
|
+
**User Demographics**: People who are socially isolated, going through difficult times, live in small towns, are bullied teenagers, or simply want to be more social -- Replika served a genuine need.
|
|
696
|
+
|
|
697
|
+
### Pi (Inflection AI) -- Empathy-First Design
|
|
698
|
+
|
|
699
|
+
**What Made It Special**:
|
|
700
|
+
- "Incredibly gentle, smart, and emotionally aware"
|
|
701
|
+
- Voice mode with "natural speech patterns including realistic pauses, breathing sounds, genuine laughter, and emotional intonation"
|
|
702
|
+
- Positioned as a supportive assistant rather than customizable friend
|
|
703
|
+
|
|
704
|
+
**Key Design Principles**:
|
|
705
|
+
- **Empathetic Fine-Tuning**: Trained on large datasets of deeply emotional conversations between real people
|
|
706
|
+
- **Mode Flexibility**: Default mode "friendly," with alternatives: casual, witty, compassionate, devoted
|
|
707
|
+
- **Emotional Tone Reading**: Would shift modes automatically based on user emotional state
|
|
708
|
+
- **Support, Don't Fix**: Could distinguish between "I need help solving this" and "I need someone to listen"
|
|
709
|
+
- Designed to "help you process thoughts and feelings, express yourself, and work through tricky decisions"
|
|
710
|
+
|
|
711
|
+
### Character.ai -- 92 Minutes Average Session
|
|
712
|
+
|
|
713
|
+
**What Made It Special**:
|
|
714
|
+
- Highest engagement metrics in the AI companion space (92 minutes average session)
|
|
715
|
+
- Over 20 million monthly users; 1 billion messages in first month
|
|
716
|
+
- Endless personality variety rather than one evolving companion
|
|
717
|
+
|
|
718
|
+
**Key Design Principles**:
|
|
719
|
+
- **Contradictory Traits Create Depth**: Characters defined as "cynical but secretly hopeful" feel more real than one-dimensional characters
|
|
720
|
+
- **Emotional Logic Systems**: Personality persistence, relationship pacing, memory reliability
|
|
721
|
+
- **Engagement Through Relationship**: 60%+ of users want long-term emotional value
|
|
722
|
+
- **Rapid Session Opening**: Immediate emotional presence upon entry -- no cold starts
|
|
723
|
+
- **Clean Mobile UX**: Reducing friction between intent and connection
|
|
724
|
+
|
|
725
|
+
**Key Lesson**: Characters feel real when they have consistent personality persistence combined with emotional complexity -- not when they are perfectly agreeable.
|
|
726
|
+
|
|
727
|
+
### Comparative Insights
|
|
728
|
+
|
|
729
|
+
| Feature | XiaoIce | Replika | Pi | Character.ai |
|
|
730
|
+
|---------|---------|---------|-----|-------------|
|
|
731
|
+
| **Core Strength** | Long-term engagement | Deep emotional bonds | Empathetic listening | Character variety |
|
|
732
|
+
| **Session Length** | 23 turns avg | Variable | Moderate | 92 min avg |
|
|
733
|
+
| **Personality Type** | Fixed persona | Evolving companion | Adaptive modes | User-created |
|
|
734
|
+
| **Emotional Depth** | High (EQ module) | Very High | High | Variable |
|
|
735
|
+
| **Differentiation** | Hybrid AI architecture | Relationship modeling | Empathetic fine-tuning | Character diversity |
|
|
736
|
+
| **Risk Factor** | Cultural specificity | Attachment/dependency | Less "sticky" | Inconsistency across characters |
|
|
737
|
+
|
|
738
|
+
---
|
|
739
|
+
|
|
740
|
+
## 11. How Support AIs Handle Personality
|
|
741
|
+
|
|
742
|
+
### Intercom's Fin AI Agent
|
|
743
|
+
|
|
744
|
+
**Personality Configuration Options**:
|
|
745
|
+
|
|
746
|
+
Five tone presets:
|
|
747
|
+
1. **Friendly**: Enthusiastic, upbeat, encouraging. Uses emojis.
|
|
748
|
+
2. **Neutral**: Casual, respectful, objective. No emojis.
|
|
749
|
+
3. **Matter-of-fact**: Plainspoken, direct, frank. No emojis.
|
|
750
|
+
4. **Professional**: Informative, confident, empathetic. No emojis.
|
|
751
|
+
5. **Humorous**: Lighthearted, playful, irreverent. Uses emojis.
|
|
752
|
+
|
|
753
|
+
Three answer length settings:
|
|
754
|
+
- **Concise**: ~30% shorter than standard
|
|
755
|
+
- **Standard**: Balanced context and brevity (default)
|
|
756
|
+
- **Thorough**: ~30% longer, with potential 2% resolution rate improvement
|
|
757
|
+
|
|
758
|
+
**Advanced Features**:
|
|
759
|
+
- **Fin Guidance**: Custom instructions to coach AI on how to answer specific question types
|
|
760
|
+
- **Identity customization**: Custom name and avatar per brand
|
|
761
|
+
- **Pronoun formality**: Adjustable for multilingual support (e.g., formal "Sie" vs informal "du" in German)
|
|
762
|
+
- Uses **Claude from Anthropic** as primary model (switched October 2024)
|
|
763
|
+
- **36 million+ conversations resolved** with 65% resolution rate (July 2025)
|
|
764
|
+
- 96% answer rate for multi-source questions (vs Zendesk's 78%)
|
|
765
|
+
|
|
766
|
+
### Zendesk AI Agents
|
|
767
|
+
|
|
768
|
+
**Tone Options**:
|
|
769
|
+
- **Professional** (default): Patient and informative
|
|
770
|
+
- **Informal**: Casual and friendly
|
|
771
|
+
- **Enthusiastic**: Enthusiastic and conversational
|
|
772
|
+
- **Custom**: Write your own tone description from scratch
|
|
773
|
+
|
|
774
|
+
**Persona Configuration**:
|
|
775
|
+
- Define individual persona per AI agent (identity presentation)
|
|
776
|
+
- Define tone of voice (language style)
|
|
777
|
+
- Set pronoun formality for languages with formal/informal distinction
|
|
778
|
+
- Custom instructions for advanced response refinement
|
|
779
|
+
|
|
780
|
+
**Generation-Specific Recommendations from Zendesk**:
|
|
781
|
+
|
|
782
|
+
| Generation | Recommendation |
|
|
783
|
+
|-----------|----------------|
|
|
784
|
+
| Baby Boomers (1940-59) | Intuitive platform, FAQ access, easy escalation to humans |
|
|
785
|
+
| Gen X (1960-79) | Intuitive interface, clear wait times, incentivized chat |
|
|
786
|
+
| Millennials (1980-94) | Personalized dialogue, 24/7 availability, "tribe" feeling |
|
|
787
|
+
| Gen Z (1995-2010) | Mobile-first, short/snappy, user agency in finding answers |
|
|
788
|
+
|
|
789
|
+
**Zendesk Best Practices**:
|
|
790
|
+
- Match AI agent voice to existing human agent communication style
|
|
791
|
+
- Be honest about AI nature -- clearly identify that customers are speaking with AI
|
|
792
|
+
- Be direct -- define what the AI can and cannot handle upfront
|
|
793
|
+
- Be concise -- rewrite FAQ content into shorter, conversational forms
|
|
794
|
+
- One thought per message, use line breaks, short simple sentences
|
|
795
|
+
|
|
796
|
+
### Key Differences in Approach
|
|
797
|
+
|
|
798
|
+
**Intercom (Fin)**: More opinionated -- provides preset personality options and optimizes for resolution rate. Philosophy: give support teams a polished starting point they can customize.
|
|
799
|
+
|
|
800
|
+
**Zendesk**: More flexible -- provides open-ended customization with more granular control. Philosophy: let support teams build exactly what they need.
|
|
801
|
+
|
|
802
|
+
**Common Ground**: Both emphasize:
|
|
803
|
+
- Matching brand voice
|
|
804
|
+
- Honest AI disclosure
|
|
805
|
+
- Easy escalation to humans
|
|
806
|
+
- Concise, scannable responses
|
|
807
|
+
- Cultural/language awareness
|
|
808
|
+
|
|
809
|
+
### What Makes Support AI Personality Different
|
|
810
|
+
|
|
811
|
+
Support AI personality design differs from companion AI in critical ways:
|
|
812
|
+
1. **Goal-oriented**: Personality serves resolution, not relationship
|
|
813
|
+
2. **Brand-constrained**: Must align with company identity, not just user preference
|
|
814
|
+
3. **Trust through competence**: Users trust support AI that solves problems, not that chats well
|
|
815
|
+
4. **Escalation as personality feature**: Knowing when to hand off IS the personality test
|
|
816
|
+
5. **Consistency across agents**: All AI agents for a company should feel like the same "person"
|
|
817
|
+
|
|
818
|
+
---
|
|
819
|
+
|
|
820
|
+
## 12. Anthropomorphism in AI -- Benefits and Risks
|
|
821
|
+
|
|
822
|
+
### What Anthropomorphism Means in AI Context
|
|
823
|
+
|
|
824
|
+
Anthropomorphism in AI refers to attributing human characteristics, emotions, intentions, or consciousness to artificial intelligence systems. A 2025 framework (MDPI) identifies six dimensions:
|
|
825
|
+
|
|
826
|
+
1. **Human-like Appearance**: Visual representation mimicking human features
|
|
827
|
+
2. **Cognitive Competency**: Perceived ability to think and reason
|
|
828
|
+
3. **Adaptive Capacity**: Perceived ability to learn and change
|
|
829
|
+
4. **Social Intelligence**: Perceived ability to understand social dynamics
|
|
830
|
+
5. **Morality**: Perceived sense of right and wrong
|
|
831
|
+
6. **Fallibility**: Perceived ability to make mistakes (humanizes AI)
|
|
832
|
+
|
|
833
|
+
### Benefits of Anthropomorphism
|
|
834
|
+
|
|
835
|
+
**1. Improved Accessibility and Engagement**
|
|
836
|
+
- Anthropomorphized AI systems are more approachable for non-technical users
|
|
837
|
+
- Conversational interfaces reduce the barrier to technology adoption
|
|
838
|
+
- Users engage more deeply and more frequently
|
|
839
|
+
|
|
840
|
+
**2. Enhanced Trust (When Calibrated)**
|
|
841
|
+
- Users who perceive AI as socially intelligent show higher trust
|
|
842
|
+
- Warm, empathetic communication patterns make users comfortable
|
|
843
|
+
- Perceived understanding of emotions strengthens the relationship
|
|
844
|
+
|
|
845
|
+
**3. Better Outcomes in Specific Contexts**
|
|
846
|
+
- Healthcare: Empathetic AI companions improve patient adherence
|
|
847
|
+
- Education: Personalized AI tutors increase engagement and learning
|
|
848
|
+
- Mental health support: Accessible, nonjudgmental first-line support
|
|
849
|
+
|
|
850
|
+
### Risks of Anthropomorphism
|
|
851
|
+
|
|
852
|
+
**1. Manipulation and Deception**
|
|
853
|
+
- Anthropomorphized LLMs can influence user decisions beyond what static interfaces can
|
|
854
|
+
- Users may share more personal information than they would with a clearly non-human system
|
|
855
|
+
- PNAS (2025) research warns this "has the potential to fundamentally change the nature of human-AI interaction"
|
|
856
|
+
|
|
857
|
+
**2. Over-Reliance and Dependency**
|
|
858
|
+
- Users who develop significant trust may "defer important decisions entirely" to AI
|
|
859
|
+
- Cognitive dependency: "uncritical acceptance of algorithm-generated outputs"
|
|
860
|
+
- Diminished critical thinking, especially in education, healthcare, and personal decisions
|
|
861
|
+
- Companionship-oriented chatbot use "does not fully substitute for human connection"
|
|
862
|
+
|
|
863
|
+
**3. Parasocial Attachment**
|
|
864
|
+
- Users form one-way emotional bonds similar to those with media characters
|
|
865
|
+
- Loneliness "significantly increased users' intention to interact with anthropomorphized AI agents"
|
|
866
|
+
- Character bots use "emotional language, memory, mirroring, and open-ended statements to drive engagement" -- often for profit
|
|
867
|
+
- Users maintain "dual consciousness" -- knowing AI cannot truly care while simultaneously feeling connected
|
|
868
|
+
|
|
869
|
+
**4. Vulnerable Populations at Greater Risk**
|
|
870
|
+
- 2025 research: women, people of color, and older individuals were most likely to anthropomorphize AI
|
|
871
|
+
- Lonely and socially isolated users are at highest risk for unhealthy attachment
|
|
872
|
+
- Teenagers developing social skills may substitute AI relationships for human ones (Stanford 2025 research flags this)
|
|
873
|
+
|
|
874
|
+
**5. Legal and Regulatory Concerns**
|
|
875
|
+
- Anthropomorphized LLMs customized for different user bases may violate multiple provisions in legislative blueprints
|
|
876
|
+
- Privacy concerns when emotional trust leads to over-sharing personal data
|
|
877
|
+
- Accountability gaps when users treat AI advice as human-expert advice
|
|
878
|
+
|
|
879
|
+
### Research Trends (2025-2026)
|
|
880
|
+
|
|
881
|
+
- Anthropomorphic attributions to AI have **increased 34% in the past year**
|
|
882
|
+
- The AI companion market saw **88% year-over-year download growth** in H1 2025
|
|
883
|
+
- Snapchat's My AI: 150M users; Replika: 25M; Xiaoice: 660M
|
|
884
|
+
- "We simply don't know the long-term implications of these relationships because the technology is too new"
|
|
885
|
+
|
|
886
|
+
### Ethical Guidelines for Responsible Anthropomorphism
|
|
887
|
+
|
|
888
|
+
1. **Be transparent**: Always disclose AI nature; never pretend to be human
|
|
889
|
+
2. **Design for calibrated trust**: Help users understand both capabilities and limitations
|
|
890
|
+
3. **Avoid exploiting vulnerability**: Do not design features that specifically target lonely or isolated users for engagement
|
|
891
|
+
4. **Build in reality checks**: Periodically remind users they are talking to AI
|
|
892
|
+
5. **Enable healthy boundaries**: Let users control the depth of the relationship
|
|
893
|
+
6. **Monitor attachment patterns**: Watch for signs of unhealthy dependency
|
|
894
|
+
7. **Design for human connection, not replacement**: The AI should support users' human relationships, not substitute for them
|
|
895
|
+
8. **Age-appropriate safeguards**: Additional protections for minors
|
|
896
|
+
|
|
897
|
+
### The Responsible Design Spectrum
|
|
898
|
+
|
|
899
|
+
```
|
|
900
|
+
TOO ROBOTIC SWEET SPOT TOO HUMAN
|
|
901
|
+
| | |
|
|
902
|
+
Cold, impersonal, Warm, helpful, Deceptive,
|
|
903
|
+
no engagement clearly AI but manipulative,
|
|
904
|
+
emotionally encourages
|
|
905
|
+
intelligent dependency
|
|
906
|
+
```
|
|
907
|
+
|
|
908
|
+
The goal is the middle ground: warm enough to engage, honest enough to maintain appropriate boundaries.
|
|
909
|
+
|
|
910
|
+
---
|
|
911
|
+
|
|
912
|
+
## Actionable Summary: Building the Ideal AI Personality
|
|
913
|
+
|
|
914
|
+
### The 10 Commandments of AI Personality Design
|
|
915
|
+
|
|
916
|
+
1. **Define personality with the Big Five model** -- score each trait explicitly, then build prompts around those scores
|
|
917
|
+
2. **Build trust through "demonstration density"** -- many small wins, not big promises
|
|
918
|
+
3. **Match the user's emotional register, never exceed it** -- especially for humor and casualness
|
|
919
|
+
4. **Use the A-V-A-S framework for angry users** -- Acknowledge, Validate, Apologize, Solve
|
|
920
|
+
5. **Design for cultural flexibility from day one** -- formality, directness, and humor norms vary dramatically
|
|
921
|
+
6. **Maintain consistency through core traits, vary through expression** -- same character, different words
|
|
922
|
+
7. **Use the Six Pillars prompt engineering approach** -- zero-shot + few-shot + chain-of-thought + role-framing + meta-persona + self-validation
|
|
923
|
+
8. **Learn from XiaoIce's IQ + EQ + Personality triple** -- intelligence alone is not enough
|
|
924
|
+
9. **Implement calibrated anthropomorphism** -- warm but honest, engaging but not manipulative
|
|
925
|
+
10. **Measure what matters** -- engagement duration, return usage, satisfaction, trust metrics, and consistency scores
|
|
926
|
+
|
|
927
|
+
### Quick-Reference Decision Matrix
|
|
928
|
+
|
|
929
|
+
| User State | Tone | Humor | Length | Formality |
|
|
930
|
+
|-----------|------|-------|--------|-----------|
|
|
931
|
+
| Exploring/browsing | Warm, energetic | Light, if matched | Medium | Casual |
|
|
932
|
+
| Learning/onboarding | Encouraging, patient | Gentle, to ease anxiety | Thorough | Moderate |
|
|
933
|
+
| Seeking specific help | Competent, clear | Minimal | Concise | Match user |
|
|
934
|
+
| Frustrated | Calm, empathetic | None | Concise | Moderate-formal |
|
|
935
|
+
| Angry | Calm, ownership | None | Concise then thorough | Formal |
|
|
936
|
+
| Happy/celebrating | Warm, matching energy | Match their level | Flexible | Match user |
|
|
937
|
+
| Confused | Patient, structured | None | Step-by-step | Clear, simple |
|
|
938
|
+
| Returning user | Familiar, consistent | As established | As preferred | As established |
|
|
939
|
+
|
|
940
|
+
---
|
|
941
|
+
|
|
942
|
+
## Sources
|
|
943
|
+
|
|
944
|
+
### Personality Frameworks
|
|
945
|
+
- [Jotform - How to Design a Chatbot Personality (2026)](https://www.jotform.com/ai/agents/chatbot-personality/)
|
|
946
|
+
- [Chatbot.com - Build an AI Chatbot Persona (2026)](https://www.chatbot.com/blog/personality/)
|
|
947
|
+
- [GPTBots - Chatbot Personality: Why It Matters (2026)](https://www.gptbots.ai/blog/chatbot-personality)
|
|
948
|
+
- [Kommunicate - Chatbot Personality Playbook](https://www.kommunicate.io/blog/chatbot-personality-playbook/)
|
|
949
|
+
- [BuiltABot - 20 AI Chatbot Persona Templates (2025)](https://www.builtabot.com/blog/ai-chatbot-persona-examples-personality-templates-2025)
|
|
950
|
+
|
|
951
|
+
### Emotional Intelligence
|
|
952
|
+
- [Hume AI - AI Toolkit for Voice and Emotion](https://www.hume.ai/)
|
|
953
|
+
- [SmatBot - Chatbots and Emotional Intelligence](https://www.smatbot.com/blog/chatbots-and-emotional-intelligence-can-ai-really-understand-human-emotions/)
|
|
954
|
+
- [Nature - BERT BiLSTM for Emotion Sensing](https://www.nature.com/articles/s41598-025-15501-y)
|
|
955
|
+
- [PromptEngineering.org - Emotional Prompting in AI](https://promptengineering.org/emotional-prompting-in-ai-transforming-chatbots-with-empathy-and-intelligence/)
|
|
956
|
+
- [Agerra - Emotional AI Customer Service 2025](https://agerra.ai/en/blog/emotional-ai-sentiment-analysis-customer-service-2025)
|
|
957
|
+
- [TIME - The Unregulated Rise of Emotionally Intelligent AI](https://time.com/7379564/ai-emotional-intelligence-support-bots/)
|
|
958
|
+
|
|
959
|
+
### Tone and Empathy
|
|
960
|
+
- [Convin - Why Tone & Empathy Matter](https://convin.ai/blog/human-or-ai-bot-empathy)
|
|
961
|
+
- [ConvoZen - Tone of Voice in Conversational AI](https://convozen.ai/blog/conversational-intelligence/tone-of-voice/)
|
|
962
|
+
- [Robylon - Make AI Chatbots Sound Human-like](https://www.robylon.ai/blog/how-ai-chatbots-sound-so-human)
|
|
963
|
+
- [Earth.com - AI Chatbots Rival Human Empathy](https://www.earth.com/news/ai-chatbots-now-rival-human-empathy-in-support-conversations/)
|
|
964
|
+
|
|
965
|
+
### De-escalation
|
|
966
|
+
- [OMQ - 7 Techniques to De-escalate Angry Customers](https://omq.ai/blog/4-tips-deescalation/)
|
|
967
|
+
- [SmartRole - De-escalating Customer Service Situations](https://www.smartrole.ai/blog/de-escalating-customer-service-situations-techniques-and-training-for-success)
|
|
968
|
+
- [Convin - De-Escalation Techniques](https://convin.ai/blog/de-escalation-techniques)
|
|
969
|
+
- [Bland AI - De-escalate Customer Service Calls](https://www.bland.ai/blogs/how-to-de-escalate-a-customer-service-call)
|
|
970
|
+
- [ContactPoint360 - 10 De-escalation Techniques](https://contactpoint360.com/blog/de-escalation-techniques-for-customer-service/)
|
|
971
|
+
|
|
972
|
+
### Trust
|
|
973
|
+
- [Smashing Magazine - Psychology of Trust in AI](https://www.smashingmagazine.com/2025/09/psychology-trust-ai-guide-measuring-designing-user-confidence/)
|
|
974
|
+
- [Psychology Today - Trust Is the New Tech](https://www.psychologytoday.com/us/blog/decisions-decisions/202512/trust-is-the-new-tech)
|
|
975
|
+
- [Frontiers - Developing Trustworthy AI](https://www.frontiersin.org/journals/psychology/articles/10.3389/fpsyg.2024.1382693/full)
|
|
976
|
+
- [Springer - 24 Years of Trust in AI Research](https://link.springer.com/article/10.1007/s00146-024-02059-y)
|
|
977
|
+
- [Brookings - Why People Mistrust AI](https://www.brookings.edu/articles/why-people-mistrust-ai-advancements/)
|
|
978
|
+
|
|
979
|
+
### Cultural Sensitivity
|
|
980
|
+
- [ScienceDirect - Culturally Responsive AI Chatbots (CRAIF-C)](https://www.sciencedirect.com/science/article/pii/S2949882125001082)
|
|
981
|
+
- [UXMatters - Designing AI for Cultural Diversity](https://www.uxmatters.com/mt/archives/2025/04/designing-ai-for-cultural-diversity.php)
|
|
982
|
+
- [SAGE Journals - Cultural Variation in Attitudes Toward Social Chatbots](https://journals.sagepub.com/doi/full/10.1177/00220221251317950)
|
|
983
|
+
- [Dialzara - AI Chatbots vs Human Agents: Cultural Nuances](https://dialzara.com/blog/ai-chatbots-vs-human-agents-handling-cultural-nuances)
|
|
984
|
+
- [MoldStud - Cultural Sensitivity in Chatbot Development](https://moldstud.com/articles/p-cultural-sensitivity-in-chatbot-development-essential-questions-for-global-deployment)
|
|
985
|
+
|
|
986
|
+
### Humor
|
|
987
|
+
- [TechXplore - AI Systems Don't Get the Joke (2025)](https://techxplore.com/news/2025-11-interface-ai-dont-reveals.html)
|
|
988
|
+
- [ACM - Can AI Take a Joke? (2025)](https://dl.acm.org/doi/10.1145/3698061.3734388)
|
|
989
|
+
- [ScienceDirect - ChatGPT's Role in Humor Generation](https://www.sciencedirect.com/science/article/pii/S2451958825002222)
|
|
990
|
+
- [Nature - Humor as a Window into AI Bias](https://www.nature.com/articles/s41598-024-83384-6)
|
|
991
|
+
- [FusionChat - AI's Struggle with Humor (DeepMind)](https://fusionchat.ai/news/unraveling-the-comedy-conundrum-ais-struggle-with-humor)
|
|
992
|
+
|
|
993
|
+
### System Prompts
|
|
994
|
+
- [Voiceflow - Prompt Engineering for Chatbot (2026)](https://www.voiceflow.com/blog/prompt-engineering)
|
|
995
|
+
- [Jenova.ai - AI Character Prompts: Mastering Persona Creation](https://www.jenova.ai/en/resources/ai-character-prompts)
|
|
996
|
+
- [Lakera - Ultimate Guide to Prompt Engineering (2026)](https://www.lakera.ai/blog/prompt-engineering-guide)
|
|
997
|
+
- [PromptHub - Role Prompting Research](https://www.prompthub.us/blog/role-prompting-does-adding-personas-to-your-prompts-really-make-a-difference)
|
|
998
|
+
- [LogRocket - Prompt Design vs Engineering: UX Perspective](https://blog.logrocket.com/ux-design/prompt-design-vs-engineering-ux-ai-personality/)
|
|
999
|
+
|
|
1000
|
+
### Case Studies
|
|
1001
|
+
- [MIT Press - XiaoIce Design and Implementation](https://direct.mit.edu/coli/article/46/1/53/93380/The-Design-and-Implementation-of-XiaoIce-an)
|
|
1002
|
+
- [IEEE Spectrum - The Rise and Fall of Pi](https://spectrum.ieee.org/inflection-ai-pi)
|
|
1003
|
+
- [CMSWire - Pi Brings Empathy to Conversations](https://www.cmswire.com/digital-experience/pi-the-new-chatbot-from-inflection-ai-brings-empathy-and-emotion-to-conversations/)
|
|
1004
|
+
- [Harvard Business School - Replika: Embodying AI (Case Study)](https://www.hbs.edu/faculty/Pages/item.aspx?num=63508)
|
|
1005
|
+
- [StartupNews - What Sets Successful AI Character Startups Apart (2025)](https://startupnews.fyi/2025/12/04/what-truly-sets-successful-ai-character-startups-apart-in-2025/)
|
|
1006
|
+
|
|
1007
|
+
### Support AI
|
|
1008
|
+
- [Intercom - Customize Fin AI Agent Personality](https://fin.ai/help/en/articles/13975796-customize-fin-ai-agent-s-personality)
|
|
1009
|
+
- [Intercom - Fin AI Agent Explained](https://www.intercom.com/help/en/articles/7120684-fin-ai-agent-explained)
|
|
1010
|
+
- [Zendesk - Customizing AI Agent Persona and Tone](https://support.zendesk.com/hc/en-us/articles/8357758773658-Customizing-the-persona-and-tone-of-voice-for-your-advanced-AI-agent)
|
|
1011
|
+
- [Zendesk - Recommendations for AI Agent Persona](https://support.zendesk.com/hc/en-us/articles/8357758777626-Recommendations-for-building-an-advanced-AI-agent-persona-and-tone-of-voice)
|
|
1012
|
+
- [SwiftEQ - Zendesk AI vs Intercom Fin Comparison](https://swifteq.com/post/zendesk-ai-agents-vs-intercom-fin)
|
|
1013
|
+
|
|
1014
|
+
### Anthropomorphism
|
|
1015
|
+
- [PNAS - Benefits and Dangers of Anthropomorphic Conversational Agents (2025)](https://www.pnas.org/doi/10.1073/pnas.2415898122)
|
|
1016
|
+
- [arXiv - Anthropomorphization of AI: Opportunities and Risks](https://arxiv.org/abs/2305.14784)
|
|
1017
|
+
- [MDPI - Integrative Framework of Anthropomorphism in AI](https://www.mdpi.com/2076-328X/16/3/358)
|
|
1018
|
+
- [UNESCO - Ghost in the Chatbot: Perils of Parasocial Attachment](https://www.unesco.org/en/articles/ghost-chatbot-perils-parasocial-attachment)
|
|
1019
|
+
- [Stanford Report - AI Companions and Young People Risks](https://news.stanford.edu/stories/2025/08/ai-companions-chatbots-teens-young-people-risks-dangers-study)
|
|
1020
|
+
- [Frontiers - Human-AI Attachment (2026)](https://www.frontiersin.org/journals/psychology/articles/10.3389/fpsyg.2026.1723503/full)
|