correlation start

This commit is contained in:
2026-01-27 17:22:16 +01:00
parent 393c527656
commit fd4cb4b596
9 changed files with 5375 additions and 24 deletions

33
speaking_styles.py Normal file
View File

@@ -0,0 +1,33 @@
"""
Mapping of Speaking Styles (Colors) to their constituent Traits (Positive side).
Derived from "Speaking Style Traits Quantitative test design.pdf".
"""
SPEAKING_STYLES = {
"Green": [
"Friendly | Conversational | Down-to-earth",
"Approachable | Familiar | Warm",
"Optimistic | Benevolent | Positive | Appreciative"
],
"Blue": [
"Proactive | Cooperative",
"Knowledgable | Resourceful | Savvy",
"Clear | Straightforward | Direct",
"Confident | Competent",
"Respectable | Respectful"
],
"Orange": [
"Attentive | Helpful | Caring | Deliberate",
"Reassuring | Empowering",
"Progressive | Guiding | Intentional",
"Patient | Open-minded"
],
"Red": [
"Trustworthy | Reliable | Dependable",
"Calm | Steady/Stable | Controlled",
"Transparent | Upright | Altruistic",
"Adaptive | Flexible"
]
}