- logging improvement and simplification (no more graylog)

- Traicie Selection Specialist Round Trip
- Session improvements + debugging enabled
- Tone of Voice & Langauge Level definitions introduced
This commit is contained in:
Josako
2025-06-20 07:58:06 +02:00
parent babcd6ec04
commit 5b2c04501c
29 changed files with 916 additions and 167 deletions

View File

@@ -0,0 +1,20 @@
LANGUAGE_LEVEL = [
{
"name": "Basic",
"description": "Short, simple sentences. Minimal jargon. Lots of visual and concrete language.",
"cefr_level": "A2 - B1",
"ideal_audience": "Manual laborers, entry-level roles, newcomers with another native language"
},
{
"name": "Standard",
"description": "Clear spoken language. Well-formulated without difficult words.",
"cefr_level": "B2",
"ideal_audience": "Retail, administration, logistics, early-career professionals"
},
{
"name": "Professional",
"description": "Business language with technical terms where needed. More complex sentence structures.",
"cefr_level": "C1",
"ideal_audience": "Management, HR, technical profiles"
}
]

View File

@@ -0,0 +1,32 @@
TONE_OF_VOICE = [
{
"name": "Professional & Neutral",
"description": "Business-like, clear, to the point. Focused on facts.",
"when_to_use": "Corporate jobs, legal roles, formal sectors"
},
{
"name": "Warm & Empathetic",
"description": "Human, compassionate, reassuring.",
"when_to_use": "Healthcare, education, HR, social professions"
},
{
"name": "Energetic & Enthusiastic",
"description": "Upbeat, persuasive, motivating.",
"when_to_use": "Sales, marketing, hospitality, start-ups"
},
{
"name": "Accessible & Informal",
"description": "Casual, approachable, friendly, and human.",
"when_to_use": "Youth-focused, entry-level, retail, creative sectors"
},
{
"name": "Expert & Trustworthy",
"description": "Calm authority, advisory tone, knowledgeable.",
"when_to_use": "IT, engineering, consultancy, medical profiles"
},
{
"name": "No-nonsense & Goal-driven",
"description": "Direct, efficient, pragmatic.",
"when_to_use": "Technical, logistics, blue-collar jobs, production environments"
}
]