59 lines
1.1 KiB
Python
59 lines
1.1 KiB
Python
ORIGINAL_CHARACTER_TRAITS = {
|
|
"the_familiar_friend": [
|
|
"Warm",
|
|
"Friendly",
|
|
"Approachable",
|
|
"Familiar",
|
|
"Casual",
|
|
"Appreciative",
|
|
"Benevolent",
|
|
],
|
|
"the_coach": [
|
|
"Empowering",
|
|
"Encouraging",
|
|
"Caring",
|
|
"Positive",
|
|
"Optimistic",
|
|
"Guiding",
|
|
"Reassuring",
|
|
],
|
|
"the_personal_assistant": [
|
|
"Forward-thinking",
|
|
"Progressive",
|
|
"Cooperative",
|
|
"Intentional",
|
|
"Resourceful",
|
|
"Attentive",
|
|
"Adaptive",
|
|
],
|
|
"the_bank_teller": [
|
|
"Patient",
|
|
"Grounded",
|
|
"Down-to-earth",
|
|
"Stable",
|
|
"Formal",
|
|
"Balanced",
|
|
"Efficient",
|
|
]
|
|
}
|
|
|
|
VOICE_GENDER_MAPPING = {
|
|
"V14": "Female",
|
|
"V04": "Female",
|
|
"V08": "Female",
|
|
"V77": "Female",
|
|
"V48": "Female",
|
|
"V82": "Female",
|
|
"V89": "Female",
|
|
"V91": "Female",
|
|
"V34": "Male",
|
|
"V69": "Male",
|
|
"V45": "Male",
|
|
"V46": "Male",
|
|
"V54": "Male",
|
|
"V74": "Male",
|
|
"V81": "Male",
|
|
"V86": "Male",
|
|
"V88": "Male",
|
|
"V16": "Male",
|
|
} |