-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdditional_Features.py
More file actions
31 lines (25 loc) · 1.65 KB
/
Additional_Features.py
File metadata and controls
31 lines (25 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Marathi localization and engagement features
MARATHI_MESSAGES = {
"welcome": "सोलापूर मधील विद्यार्थ्यांसाठी AI करिअर सल्लागार मध्ये आपले स्वागत आहे!",
"excellent_fit": "तुम्ही या करिअरसाठी उत्तम आहात! 🎉",
"good_fit": "तुमच्याकडे या करिअरसाठी चांगली क्षमता आहे! 👍",
"needs_work": "थोडा अधिक प्रयत्न करून तुम्ही यशस्वी होऊ शकता! 📚",
"local_tips": [
"सोलापूर मधील IT पार्क मध्ये internship च्या संधी शोधा!",
"स्थानिक tech communities मध्ये सहभागी व्हा!",
"WALCHAND college च्या workshops मध्ये भाग घ्या!"
]
}
def get_local_tip():
return random.choice(MARATHI_MESSAGES["local_tips"])
# Market trends integration
class MarketTrends:
def __init__(self):
self.trends = {
"AI Engineer": {"demand": "High", "growth": "25%", "salary": "₹8-15L"},
"Data Scientist": {"demand": "High", "growth": "22%", "salary": "₹7-12L"},
"Web Developer": {"demand": "Medium", "growth": "15%", "salary": "₹4-8L"},
"Research Scientist": {"demand": "Medium", "growth": "18%", "salary": "₹6-10L"}
}
def get_trend_info(self, career):
return self.trends.get(career, {})