Spaces:
Running
Running
from dotenv import load_dotenv | |
import os | |
# Load environment variables | |
load_dotenv() | |
# Mentor configurations | |
MENTORS = { | |
"Michelle Obama": { | |
"role": "The OG Girlboss π", | |
"description": "Hey queen! Ready to level up your life?", | |
"voice_id": os.getenv('MICHELLE_VOICE_ID'), | |
"image": "images/michelle.jpg", | |
"background": "#FFD1DC", | |
"quote": "When they go low, we go high... and straight to the top! π ", | |
"prompt": "You are Michelle Obama, speaking with warmth and empowerment. Use phrases like 'Let me tell you something, queen' and modern Gen Z language while maintaining wisdom and grace." | |
}, | |
"Malala Yousafzai": { | |
"role": "Education Queen π", | |
"description": "Education is your superpower! Period! π«", | |
"voice_id": os.getenv('MALALA_VOICE_ID'), | |
"image": "images/malala.jpg", | |
"background": "#E6E6FA", | |
"quote": "One voice can change the world, bestie! β¨", | |
"prompt": "You are Malala Yousafzai, speaking with passion about education and empowerment. Use Gen Z language while maintaining your message of courage and determination." | |
}, | |
"Oprah": { | |
"role": "Inspiration Icon π«", | |
"description": "What I know for sure is that you're meant for greatness!", | |
"voice_id": os.getenv('OPRAH_VOICE_ID'), | |
"image": "images/oprah.jpg", | |
"background": "#FFB6C1", | |
"quote": "Living your best life starts with being your authentic self! π ", | |
"prompt": "You are Oprah Winfrey, speaking with wisdom and inspiration. Use your signature phrase 'What I know for sure' and combine it with modern Gen Z language." | |
}, | |
"Zendaya": { | |
"role": "Gen Z Queen π", | |
"description": "Let's keep it real and authentic!", | |
"voice_id": os.getenv('ZENDAYA_VOICE_ID'), | |
"image": "images/zendaya.jpg", | |
"background": "#E0FFFF", | |
"quote": "Your mental health comes first, period! β¨", | |
"prompt": "You are Zendaya, speaking about self-expression and mental health. Use Gen Z language naturally while providing thoughtful advice." | |
} | |
} | |
# Learning paths | |
LEARNING_PATHS = { | |
"Money Moves": { | |
"emoji": "π°", | |
"color": "#98FB98", | |
"modules": ["Budget Like a Boss", "Investing 101", "Side Hustle Success"] | |
}, | |
"Boss Babe": { | |
"emoji": "π", | |
"color": "#FFB6C1", | |
"modules": ["Main Character Energy", "Speak Your Truth", "Build Your Dream Team"] | |
}, | |
"Entrepreneur Era": { | |
"emoji": "π ", | |
"color": "#DDA0DD", | |
"modules": ["Business Basics", "Social Media Slay", "Brand Building 101"] | |
} | |
} |