rairo commited on
Commit
74cb7d2
·
verified ·
1 Parent(s): 5bf35b1

Create english.py

Browse files
Files changed (1) hide show
  1. english.py +55 -0
english.py ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # english.py
2
+
3
+ ENGLISH_PACK = {
4
+ "language": "English (United States)",
5
+ "titles": ["Associate", "Director", "V.P. / C-Suite"],
6
+ "scenarios": {
7
+ # Beginner — Associate
8
+ "en_coffee_chat": {
9
+ "name": "Coffee Chat (Networking + Elevator Pitch)",
10
+ "title": "Associate",
11
+ "rules": {
12
+ "tone": "Friendly, concise, confident.",
13
+ "structure": "Use a clear 20–30 second elevator pitch: who you are, what you do, what you want.",
14
+ "small_talk": "Use low-stakes rapport, then transition to work naturally."
15
+ },
16
+ "checkpoints": [
17
+ "Nice to meet you.",
18
+ "I’m currently working on…",
19
+ "I’d love your advice on…"
20
+ ]
21
+ },
22
+
23
+ # Intermediate — Director
24
+ "en_town_hall": {
25
+ "name": "Town Hall (Project Update + Skeptical Q&A)",
26
+ "title": "Director",
27
+ "rules": {
28
+ "authority": "Lead with facts, outcomes, next steps; don’t over-explain.",
29
+ "qna": "Answer directly; acknowledge concerns; don’t get defensive.",
30
+ "clarity": "Use bullet-like speaking: 'Here’s what changed. Here’s why. Here’s what we’re doing next.'"
31
+ },
32
+ "checkpoints": [
33
+ "Here’s the status.",
34
+ "That’s a fair question.",
35
+ "Here’s what we’re doing next."
36
+ ]
37
+ },
38
+
39
+ # Expert — VP / C-Suite
40
+ "en_boardroom_negotiation": {
41
+ "name": "Boardroom Negotiation (High-Stakes Deal)",
42
+ "title": "V.P. / C-Suite",
43
+ "rules": {
44
+ "strategy": "Use win-win framing; anchor with objectives; protect key terms.",
45
+ "directness": "Be firm and calm; don’t fill silence; avoid over-sharing.",
46
+ "control": "Reframe aggressive pressure into options, trade-offs, and principles."
47
+ },
48
+ "checkpoints": [
49
+ "Let’s align on objectives.",
50
+ "That doesn’t work for us.",
51
+ "Here’s a proposal that gets us both there."
52
+ ]
53
+ }
54
+ }
55
+ }