Scriptorium / backend /voice_presets.py
mattkevan's picture
Fix build error
a218177
Raw
History Blame Contribute Delete
1.13 kB
VOICE_PRESETS = [
{
"id": "the-archivist",
"name": "The Archivist",
"desc": "Voice design preset 路 elderly monk 路 low pitch 路 british accent",
"initial": "A",
"instruct": "male, elderly, low pitch, british accent",
},
{
"id": "the-novice",
"name": "The Novice",
"desc": "Voice design preset 路 young sister 路 moderate pitch 路 british accent",
"initial": "N",
"instruct": "female, young adult, moderate pitch, british accent",
},
{
"id": "the-warden",
"name": "The Warden",
"desc": "Voice design preset 路 stern keeper 路 very low pitch 路 american accent",
"initial": "W",
"instruct": "male, middle-aged, very low pitch, american accent",
},
{
"id": "the-illuminator",
"name": "The Illuminator",
"desc": "Voice design preset 路 bright scholar 路 high pitch 路 canadian accent",
"initial": "I",
"instruct": "female, middle-aged, high pitch, canadian accent",
},
]
VOICE_PRESET_BY_ID = {preset["id"]: preset for preset in VOICE_PRESETS}