File size: 1,139 Bytes
af222c8
 
 
 
 
 
 
 
 
56a15bc
 
af222c8
 
56a15bc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
af222c8
5187368
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
GESTURE_DIRECTIVES: dict[str, dict[str, str]] = {
    "THUMBS_UP": {
        "tone": "[GESTURE:THUMBS_UP][TONE:AFFIRMATIVE]",
        "opener_hint": "Open with an affirmation (Yes / Totally / For sure).",
    },
    "THUMBS_DOWN": {
        "tone": "[GESTURE:THUMBS_DOWN][TONE:NEGATIVE]",
        "opener_hint": "Open by declining or disagreeing briefly.",
    },
    "POINTING_UP": {
        "tone": "[GESTURE:POINTING_UP][INTENT:REFERENTIAL]",
        "opener_hint": "Treat the query as referring to a specific named thing.",
    },
    "CLOSED_FIST": {
        "tone": "[GESTURE:CLOSED_FIST][TONE:EMPHATIC]",
        "opener_hint": "Respond with emphasis or urgency — something important needs saying.",
    },
    "OPEN_PALM": {
        "tone": "[GESTURE:OPEN_PALM][INTENT:GREETING]",
        "opener_hint": "Open with a warm greeting.",
    },
    "VICTORY": {
        "tone": "[GESTURE:VICTORY][TONE:CELEBRATORY]",
        "opener_hint": "Open with celebration or excitement.",
    },
    "I_LOVE_YOU": {
        "tone": "[GESTURE:I_LOVE_YOU][TONE:AFFECTIONATE]",
        "opener_hint": "Open with warmth and affection.",
    },
}