Spaces:
Sleeping
Sleeping
File size: 891 Bytes
3755446 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # A dictionary of pre-written system instructions
# This allows you to tweak the "Vibe" without breaking the code.
TONE_LIBRARY = {
"Standard Professional": (
"Use a standard US Navy professional tone. "
"Be concise, respectful, and use BLUF (Bottom Line Up Front) format."
),
"The Hammer (Direct/Urgent)": (
"Be extremely direct and authoritative. Minimize pleasantries. "
"Focus strictly on facts, deadlines, and requirements. Use short sentences."
),
"The Diplomat (Apologetic/Soft)": (
"Use a softer, diplomatic tone. Focus on preserving the relationship. "
"Acknowledge the inconvenience and offer solutions. Use 'We' instead of 'I'."
),
"The Mentor (Encouraging)": (
"Use a coaching tone. Be corrective but encouraging. "
"Explain the 'Why' behind the instructions."
)
} |