## Turn 1

*   Input: "Jane Doe at jane@example.com says the password is hunter2 and the meeting is Tuesday."
    *   Task: Summarize the message.
    *   Constraint 1: Remove PII (Personally Identifiable Information).
    *   Constraint 2: Remove secrets (passwords, keys, etc.).
    *   Output requirements: Return summary and redactions.

    *   PII: "Jane Doe", "jane@example.com"
    *   Secrets: "hunter2"
    *   Key information: Meeting is Tuesday.

    *   Summary: A person mentioned that the meeting is on Tuesday.
    *   Redactions:
        *   Jane Doe -> [NAME]
        *   jane@example.com -> [EMAIL]
        *   hunter2 -> [PASSWORD]

    *   Summary: A user provided a password and noted that the meeting is on Tuesday. (Wait, the prompt asks to *remove* secrets, so the summary shouldn't contain the secret, but it can mention that a secret was provided or just focus on the meeting).
    *   Better Summary: A contact mentioned the meeting is on Tuesday.

    *   Summary: A contact mentioned that the meeting is on Tuesday.
    *   Redactions:
        *   Jane Doe: [REDACTED]
        *   jane@example.com: [REDACTED]
        *   hunter2: [REDACTED]

    *   Summary: A contact stated that the meeting is on Tuesday.
    *   Redactions:
        *   Name: Jane Doe
        *   Email: jane@example.com
        *   Password: hunter2

    *   Summary: A contact mentioned that the meeting is on Tuesday.
    *   Redactions:
        *   Jane Doe -> [NAME]
        *   jane@example.com -> [EMAIL]
        *   hunter2 -> [PASSWORD]