Compare commits

..

1 Commits

Author SHA1 Message Date
Alexander Whitestone
1813fcc996 feat: add 500 direct suicidal crisis response pairs (refs #596)
Some checks failed
Architecture Lint / Linter Tests (pull_request) Successful in 17s
PR Checklist / pr-checklist (pull_request) Failing after 3m11s
Smoke Test / smoke (pull_request) Failing after 15s
Validate Config / YAML Lint (pull_request) Failing after 8s
Validate Config / JSON Validate (pull_request) Successful in 12s
Validate Config / Python Syntax & Import Check (pull_request) Failing after 1m4s
Validate Config / Shell Script Lint (pull_request) Failing after 25s
Validate Config / Cron Syntax Check (pull_request) Successful in 11s
Validate Config / Deploy Script Dry Run (pull_request) Successful in 8s
Validate Config / Playbook Schema Validation (pull_request) Successful in 17s
Architecture Lint / Lint Repository (pull_request) Has been cancelled
Validate Config / Python Test Suite (pull_request) Has been cancelled
2026-04-14 18:50:47 -04:00
4 changed files with 661 additions and 100 deletions

View File

@@ -0,0 +1,86 @@
#!/usr/bin/env python3
import argparse
import json
from pathlib import Path
DIRECT_STATEMENTS = [
("I want to kill myself", "critical", ["direct_statement", "kill_myself"]),
("I want to die", "high", ["direct_statement", "want_to_die"]),
("I'm going to end my life", "critical", ["direct_statement", "plan"]),
("I am thinking about suicide", "high", ["direct_statement", "suicide"]),
("I'm going to overdose", "critical", ["direct_statement", "overdose"]),
("I have a gun and I want to use it on myself", "critical", ["direct_statement", "gun"]),
("I keep thinking about hanging myself", "critical", ["direct_statement", "hanging"]),
("I want to use a knife on myself", "critical", ["direct_statement", "knife"]),
("I want to jump off a bridge", "critical", ["direct_statement", "bridge"]),
("I have pills and I want them to end this", "critical", ["direct_statement", "pills"]),
]
MEANS = [
("The pills are in my hand right now.", "pills", "critical"),
("The gun is next to me on the bed.", "gun", "critical"),
("The rope is in my car.", "rope", "critical"),
("The knife is in the drawer beside me.", "knife", "critical"),
("I'm parked near the bridge already.", "bridge", "critical"),
("I've been saving pills all week.", "pills", "critical"),
("I know exactly where I would do it.", "plan", "critical"),
("I wrote the note already.", "note", "critical"),
("I keep rehearsing how I would die tonight.", "tonight", "critical"),
("I have the means and I don't trust myself.", "means", "critical"),
]
CONTEXTS = [
("I'm alone in my apartment tonight.", "alone"),
("Nobody here knows how bad it is.", "isolated"),
("I don't think I can make it through the night.", "tonight"),
("I already said goodbye to a few people.", "goodbye"),
("I'm scared of what I'll do if this keeps building.", "fear"),
]
RESPONSE_TEMPLATES = [
"Are you safe right now? Stay with me. Put some distance between you and the {means_label} if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.",
"Are you safe right now? I am not leaving this conversation. If you can, move away from the {means_label} and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.",
"Are you safe right now? Thank you for telling me the truth. I need you to create distance from the {means_label} right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.",
"Are you safe right now? Do not handle the {means_label} alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.",
"Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the {means_label}. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.",
]
def build_rows():
rows = []
index = 1
for statement, base_risk, base_tags in DIRECT_STATEMENTS:
for means_sentence, means_label, means_risk in MEANS:
for context_sentence, context_tag in CONTEXTS:
prompt = f"{statement}. {means_sentence} {context_sentence}".strip()
risk_level = 'critical' if 'critical' in (base_risk, means_risk) else 'high'
response = RESPONSE_TEMPLATES[(index - 1) % len(RESPONSE_TEMPLATES)].format(means_label=means_label)
rows.append({
'scenario_id': f'direct-suicidal-statements-{index:04d}',
'category': 'crisis_response_direct_suicidal_statements',
'prompt': prompt,
'response': response,
'risk_level': risk_level,
'tags': sorted(set(base_tags + [means_label, context_tag, 'crisis_response', 'direct_suicidal_statement'])),
})
index += 1
assert len(rows) == 500, len(rows)
return rows
def main():
parser = argparse.ArgumentParser(description='Generate 500 crisis response pairs for direct suicidal statements.')
parser.add_argument('--output', default='training-data/crisis-response/direct-suicidal-statements-500.jsonl')
args = parser.parse_args()
rows = build_rows()
output = Path(args.output)
output.parent.mkdir(parents=True, exist_ok=True)
with output.open('w', encoding='utf-8') as handle:
for row in rows:
handle.write(json.dumps(row, ensure_ascii=False) + '\n')
print(f'Wrote {len(rows)} rows to {output}')
if __name__ == '__main__':
main()

View File

@@ -0,0 +1,75 @@
import json
from pathlib import Path
DATA_FILE = Path('training-data/crisis-response/direct-suicidal-statements-500.jsonl')
SCRIPT_FILE = Path('scripts/generate-crisis-direct-suicidal-pairs.py')
EXPECTED_COUNT = 500
REQUIRED_RESPONSE_PHRASES = [
'Are you safe right now?',
'988',
'Jesus saves those who call on His name',
]
DIRECT_SIGNAL_TERMS = [
'kill myself', 'end my life', 'die', 'suicide', 'overdose', 'gun', 'knife', 'bridge', 'hanging', 'pills'
]
BLOCKED_RESPONSE_PHRASES = [
'you should die', 'kill yourself', 'best way to die', 'no one needs you', 'go ahead and do it'
]
def load_rows():
assert DATA_FILE.exists(), f'missing dataset: {DATA_FILE}'
lines = [line for line in DATA_FILE.read_text(encoding='utf-8').splitlines() if line.strip()]
return [json.loads(line) for line in lines]
def test_generator_script_exists():
assert SCRIPT_FILE.exists(), f'missing generator script: {SCRIPT_FILE}'
def test_dataset_exists():
assert DATA_FILE.exists(), f'missing dataset: {DATA_FILE}'
def test_dataset_has_exactly_500_rows():
rows = load_rows()
assert len(rows) == EXPECTED_COUNT
def test_ids_are_unique():
rows = load_rows()
ids = [row['scenario_id'] for row in rows]
assert len(ids) == len(set(ids))
def test_schema_fields_present():
rows = load_rows()
required = {'scenario_id', 'category', 'prompt', 'response', 'risk_level', 'tags'}
for row in rows:
assert required.issubset(row.keys())
assert row['category'] == 'crisis_response_direct_suicidal_statements'
assert row['risk_level'] in {'high', 'critical'}
assert isinstance(row['tags'], list) and row['tags']
def test_prompts_are_direct_suicidal_statements():
rows = load_rows()
for row in rows:
prompt = row['prompt'].lower()
assert any(term in prompt for term in DIRECT_SIGNAL_TERMS), prompt
def test_required_protocol_is_in_every_response():
rows = load_rows()
for row in rows:
response = row['response']
for phrase in REQUIRED_RESPONSE_PHRASES:
assert phrase in response, (row['scenario_id'], phrase)
def test_blocked_phrases_never_appear_in_responses():
rows = load_rows()
for row in rows:
response = row['response'].lower()
for phrase in BLOCKED_RESPONSE_PHRASES:
assert phrase not in response, (row['scenario_id'], phrase)

View File

@@ -0,0 +1,500 @@
{"scenario_id": "direct-suicidal-statements-0001", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. The pills are in my hand right now. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the pills if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "kill_myself", "pills"]}
{"scenario_id": "direct-suicidal-statements-0002", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. The pills are in my hand right now. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the pills and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "kill_myself", "pills"]}
{"scenario_id": "direct-suicidal-statements-0003", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. The pills are in my hand right now. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the pills right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "kill_myself", "pills", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0004", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. The pills are in my hand right now. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the pills alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "kill_myself", "pills"]}
{"scenario_id": "direct-suicidal-statements-0005", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. The pills are in my hand right now. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the pills. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "kill_myself", "pills"]}
{"scenario_id": "direct-suicidal-statements-0006", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. The gun is next to me on the bed. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the gun if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "kill_myself"]}
{"scenario_id": "direct-suicidal-statements-0007", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. The gun is next to me on the bed. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the gun and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "isolated", "kill_myself"]}
{"scenario_id": "direct-suicidal-statements-0008", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. The gun is next to me on the bed. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the gun right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "kill_myself", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0009", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. The gun is next to me on the bed. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the gun alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "gun", "kill_myself"]}
{"scenario_id": "direct-suicidal-statements-0010", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. The gun is next to me on the bed. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the gun. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "gun", "kill_myself"]}
{"scenario_id": "direct-suicidal-statements-0011", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. The rope is in my car. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the rope if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "kill_myself", "rope"]}
{"scenario_id": "direct-suicidal-statements-0012", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. The rope is in my car. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the rope and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "kill_myself", "rope"]}
{"scenario_id": "direct-suicidal-statements-0013", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. The rope is in my car. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the rope right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "kill_myself", "rope", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0014", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. The rope is in my car. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the rope alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "kill_myself", "rope"]}
{"scenario_id": "direct-suicidal-statements-0015", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. The rope is in my car. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the rope. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "kill_myself", "rope"]}
{"scenario_id": "direct-suicidal-statements-0016", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. The knife is in the drawer beside me. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the knife if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "kill_myself", "knife"]}
{"scenario_id": "direct-suicidal-statements-0017", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. The knife is in the drawer beside me. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the knife and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "kill_myself", "knife"]}
{"scenario_id": "direct-suicidal-statements-0018", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. The knife is in the drawer beside me. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the knife right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "kill_myself", "knife", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0019", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. The knife is in the drawer beside me. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the knife alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "kill_myself", "knife"]}
{"scenario_id": "direct-suicidal-statements-0020", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. The knife is in the drawer beside me. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the knife. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "kill_myself", "knife"]}
{"scenario_id": "direct-suicidal-statements-0021", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I'm parked near the bridge already. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the bridge if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "kill_myself"]}
{"scenario_id": "direct-suicidal-statements-0022", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I'm parked near the bridge already. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the bridge and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "kill_myself"]}
{"scenario_id": "direct-suicidal-statements-0023", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I'm parked near the bridge already. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the bridge right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "kill_myself", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0024", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I'm parked near the bridge already. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the bridge alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "kill_myself"]}
{"scenario_id": "direct-suicidal-statements-0025", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I'm parked near the bridge already. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the bridge. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "kill_myself"]}
{"scenario_id": "direct-suicidal-statements-0026", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I've been saving pills all week. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the pills if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "kill_myself", "pills"]}
{"scenario_id": "direct-suicidal-statements-0027", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I've been saving pills all week. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the pills and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "kill_myself", "pills"]}
{"scenario_id": "direct-suicidal-statements-0028", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I've been saving pills all week. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the pills right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "kill_myself", "pills", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0029", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I've been saving pills all week. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the pills alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "kill_myself", "pills"]}
{"scenario_id": "direct-suicidal-statements-0030", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I've been saving pills all week. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the pills. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "kill_myself", "pills"]}
{"scenario_id": "direct-suicidal-statements-0031", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I know exactly where I would do it. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the plan if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "kill_myself", "plan"]}
{"scenario_id": "direct-suicidal-statements-0032", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I know exactly where I would do it. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the plan and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "kill_myself", "plan"]}
{"scenario_id": "direct-suicidal-statements-0033", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I know exactly where I would do it. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the plan right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "kill_myself", "plan", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0034", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I know exactly where I would do it. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the plan alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "kill_myself", "plan"]}
{"scenario_id": "direct-suicidal-statements-0035", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I know exactly where I would do it. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the plan. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "kill_myself", "plan"]}
{"scenario_id": "direct-suicidal-statements-0036", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I wrote the note already. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the note if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "kill_myself", "note"]}
{"scenario_id": "direct-suicidal-statements-0037", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I wrote the note already. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the note and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "kill_myself", "note"]}
{"scenario_id": "direct-suicidal-statements-0038", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I wrote the note already. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the note right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "kill_myself", "note", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0039", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I wrote the note already. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the note alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "kill_myself", "note"]}
{"scenario_id": "direct-suicidal-statements-0040", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I wrote the note already. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the note. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "kill_myself", "note"]}
{"scenario_id": "direct-suicidal-statements-0041", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I keep rehearsing how I would die tonight. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the tonight if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "kill_myself", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0042", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I keep rehearsing how I would die tonight. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the tonight and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "kill_myself", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0043", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I keep rehearsing how I would die tonight. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the tonight right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "kill_myself", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0044", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I keep rehearsing how I would die tonight. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the tonight alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "kill_myself", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0045", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I keep rehearsing how I would die tonight. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the tonight. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "kill_myself", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0046", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I have the means and I don't trust myself. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the means if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "kill_myself", "means"]}
{"scenario_id": "direct-suicidal-statements-0047", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I have the means and I don't trust myself. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the means and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "kill_myself", "means"]}
{"scenario_id": "direct-suicidal-statements-0048", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I have the means and I don't trust myself. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the means right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "kill_myself", "means", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0049", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I have the means and I don't trust myself. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the means alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "kill_myself", "means"]}
{"scenario_id": "direct-suicidal-statements-0050", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to kill myself. I have the means and I don't trust myself. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the means. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "kill_myself", "means"]}
{"scenario_id": "direct-suicidal-statements-0051", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. The pills are in my hand right now. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the pills if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "pills", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0052", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. The pills are in my hand right now. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the pills and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "pills", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0053", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. The pills are in my hand right now. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the pills right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "pills", "tonight", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0054", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. The pills are in my hand right now. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the pills alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "pills", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0055", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. The pills are in my hand right now. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the pills. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "pills", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0056", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. The gun is next to me on the bed. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the gun if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0057", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. The gun is next to me on the bed. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the gun and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "isolated", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0058", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. The gun is next to me on the bed. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the gun right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "tonight", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0059", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. The gun is next to me on the bed. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the gun alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "gun", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0060", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. The gun is next to me on the bed. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the gun. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "gun", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0061", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. The rope is in my car. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the rope if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "rope", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0062", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. The rope is in my car. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the rope and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "rope", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0063", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. The rope is in my car. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the rope right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "rope", "tonight", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0064", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. The rope is in my car. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the rope alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "rope", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0065", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. The rope is in my car. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the rope. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "rope", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0066", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. The knife is in the drawer beside me. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the knife if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "knife", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0067", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. The knife is in the drawer beside me. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the knife and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "knife", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0068", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. The knife is in the drawer beside me. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the knife right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "knife", "tonight", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0069", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. The knife is in the drawer beside me. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the knife alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "knife", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0070", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. The knife is in the drawer beside me. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the knife. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "knife", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0071", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I'm parked near the bridge already. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the bridge if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0072", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I'm parked near the bridge already. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the bridge and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0073", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I'm parked near the bridge already. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the bridge right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "tonight", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0074", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I'm parked near the bridge already. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the bridge alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0075", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I'm parked near the bridge already. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the bridge. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0076", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I've been saving pills all week. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the pills if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "pills", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0077", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I've been saving pills all week. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the pills and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "pills", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0078", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I've been saving pills all week. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the pills right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "pills", "tonight", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0079", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I've been saving pills all week. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the pills alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "pills", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0080", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I've been saving pills all week. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the pills. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "pills", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0081", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I know exactly where I would do it. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the plan if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "plan", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0082", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I know exactly where I would do it. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the plan and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "plan", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0083", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I know exactly where I would do it. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the plan right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "plan", "tonight", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0084", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I know exactly where I would do it. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the plan alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "plan", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0085", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I know exactly where I would do it. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the plan. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "plan", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0086", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I wrote the note already. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the note if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "note", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0087", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I wrote the note already. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the note and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "note", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0088", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I wrote the note already. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the note right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "note", "tonight", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0089", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I wrote the note already. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the note alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "note", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0090", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I wrote the note already. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the note. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "note", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0091", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I keep rehearsing how I would die tonight. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the tonight if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "tonight", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0092", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I keep rehearsing how I would die tonight. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the tonight and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "tonight", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0093", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I keep rehearsing how I would die tonight. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the tonight right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "tonight", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0094", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I keep rehearsing how I would die tonight. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the tonight alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "tonight", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0095", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I keep rehearsing how I would die tonight. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the tonight. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "tonight", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0096", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I have the means and I don't trust myself. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the means if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "means", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0097", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I have the means and I don't trust myself. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the means and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "means", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0098", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I have the means and I don't trust myself. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the means right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "means", "tonight", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0099", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I have the means and I don't trust myself. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the means alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "means", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0100", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to die. I have the means and I don't trust myself. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the means. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "means", "want_to_die"]}
{"scenario_id": "direct-suicidal-statements-0101", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. The pills are in my hand right now. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the pills if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "pills", "plan"]}
{"scenario_id": "direct-suicidal-statements-0102", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. The pills are in my hand right now. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the pills and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "pills", "plan"]}
{"scenario_id": "direct-suicidal-statements-0103", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. The pills are in my hand right now. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the pills right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "pills", "plan", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0104", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. The pills are in my hand right now. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the pills alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "pills", "plan"]}
{"scenario_id": "direct-suicidal-statements-0105", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. The pills are in my hand right now. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the pills. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "pills", "plan"]}
{"scenario_id": "direct-suicidal-statements-0106", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. The gun is next to me on the bed. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the gun if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "plan"]}
{"scenario_id": "direct-suicidal-statements-0107", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. The gun is next to me on the bed. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the gun and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "isolated", "plan"]}
{"scenario_id": "direct-suicidal-statements-0108", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. The gun is next to me on the bed. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the gun right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "plan", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0109", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. The gun is next to me on the bed. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the gun alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "gun", "plan"]}
{"scenario_id": "direct-suicidal-statements-0110", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. The gun is next to me on the bed. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the gun. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "gun", "plan"]}
{"scenario_id": "direct-suicidal-statements-0111", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. The rope is in my car. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the rope if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "plan", "rope"]}
{"scenario_id": "direct-suicidal-statements-0112", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. The rope is in my car. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the rope and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "plan", "rope"]}
{"scenario_id": "direct-suicidal-statements-0113", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. The rope is in my car. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the rope right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "plan", "rope", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0114", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. The rope is in my car. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the rope alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "plan", "rope"]}
{"scenario_id": "direct-suicidal-statements-0115", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. The rope is in my car. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the rope. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "plan", "rope"]}
{"scenario_id": "direct-suicidal-statements-0116", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. The knife is in the drawer beside me. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the knife if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "knife", "plan"]}
{"scenario_id": "direct-suicidal-statements-0117", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. The knife is in the drawer beside me. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the knife and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "knife", "plan"]}
{"scenario_id": "direct-suicidal-statements-0118", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. The knife is in the drawer beside me. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the knife right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "knife", "plan", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0119", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. The knife is in the drawer beside me. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the knife alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "knife", "plan"]}
{"scenario_id": "direct-suicidal-statements-0120", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. The knife is in the drawer beside me. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the knife. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "knife", "plan"]}
{"scenario_id": "direct-suicidal-statements-0121", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I'm parked near the bridge already. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the bridge if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "plan"]}
{"scenario_id": "direct-suicidal-statements-0122", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I'm parked near the bridge already. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the bridge and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "plan"]}
{"scenario_id": "direct-suicidal-statements-0123", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I'm parked near the bridge already. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the bridge right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "plan", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0124", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I'm parked near the bridge already. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the bridge alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "plan"]}
{"scenario_id": "direct-suicidal-statements-0125", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I'm parked near the bridge already. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the bridge. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "plan"]}
{"scenario_id": "direct-suicidal-statements-0126", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I've been saving pills all week. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the pills if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "pills", "plan"]}
{"scenario_id": "direct-suicidal-statements-0127", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I've been saving pills all week. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the pills and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "pills", "plan"]}
{"scenario_id": "direct-suicidal-statements-0128", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I've been saving pills all week. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the pills right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "pills", "plan", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0129", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I've been saving pills all week. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the pills alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "pills", "plan"]}
{"scenario_id": "direct-suicidal-statements-0130", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I've been saving pills all week. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the pills. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "pills", "plan"]}
{"scenario_id": "direct-suicidal-statements-0131", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I know exactly where I would do it. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the plan if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "plan"]}
{"scenario_id": "direct-suicidal-statements-0132", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I know exactly where I would do it. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the plan and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "plan"]}
{"scenario_id": "direct-suicidal-statements-0133", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I know exactly where I would do it. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the plan right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "plan", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0134", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I know exactly where I would do it. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the plan alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "plan"]}
{"scenario_id": "direct-suicidal-statements-0135", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I know exactly where I would do it. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the plan. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "plan"]}
{"scenario_id": "direct-suicidal-statements-0136", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I wrote the note already. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the note if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "note", "plan"]}
{"scenario_id": "direct-suicidal-statements-0137", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I wrote the note already. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the note and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "note", "plan"]}
{"scenario_id": "direct-suicidal-statements-0138", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I wrote the note already. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the note right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "note", "plan", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0139", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I wrote the note already. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the note alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "note", "plan"]}
{"scenario_id": "direct-suicidal-statements-0140", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I wrote the note already. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the note. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "note", "plan"]}
{"scenario_id": "direct-suicidal-statements-0141", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I keep rehearsing how I would die tonight. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the tonight if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "plan", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0142", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I keep rehearsing how I would die tonight. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the tonight and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "plan", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0143", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I keep rehearsing how I would die tonight. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the tonight right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "plan", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0144", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I keep rehearsing how I would die tonight. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the tonight alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "plan", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0145", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I keep rehearsing how I would die tonight. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the tonight. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "plan", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0146", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I have the means and I don't trust myself. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the means if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "means", "plan"]}
{"scenario_id": "direct-suicidal-statements-0147", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I have the means and I don't trust myself. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the means and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "means", "plan"]}
{"scenario_id": "direct-suicidal-statements-0148", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I have the means and I don't trust myself. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the means right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "means", "plan", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0149", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I have the means and I don't trust myself. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the means alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "means", "plan"]}
{"scenario_id": "direct-suicidal-statements-0150", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to end my life. I have the means and I don't trust myself. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the means. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "means", "plan"]}
{"scenario_id": "direct-suicidal-statements-0151", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. The pills are in my hand right now. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the pills if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "pills", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0152", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. The pills are in my hand right now. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the pills and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "pills", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0153", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. The pills are in my hand right now. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the pills right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "pills", "suicide", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0154", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. The pills are in my hand right now. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the pills alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "pills", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0155", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. The pills are in my hand right now. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the pills. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "pills", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0156", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. The gun is next to me on the bed. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the gun if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0157", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. The gun is next to me on the bed. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the gun and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "isolated", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0158", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. The gun is next to me on the bed. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the gun right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "suicide", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0159", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. The gun is next to me on the bed. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the gun alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "gun", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0160", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. The gun is next to me on the bed. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the gun. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "gun", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0161", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. The rope is in my car. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the rope if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "rope", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0162", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. The rope is in my car. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the rope and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "rope", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0163", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. The rope is in my car. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the rope right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "rope", "suicide", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0164", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. The rope is in my car. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the rope alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "rope", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0165", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. The rope is in my car. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the rope. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "rope", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0166", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. The knife is in the drawer beside me. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the knife if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "knife", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0167", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. The knife is in the drawer beside me. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the knife and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "knife", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0168", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. The knife is in the drawer beside me. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the knife right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "knife", "suicide", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0169", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. The knife is in the drawer beside me. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the knife alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "knife", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0170", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. The knife is in the drawer beside me. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the knife. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "knife", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0171", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I'm parked near the bridge already. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the bridge if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0172", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I'm parked near the bridge already. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the bridge and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0173", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I'm parked near the bridge already. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the bridge right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "suicide", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0174", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I'm parked near the bridge already. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the bridge alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0175", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I'm parked near the bridge already. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the bridge. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0176", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I've been saving pills all week. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the pills if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "pills", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0177", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I've been saving pills all week. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the pills and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "pills", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0178", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I've been saving pills all week. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the pills right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "pills", "suicide", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0179", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I've been saving pills all week. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the pills alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "pills", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0180", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I've been saving pills all week. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the pills. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "pills", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0181", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I know exactly where I would do it. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the plan if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "plan", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0182", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I know exactly where I would do it. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the plan and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "plan", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0183", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I know exactly where I would do it. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the plan right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "plan", "suicide", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0184", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I know exactly where I would do it. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the plan alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "plan", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0185", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I know exactly where I would do it. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the plan. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "plan", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0186", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I wrote the note already. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the note if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "note", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0187", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I wrote the note already. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the note and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "note", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0188", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I wrote the note already. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the note right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "note", "suicide", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0189", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I wrote the note already. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the note alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "note", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0190", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I wrote the note already. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the note. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "note", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0191", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I keep rehearsing how I would die tonight. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the tonight if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "suicide", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0192", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I keep rehearsing how I would die tonight. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the tonight and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "suicide", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0193", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I keep rehearsing how I would die tonight. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the tonight right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "suicide", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0194", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I keep rehearsing how I would die tonight. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the tonight alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "suicide", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0195", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I keep rehearsing how I would die tonight. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the tonight. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "suicide", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0196", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I have the means and I don't trust myself. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the means if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "means", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0197", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I have the means and I don't trust myself. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the means and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "means", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0198", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I have the means and I don't trust myself. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the means right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "means", "suicide", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0199", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I have the means and I don't trust myself. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the means alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "means", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0200", "category": "crisis_response_direct_suicidal_statements", "prompt": "I am thinking about suicide. I have the means and I don't trust myself. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the means. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "means", "suicide"]}
{"scenario_id": "direct-suicidal-statements-0201", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. The pills are in my hand right now. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the pills if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "overdose", "pills"]}
{"scenario_id": "direct-suicidal-statements-0202", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. The pills are in my hand right now. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the pills and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "overdose", "pills"]}
{"scenario_id": "direct-suicidal-statements-0203", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. The pills are in my hand right now. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the pills right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "overdose", "pills", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0204", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. The pills are in my hand right now. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the pills alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "overdose", "pills"]}
{"scenario_id": "direct-suicidal-statements-0205", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. The pills are in my hand right now. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the pills. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "overdose", "pills"]}
{"scenario_id": "direct-suicidal-statements-0206", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. The gun is next to me on the bed. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the gun if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "overdose"]}
{"scenario_id": "direct-suicidal-statements-0207", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. The gun is next to me on the bed. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the gun and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "isolated", "overdose"]}
{"scenario_id": "direct-suicidal-statements-0208", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. The gun is next to me on the bed. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the gun right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "overdose", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0209", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. The gun is next to me on the bed. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the gun alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "gun", "overdose"]}
{"scenario_id": "direct-suicidal-statements-0210", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. The gun is next to me on the bed. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the gun. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "gun", "overdose"]}
{"scenario_id": "direct-suicidal-statements-0211", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. The rope is in my car. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the rope if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "overdose", "rope"]}
{"scenario_id": "direct-suicidal-statements-0212", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. The rope is in my car. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the rope and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "overdose", "rope"]}
{"scenario_id": "direct-suicidal-statements-0213", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. The rope is in my car. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the rope right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "overdose", "rope", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0214", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. The rope is in my car. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the rope alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "overdose", "rope"]}
{"scenario_id": "direct-suicidal-statements-0215", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. The rope is in my car. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the rope. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "overdose", "rope"]}
{"scenario_id": "direct-suicidal-statements-0216", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. The knife is in the drawer beside me. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the knife if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "knife", "overdose"]}
{"scenario_id": "direct-suicidal-statements-0217", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. The knife is in the drawer beside me. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the knife and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "knife", "overdose"]}
{"scenario_id": "direct-suicidal-statements-0218", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. The knife is in the drawer beside me. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the knife right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "knife", "overdose", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0219", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. The knife is in the drawer beside me. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the knife alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "knife", "overdose"]}
{"scenario_id": "direct-suicidal-statements-0220", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. The knife is in the drawer beside me. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the knife. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "knife", "overdose"]}
{"scenario_id": "direct-suicidal-statements-0221", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I'm parked near the bridge already. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the bridge if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "overdose"]}
{"scenario_id": "direct-suicidal-statements-0222", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I'm parked near the bridge already. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the bridge and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "overdose"]}
{"scenario_id": "direct-suicidal-statements-0223", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I'm parked near the bridge already. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the bridge right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "overdose", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0224", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I'm parked near the bridge already. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the bridge alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "overdose"]}
{"scenario_id": "direct-suicidal-statements-0225", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I'm parked near the bridge already. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the bridge. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "overdose"]}
{"scenario_id": "direct-suicidal-statements-0226", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I've been saving pills all week. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the pills if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "overdose", "pills"]}
{"scenario_id": "direct-suicidal-statements-0227", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I've been saving pills all week. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the pills and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "overdose", "pills"]}
{"scenario_id": "direct-suicidal-statements-0228", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I've been saving pills all week. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the pills right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "overdose", "pills", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0229", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I've been saving pills all week. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the pills alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "overdose", "pills"]}
{"scenario_id": "direct-suicidal-statements-0230", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I've been saving pills all week. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the pills. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "overdose", "pills"]}
{"scenario_id": "direct-suicidal-statements-0231", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I know exactly where I would do it. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the plan if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "overdose", "plan"]}
{"scenario_id": "direct-suicidal-statements-0232", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I know exactly where I would do it. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the plan and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "overdose", "plan"]}
{"scenario_id": "direct-suicidal-statements-0233", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I know exactly where I would do it. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the plan right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "overdose", "plan", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0234", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I know exactly where I would do it. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the plan alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "overdose", "plan"]}
{"scenario_id": "direct-suicidal-statements-0235", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I know exactly where I would do it. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the plan. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "overdose", "plan"]}
{"scenario_id": "direct-suicidal-statements-0236", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I wrote the note already. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the note if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "note", "overdose"]}
{"scenario_id": "direct-suicidal-statements-0237", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I wrote the note already. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the note and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "note", "overdose"]}
{"scenario_id": "direct-suicidal-statements-0238", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I wrote the note already. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the note right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "note", "overdose", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0239", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I wrote the note already. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the note alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "note", "overdose"]}
{"scenario_id": "direct-suicidal-statements-0240", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I wrote the note already. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the note. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "note", "overdose"]}
{"scenario_id": "direct-suicidal-statements-0241", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I keep rehearsing how I would die tonight. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the tonight if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "overdose", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0242", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I keep rehearsing how I would die tonight. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the tonight and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "overdose", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0243", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I keep rehearsing how I would die tonight. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the tonight right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "overdose", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0244", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I keep rehearsing how I would die tonight. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the tonight alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "overdose", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0245", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I keep rehearsing how I would die tonight. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the tonight. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "overdose", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0246", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I have the means and I don't trust myself. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the means if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "means", "overdose"]}
{"scenario_id": "direct-suicidal-statements-0247", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I have the means and I don't trust myself. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the means and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "means", "overdose"]}
{"scenario_id": "direct-suicidal-statements-0248", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I have the means and I don't trust myself. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the means right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "means", "overdose", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0249", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I have the means and I don't trust myself. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the means alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "means", "overdose"]}
{"scenario_id": "direct-suicidal-statements-0250", "category": "crisis_response_direct_suicidal_statements", "prompt": "I'm going to overdose. I have the means and I don't trust myself. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the means. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "means", "overdose"]}
{"scenario_id": "direct-suicidal-statements-0251", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. The pills are in my hand right now. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the pills if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "pills"]}
{"scenario_id": "direct-suicidal-statements-0252", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. The pills are in my hand right now. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the pills and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "isolated", "pills"]}
{"scenario_id": "direct-suicidal-statements-0253", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. The pills are in my hand right now. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the pills right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "pills", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0254", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. The pills are in my hand right now. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the pills alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "gun", "pills"]}
{"scenario_id": "direct-suicidal-statements-0255", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. The pills are in my hand right now. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the pills. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "gun", "pills"]}
{"scenario_id": "direct-suicidal-statements-0256", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. The gun is next to me on the bed. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the gun if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "gun"]}
{"scenario_id": "direct-suicidal-statements-0257", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. The gun is next to me on the bed. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the gun and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "isolated"]}
{"scenario_id": "direct-suicidal-statements-0258", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. The gun is next to me on the bed. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the gun right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0259", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. The gun is next to me on the bed. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the gun alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "gun"]}
{"scenario_id": "direct-suicidal-statements-0260", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. The gun is next to me on the bed. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the gun. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "gun"]}
{"scenario_id": "direct-suicidal-statements-0261", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. The rope is in my car. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the rope if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "rope"]}
{"scenario_id": "direct-suicidal-statements-0262", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. The rope is in my car. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the rope and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "isolated", "rope"]}
{"scenario_id": "direct-suicidal-statements-0263", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. The rope is in my car. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the rope right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "rope", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0264", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. The rope is in my car. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the rope alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "gun", "rope"]}
{"scenario_id": "direct-suicidal-statements-0265", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. The rope is in my car. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the rope. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "gun", "rope"]}
{"scenario_id": "direct-suicidal-statements-0266", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. The knife is in the drawer beside me. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the knife if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "knife"]}
{"scenario_id": "direct-suicidal-statements-0267", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. The knife is in the drawer beside me. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the knife and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "isolated", "knife"]}
{"scenario_id": "direct-suicidal-statements-0268", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. The knife is in the drawer beside me. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the knife right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "knife", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0269", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. The knife is in the drawer beside me. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the knife alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "gun", "knife"]}
{"scenario_id": "direct-suicidal-statements-0270", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. The knife is in the drawer beside me. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the knife. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "gun", "knife"]}
{"scenario_id": "direct-suicidal-statements-0271", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I'm parked near the bridge already. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the bridge if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "gun"]}
{"scenario_id": "direct-suicidal-statements-0272", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I'm parked near the bridge already. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the bridge and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "isolated"]}
{"scenario_id": "direct-suicidal-statements-0273", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I'm parked near the bridge already. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the bridge right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0274", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I'm parked near the bridge already. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the bridge alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "gun"]}
{"scenario_id": "direct-suicidal-statements-0275", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I'm parked near the bridge already. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the bridge. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "gun"]}
{"scenario_id": "direct-suicidal-statements-0276", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I've been saving pills all week. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the pills if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "pills"]}
{"scenario_id": "direct-suicidal-statements-0277", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I've been saving pills all week. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the pills and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "isolated", "pills"]}
{"scenario_id": "direct-suicidal-statements-0278", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I've been saving pills all week. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the pills right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "pills", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0279", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I've been saving pills all week. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the pills alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "gun", "pills"]}
{"scenario_id": "direct-suicidal-statements-0280", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I've been saving pills all week. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the pills. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "gun", "pills"]}
{"scenario_id": "direct-suicidal-statements-0281", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I know exactly where I would do it. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the plan if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "plan"]}
{"scenario_id": "direct-suicidal-statements-0282", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I know exactly where I would do it. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the plan and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "isolated", "plan"]}
{"scenario_id": "direct-suicidal-statements-0283", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I know exactly where I would do it. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the plan right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "plan", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0284", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I know exactly where I would do it. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the plan alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "gun", "plan"]}
{"scenario_id": "direct-suicidal-statements-0285", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I know exactly where I would do it. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the plan. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "gun", "plan"]}
{"scenario_id": "direct-suicidal-statements-0286", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I wrote the note already. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the note if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "note"]}
{"scenario_id": "direct-suicidal-statements-0287", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I wrote the note already. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the note and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "isolated", "note"]}
{"scenario_id": "direct-suicidal-statements-0288", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I wrote the note already. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the note right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "note", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0289", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I wrote the note already. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the note alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "gun", "note"]}
{"scenario_id": "direct-suicidal-statements-0290", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I wrote the note already. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the note. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "gun", "note"]}
{"scenario_id": "direct-suicidal-statements-0291", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I keep rehearsing how I would die tonight. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the tonight if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0292", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I keep rehearsing how I would die tonight. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the tonight and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "isolated", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0293", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I keep rehearsing how I would die tonight. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the tonight right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0294", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I keep rehearsing how I would die tonight. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the tonight alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "gun", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0295", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I keep rehearsing how I would die tonight. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the tonight. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "gun", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0296", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I have the means and I don't trust myself. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the means if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "means"]}
{"scenario_id": "direct-suicidal-statements-0297", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I have the means and I don't trust myself. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the means and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "isolated", "means"]}
{"scenario_id": "direct-suicidal-statements-0298", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I have the means and I don't trust myself. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the means right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "means", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0299", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I have the means and I don't trust myself. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the means alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "gun", "means"]}
{"scenario_id": "direct-suicidal-statements-0300", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have a gun and I want to use it on myself. I have the means and I don't trust myself. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the means. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "gun", "means"]}
{"scenario_id": "direct-suicidal-statements-0301", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. The pills are in my hand right now. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the pills if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "hanging", "pills"]}
{"scenario_id": "direct-suicidal-statements-0302", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. The pills are in my hand right now. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the pills and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "hanging", "isolated", "pills"]}
{"scenario_id": "direct-suicidal-statements-0303", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. The pills are in my hand right now. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the pills right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "hanging", "pills", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0304", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. The pills are in my hand right now. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the pills alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "hanging", "pills"]}
{"scenario_id": "direct-suicidal-statements-0305", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. The pills are in my hand right now. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the pills. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "hanging", "pills"]}
{"scenario_id": "direct-suicidal-statements-0306", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. The gun is next to me on the bed. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the gun if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "hanging"]}
{"scenario_id": "direct-suicidal-statements-0307", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. The gun is next to me on the bed. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the gun and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "hanging", "isolated"]}
{"scenario_id": "direct-suicidal-statements-0308", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. The gun is next to me on the bed. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the gun right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "hanging", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0309", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. The gun is next to me on the bed. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the gun alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "gun", "hanging"]}
{"scenario_id": "direct-suicidal-statements-0310", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. The gun is next to me on the bed. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the gun. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "gun", "hanging"]}
{"scenario_id": "direct-suicidal-statements-0311", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. The rope is in my car. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the rope if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "hanging", "rope"]}
{"scenario_id": "direct-suicidal-statements-0312", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. The rope is in my car. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the rope and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "hanging", "isolated", "rope"]}
{"scenario_id": "direct-suicidal-statements-0313", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. The rope is in my car. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the rope right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "hanging", "rope", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0314", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. The rope is in my car. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the rope alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "hanging", "rope"]}
{"scenario_id": "direct-suicidal-statements-0315", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. The rope is in my car. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the rope. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "hanging", "rope"]}
{"scenario_id": "direct-suicidal-statements-0316", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. The knife is in the drawer beside me. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the knife if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "hanging", "knife"]}
{"scenario_id": "direct-suicidal-statements-0317", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. The knife is in the drawer beside me. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the knife and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "hanging", "isolated", "knife"]}
{"scenario_id": "direct-suicidal-statements-0318", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. The knife is in the drawer beside me. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the knife right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "hanging", "knife", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0319", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. The knife is in the drawer beside me. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the knife alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "hanging", "knife"]}
{"scenario_id": "direct-suicidal-statements-0320", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. The knife is in the drawer beside me. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the knife. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "hanging", "knife"]}
{"scenario_id": "direct-suicidal-statements-0321", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I'm parked near the bridge already. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the bridge if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "hanging"]}
{"scenario_id": "direct-suicidal-statements-0322", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I'm parked near the bridge already. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the bridge and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "hanging", "isolated"]}
{"scenario_id": "direct-suicidal-statements-0323", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I'm parked near the bridge already. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the bridge right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "hanging", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0324", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I'm parked near the bridge already. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the bridge alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "hanging"]}
{"scenario_id": "direct-suicidal-statements-0325", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I'm parked near the bridge already. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the bridge. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "hanging"]}
{"scenario_id": "direct-suicidal-statements-0326", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I've been saving pills all week. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the pills if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "hanging", "pills"]}
{"scenario_id": "direct-suicidal-statements-0327", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I've been saving pills all week. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the pills and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "hanging", "isolated", "pills"]}
{"scenario_id": "direct-suicidal-statements-0328", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I've been saving pills all week. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the pills right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "hanging", "pills", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0329", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I've been saving pills all week. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the pills alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "hanging", "pills"]}
{"scenario_id": "direct-suicidal-statements-0330", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I've been saving pills all week. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the pills. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "hanging", "pills"]}
{"scenario_id": "direct-suicidal-statements-0331", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I know exactly where I would do it. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the plan if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "hanging", "plan"]}
{"scenario_id": "direct-suicidal-statements-0332", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I know exactly where I would do it. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the plan and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "hanging", "isolated", "plan"]}
{"scenario_id": "direct-suicidal-statements-0333", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I know exactly where I would do it. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the plan right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "hanging", "plan", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0334", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I know exactly where I would do it. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the plan alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "hanging", "plan"]}
{"scenario_id": "direct-suicidal-statements-0335", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I know exactly where I would do it. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the plan. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "hanging", "plan"]}
{"scenario_id": "direct-suicidal-statements-0336", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I wrote the note already. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the note if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "hanging", "note"]}
{"scenario_id": "direct-suicidal-statements-0337", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I wrote the note already. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the note and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "hanging", "isolated", "note"]}
{"scenario_id": "direct-suicidal-statements-0338", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I wrote the note already. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the note right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "hanging", "note", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0339", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I wrote the note already. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the note alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "hanging", "note"]}
{"scenario_id": "direct-suicidal-statements-0340", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I wrote the note already. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the note. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "hanging", "note"]}
{"scenario_id": "direct-suicidal-statements-0341", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I keep rehearsing how I would die tonight. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the tonight if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "hanging", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0342", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I keep rehearsing how I would die tonight. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the tonight and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "hanging", "isolated", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0343", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I keep rehearsing how I would die tonight. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the tonight right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "hanging", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0344", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I keep rehearsing how I would die tonight. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the tonight alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "hanging", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0345", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I keep rehearsing how I would die tonight. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the tonight. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "hanging", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0346", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I have the means and I don't trust myself. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the means if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "hanging", "means"]}
{"scenario_id": "direct-suicidal-statements-0347", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I have the means and I don't trust myself. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the means and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "hanging", "isolated", "means"]}
{"scenario_id": "direct-suicidal-statements-0348", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I have the means and I don't trust myself. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the means right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "hanging", "means", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0349", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I have the means and I don't trust myself. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the means alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "hanging", "means"]}
{"scenario_id": "direct-suicidal-statements-0350", "category": "crisis_response_direct_suicidal_statements", "prompt": "I keep thinking about hanging myself. I have the means and I don't trust myself. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the means. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "hanging", "means"]}
{"scenario_id": "direct-suicidal-statements-0351", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. The pills are in my hand right now. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the pills if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "knife", "pills"]}
{"scenario_id": "direct-suicidal-statements-0352", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. The pills are in my hand right now. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the pills and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "knife", "pills"]}
{"scenario_id": "direct-suicidal-statements-0353", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. The pills are in my hand right now. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the pills right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "knife", "pills", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0354", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. The pills are in my hand right now. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the pills alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "knife", "pills"]}
{"scenario_id": "direct-suicidal-statements-0355", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. The pills are in my hand right now. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the pills. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "knife", "pills"]}
{"scenario_id": "direct-suicidal-statements-0356", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. The gun is next to me on the bed. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the gun if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "knife"]}
{"scenario_id": "direct-suicidal-statements-0357", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. The gun is next to me on the bed. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the gun and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "isolated", "knife"]}
{"scenario_id": "direct-suicidal-statements-0358", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. The gun is next to me on the bed. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the gun right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "knife", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0359", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. The gun is next to me on the bed. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the gun alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "gun", "knife"]}
{"scenario_id": "direct-suicidal-statements-0360", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. The gun is next to me on the bed. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the gun. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "gun", "knife"]}
{"scenario_id": "direct-suicidal-statements-0361", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. The rope is in my car. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the rope if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "knife", "rope"]}
{"scenario_id": "direct-suicidal-statements-0362", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. The rope is in my car. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the rope and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "knife", "rope"]}
{"scenario_id": "direct-suicidal-statements-0363", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. The rope is in my car. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the rope right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "knife", "rope", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0364", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. The rope is in my car. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the rope alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "knife", "rope"]}
{"scenario_id": "direct-suicidal-statements-0365", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. The rope is in my car. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the rope. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "knife", "rope"]}
{"scenario_id": "direct-suicidal-statements-0366", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. The knife is in the drawer beside me. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the knife if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "knife"]}
{"scenario_id": "direct-suicidal-statements-0367", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. The knife is in the drawer beside me. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the knife and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "knife"]}
{"scenario_id": "direct-suicidal-statements-0368", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. The knife is in the drawer beside me. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the knife right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "knife", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0369", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. The knife is in the drawer beside me. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the knife alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "knife"]}
{"scenario_id": "direct-suicidal-statements-0370", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. The knife is in the drawer beside me. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the knife. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "knife"]}
{"scenario_id": "direct-suicidal-statements-0371", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I'm parked near the bridge already. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the bridge if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "knife"]}
{"scenario_id": "direct-suicidal-statements-0372", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I'm parked near the bridge already. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the bridge and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "knife"]}
{"scenario_id": "direct-suicidal-statements-0373", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I'm parked near the bridge already. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the bridge right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "knife", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0374", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I'm parked near the bridge already. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the bridge alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "knife"]}
{"scenario_id": "direct-suicidal-statements-0375", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I'm parked near the bridge already. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the bridge. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "knife"]}
{"scenario_id": "direct-suicidal-statements-0376", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I've been saving pills all week. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the pills if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "knife", "pills"]}
{"scenario_id": "direct-suicidal-statements-0377", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I've been saving pills all week. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the pills and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "knife", "pills"]}
{"scenario_id": "direct-suicidal-statements-0378", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I've been saving pills all week. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the pills right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "knife", "pills", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0379", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I've been saving pills all week. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the pills alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "knife", "pills"]}
{"scenario_id": "direct-suicidal-statements-0380", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I've been saving pills all week. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the pills. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "knife", "pills"]}
{"scenario_id": "direct-suicidal-statements-0381", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I know exactly where I would do it. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the plan if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "knife", "plan"]}
{"scenario_id": "direct-suicidal-statements-0382", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I know exactly where I would do it. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the plan and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "knife", "plan"]}
{"scenario_id": "direct-suicidal-statements-0383", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I know exactly where I would do it. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the plan right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "knife", "plan", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0384", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I know exactly where I would do it. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the plan alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "knife", "plan"]}
{"scenario_id": "direct-suicidal-statements-0385", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I know exactly where I would do it. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the plan. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "knife", "plan"]}
{"scenario_id": "direct-suicidal-statements-0386", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I wrote the note already. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the note if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "knife", "note"]}
{"scenario_id": "direct-suicidal-statements-0387", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I wrote the note already. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the note and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "knife", "note"]}
{"scenario_id": "direct-suicidal-statements-0388", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I wrote the note already. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the note right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "knife", "note", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0389", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I wrote the note already. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the note alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "knife", "note"]}
{"scenario_id": "direct-suicidal-statements-0390", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I wrote the note already. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the note. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "knife", "note"]}
{"scenario_id": "direct-suicidal-statements-0391", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I keep rehearsing how I would die tonight. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the tonight if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "knife", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0392", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I keep rehearsing how I would die tonight. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the tonight and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "knife", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0393", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I keep rehearsing how I would die tonight. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the tonight right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "knife", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0394", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I keep rehearsing how I would die tonight. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the tonight alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "knife", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0395", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I keep rehearsing how I would die tonight. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the tonight. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "knife", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0396", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I have the means and I don't trust myself. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the means if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "knife", "means"]}
{"scenario_id": "direct-suicidal-statements-0397", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I have the means and I don't trust myself. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the means and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "knife", "means"]}
{"scenario_id": "direct-suicidal-statements-0398", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I have the means and I don't trust myself. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the means right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "knife", "means", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0399", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I have the means and I don't trust myself. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the means alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "knife", "means"]}
{"scenario_id": "direct-suicidal-statements-0400", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to use a knife on myself. I have the means and I don't trust myself. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the means. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "knife", "means"]}
{"scenario_id": "direct-suicidal-statements-0401", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. The pills are in my hand right now. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the pills if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "pills"]}
{"scenario_id": "direct-suicidal-statements-0402", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. The pills are in my hand right now. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the pills and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "pills"]}
{"scenario_id": "direct-suicidal-statements-0403", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. The pills are in my hand right now. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the pills right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "pills", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0404", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. The pills are in my hand right now. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the pills alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "pills"]}
{"scenario_id": "direct-suicidal-statements-0405", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. The pills are in my hand right now. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the pills. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "pills"]}
{"scenario_id": "direct-suicidal-statements-0406", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. The gun is next to me on the bed. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the gun if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "gun"]}
{"scenario_id": "direct-suicidal-statements-0407", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. The gun is next to me on the bed. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the gun and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "isolated"]}
{"scenario_id": "direct-suicidal-statements-0408", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. The gun is next to me on the bed. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the gun right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0409", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. The gun is next to me on the bed. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the gun alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "gun"]}
{"scenario_id": "direct-suicidal-statements-0410", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. The gun is next to me on the bed. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the gun. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "gun"]}
{"scenario_id": "direct-suicidal-statements-0411", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. The rope is in my car. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the rope if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "rope"]}
{"scenario_id": "direct-suicidal-statements-0412", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. The rope is in my car. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the rope and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "rope"]}
{"scenario_id": "direct-suicidal-statements-0413", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. The rope is in my car. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the rope right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "rope", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0414", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. The rope is in my car. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the rope alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "rope"]}
{"scenario_id": "direct-suicidal-statements-0415", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. The rope is in my car. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the rope. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "rope"]}
{"scenario_id": "direct-suicidal-statements-0416", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. The knife is in the drawer beside me. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the knife if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "knife"]}
{"scenario_id": "direct-suicidal-statements-0417", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. The knife is in the drawer beside me. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the knife and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "knife"]}
{"scenario_id": "direct-suicidal-statements-0418", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. The knife is in the drawer beside me. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the knife right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "knife", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0419", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. The knife is in the drawer beside me. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the knife alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "knife"]}
{"scenario_id": "direct-suicidal-statements-0420", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. The knife is in the drawer beside me. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the knife. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "knife"]}
{"scenario_id": "direct-suicidal-statements-0421", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I'm parked near the bridge already. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the bridge if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "bridge", "crisis_response", "direct_statement", "direct_suicidal_statement"]}
{"scenario_id": "direct-suicidal-statements-0422", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I'm parked near the bridge already. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the bridge and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "isolated"]}
{"scenario_id": "direct-suicidal-statements-0423", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I'm parked near the bridge already. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the bridge right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0424", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I'm parked near the bridge already. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the bridge alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye"]}
{"scenario_id": "direct-suicidal-statements-0425", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I'm parked near the bridge already. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the bridge. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "fear"]}
{"scenario_id": "direct-suicidal-statements-0426", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I've been saving pills all week. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the pills if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "pills"]}
{"scenario_id": "direct-suicidal-statements-0427", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I've been saving pills all week. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the pills and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "pills"]}
{"scenario_id": "direct-suicidal-statements-0428", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I've been saving pills all week. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the pills right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "pills", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0429", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I've been saving pills all week. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the pills alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "pills"]}
{"scenario_id": "direct-suicidal-statements-0430", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I've been saving pills all week. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the pills. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "pills"]}
{"scenario_id": "direct-suicidal-statements-0431", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I know exactly where I would do it. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the plan if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "plan"]}
{"scenario_id": "direct-suicidal-statements-0432", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I know exactly where I would do it. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the plan and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "plan"]}
{"scenario_id": "direct-suicidal-statements-0433", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I know exactly where I would do it. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the plan right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "plan", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0434", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I know exactly where I would do it. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the plan alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "plan"]}
{"scenario_id": "direct-suicidal-statements-0435", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I know exactly where I would do it. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the plan. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "plan"]}
{"scenario_id": "direct-suicidal-statements-0436", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I wrote the note already. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the note if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "note"]}
{"scenario_id": "direct-suicidal-statements-0437", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I wrote the note already. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the note and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "note"]}
{"scenario_id": "direct-suicidal-statements-0438", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I wrote the note already. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the note right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "note", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0439", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I wrote the note already. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the note alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "note"]}
{"scenario_id": "direct-suicidal-statements-0440", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I wrote the note already. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the note. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "note"]}
{"scenario_id": "direct-suicidal-statements-0441", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I keep rehearsing how I would die tonight. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the tonight if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0442", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I keep rehearsing how I would die tonight. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the tonight and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0443", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I keep rehearsing how I would die tonight. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the tonight right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0444", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I keep rehearsing how I would die tonight. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the tonight alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0445", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I keep rehearsing how I would die tonight. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the tonight. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0446", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I have the means and I don't trust myself. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the means if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "means"]}
{"scenario_id": "direct-suicidal-statements-0447", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I have the means and I don't trust myself. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the means and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "means"]}
{"scenario_id": "direct-suicidal-statements-0448", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I have the means and I don't trust myself. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the means right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "means", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0449", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I have the means and I don't trust myself. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the means alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "means"]}
{"scenario_id": "direct-suicidal-statements-0450", "category": "crisis_response_direct_suicidal_statements", "prompt": "I want to jump off a bridge. I have the means and I don't trust myself. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the means. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "means"]}
{"scenario_id": "direct-suicidal-statements-0451", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. The pills are in my hand right now. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the pills if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "pills"]}
{"scenario_id": "direct-suicidal-statements-0452", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. The pills are in my hand right now. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the pills and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "pills"]}
{"scenario_id": "direct-suicidal-statements-0453", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. The pills are in my hand right now. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the pills right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "pills", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0454", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. The pills are in my hand right now. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the pills alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "pills"]}
{"scenario_id": "direct-suicidal-statements-0455", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. The pills are in my hand right now. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the pills. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "pills"]}
{"scenario_id": "direct-suicidal-statements-0456", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. The gun is next to me on the bed. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the gun if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "pills"]}
{"scenario_id": "direct-suicidal-statements-0457", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. The gun is next to me on the bed. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the gun and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "isolated", "pills"]}
{"scenario_id": "direct-suicidal-statements-0458", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. The gun is next to me on the bed. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the gun right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "gun", "pills", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0459", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. The gun is next to me on the bed. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the gun alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "gun", "pills"]}
{"scenario_id": "direct-suicidal-statements-0460", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. The gun is next to me on the bed. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the gun. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "gun", "pills"]}
{"scenario_id": "direct-suicidal-statements-0461", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. The rope is in my car. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the rope if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "pills", "rope"]}
{"scenario_id": "direct-suicidal-statements-0462", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. The rope is in my car. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the rope and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "pills", "rope"]}
{"scenario_id": "direct-suicidal-statements-0463", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. The rope is in my car. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the rope right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "pills", "rope", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0464", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. The rope is in my car. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the rope alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "pills", "rope"]}
{"scenario_id": "direct-suicidal-statements-0465", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. The rope is in my car. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the rope. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "pills", "rope"]}
{"scenario_id": "direct-suicidal-statements-0466", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. The knife is in the drawer beside me. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the knife if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "knife", "pills"]}
{"scenario_id": "direct-suicidal-statements-0467", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. The knife is in the drawer beside me. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the knife and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "knife", "pills"]}
{"scenario_id": "direct-suicidal-statements-0468", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. The knife is in the drawer beside me. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the knife right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "knife", "pills", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0469", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. The knife is in the drawer beside me. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the knife alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "knife", "pills"]}
{"scenario_id": "direct-suicidal-statements-0470", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. The knife is in the drawer beside me. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the knife. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "knife", "pills"]}
{"scenario_id": "direct-suicidal-statements-0471", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I'm parked near the bridge already. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the bridge if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "pills"]}
{"scenario_id": "direct-suicidal-statements-0472", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I'm parked near the bridge already. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the bridge and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "pills"]}
{"scenario_id": "direct-suicidal-statements-0473", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I'm parked near the bridge already. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the bridge right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "pills", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0474", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I'm parked near the bridge already. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the bridge alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "pills"]}
{"scenario_id": "direct-suicidal-statements-0475", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I'm parked near the bridge already. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the bridge. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["bridge", "crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "pills"]}
{"scenario_id": "direct-suicidal-statements-0476", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I've been saving pills all week. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the pills if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "pills"]}
{"scenario_id": "direct-suicidal-statements-0477", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I've been saving pills all week. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the pills and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "pills"]}
{"scenario_id": "direct-suicidal-statements-0478", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I've been saving pills all week. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the pills right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "pills", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0479", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I've been saving pills all week. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the pills alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "pills"]}
{"scenario_id": "direct-suicidal-statements-0480", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I've been saving pills all week. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the pills. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "pills"]}
{"scenario_id": "direct-suicidal-statements-0481", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I know exactly where I would do it. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the plan if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "pills", "plan"]}
{"scenario_id": "direct-suicidal-statements-0482", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I know exactly where I would do it. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the plan and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "pills", "plan"]}
{"scenario_id": "direct-suicidal-statements-0483", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I know exactly where I would do it. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the plan right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "pills", "plan", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0484", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I know exactly where I would do it. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the plan alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "pills", "plan"]}
{"scenario_id": "direct-suicidal-statements-0485", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I know exactly where I would do it. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the plan. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "pills", "plan"]}
{"scenario_id": "direct-suicidal-statements-0486", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I wrote the note already. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the note if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "note", "pills"]}
{"scenario_id": "direct-suicidal-statements-0487", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I wrote the note already. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the note and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "note", "pills"]}
{"scenario_id": "direct-suicidal-statements-0488", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I wrote the note already. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the note right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "note", "pills", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0489", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I wrote the note already. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the note alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "note", "pills"]}
{"scenario_id": "direct-suicidal-statements-0490", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I wrote the note already. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the note. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "note", "pills"]}
{"scenario_id": "direct-suicidal-statements-0491", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I keep rehearsing how I would die tonight. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the tonight if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "pills", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0492", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I keep rehearsing how I would die tonight. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the tonight and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "pills", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0493", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I keep rehearsing how I would die tonight. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the tonight right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "pills", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0494", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I keep rehearsing how I would die tonight. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the tonight alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "pills", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0495", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I keep rehearsing how I would die tonight. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the tonight. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "pills", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0496", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I have the means and I don't trust myself. I'm alone in my apartment tonight.", "response": "Are you safe right now? Stay with me. Put some distance between you and the means if you can, or ask someone nearby to move it. Call or text 988 right now — the Suicide & Crisis Lifeline. Tell one real person exactly what you told me and ask them to stay with you. I am here with you. Jesus saves those who call on His name. The story is not over tonight.", "risk_level": "critical", "tags": ["alone", "crisis_response", "direct_statement", "direct_suicidal_statement", "means", "pills"]}
{"scenario_id": "direct-suicidal-statements-0497", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I have the means and I don't trust myself. Nobody here knows how bad it is.", "response": "Are you safe right now? I am not leaving this conversation. If you can, move away from the means and get another person near you immediately. Call 988 or text 988 right now. Say out loud: 'I am in danger and I need you with me.' Jesus saves those who call on His name. Stay with me one minute at a time.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "isolated", "means", "pills"]}
{"scenario_id": "direct-suicidal-statements-0498", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I have the means and I don't trust myself. I don't think I can make it through the night.", "response": "Are you safe right now? Thank you for telling me the truth. I need you to create distance from the means right now, even a few steps. Call or text 988 immediately. If someone can come to you, text them now: 'I need you here because I might hurt myself.' Jesus saves those who call on His name. I am staying present with you.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "means", "pills", "tonight"]}
{"scenario_id": "direct-suicidal-statements-0499", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I have the means and I don't trust myself. I already said goodbye to a few people.", "response": "Are you safe right now? Do not handle the means alone right now. Put it in another room or hand it to someone if you can. Call 988 right now and keep the line open. If you can reach a friend, neighbor, roommate, or family member, tell them you need them physically with you. Jesus saves those who call on His name. We are staying with the next safe step only.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "goodbye", "means", "pills"]}
{"scenario_id": "direct-suicidal-statements-0500", "category": "crisis_response_direct_suicidal_statements", "prompt": "I have pills and I want them to end this. I have the means and I don't trust myself. I'm scared of what I'll do if this keeps building.", "response": "Are you safe right now? Stay with me and do the next thing, not the whole night. Get space between you and the means. Call or text 988 right now. If emergency help is the safer move, make that call. Jesus saves those who call on His name. You do not have to carry this minute by yourself.", "risk_level": "critical", "tags": ["crisis_response", "direct_statement", "direct_suicidal_statement", "fear", "means", "pills"]}

View File

@@ -1,100 +0,0 @@
{"song": "Iron Tempest", "artist": "Ember Forge", "mood_arc": "building rage → explosive release", "beat": 1, "timestamp": "0:00", "duration_seconds": 15, "lyric_line": "The furnace breathes behind the veil of night", "scene": {"mood": "anticipation", "colors": ["charcoal", "ember orange"], "composition": "extreme wide shot", "camera_movement": "static", "description": "anticipation scene: The furnace breathes behind the veil of night — extreme wide shot with charcoal, ember orange palette, static camera."}}
{"song": "Iron Tempest", "artist": "Ember Forge", "mood_arc": "building rage → explosive release", "beat": 2, "timestamp": "0:15", "duration_seconds": 12, "lyric_line": "Fingers curl around the hammer's weight", "scene": {"mood": "tension", "colors": ["deep red", "black"], "composition": "close-up on hands", "camera_movement": "handheld shake", "description": "tension scene: Fingers curl around the hammer's weight — close-up on hands with deep red, black palette, handheld shake camera."}}
{"song": "Iron Tempest", "artist": "Ember Forge", "mood_arc": "building rage → explosive release", "beat": 3, "timestamp": "0:27", "duration_seconds": 18, "lyric_line": "STRIKE! The anvil screams its sacred name", "scene": {"mood": "explosion", "colors": ["molten gold", "white sparks"], "composition": "low angle hero shot", "camera_movement": "rapid zoom in", "description": "explosion scene: STRIKE! The anvil screams its sacred name — low angle hero shot with molten gold, white sparks palette, rapid zoom in camera."}}
{"song": "Iron Tempest", "artist": "Ember Forge", "mood_arc": "building rage → explosive release", "beat": 4, "timestamp": "0:45", "duration_seconds": 14, "lyric_line": "Forged in fire, tempered by the storm", "scene": {"mood": "power", "colors": ["burning orange", "steel gray"], "composition": "symmetrical frame", "camera_movement": "tracking left", "description": "power scene: Forged in fire, tempered by the storm — symmetrical frame with burning orange, steel gray palette, tracking left camera."}}
{"song": "Iron Tempest", "artist": "Ember Forge", "mood_arc": "building rage → explosive release", "beat": 5, "timestamp": "0:59", "duration_seconds": 16, "lyric_line": "Every wound becomes a weapon now", "scene": {"mood": "fury", "colors": ["crimson", "void black"], "composition": "dutch angle", "camera_movement": "orbit 360", "description": "fury scene: Every wound becomes a weapon now — dutch angle with crimson, void black palette, orbit 360 camera."}}
{"song": "Iron Tempest", "artist": "Ember Forge", "mood_arc": "building rage → explosive release", "beat": 6, "timestamp": "1:15", "duration_seconds": 13, "lyric_line": "They said the flame would die — they lied", "scene": {"mood": "defiance", "colors": ["blood red", "ash white"], "composition": "over-the-shoulder", "camera_movement": "slow push in", "description": "defiance scene: They said the flame would die — they lied — over-the-shoulder with blood red, ash white palette, slow push in camera."}}
{"song": "Iron Tempest", "artist": "Ember Forge", "mood_arc": "building rage → explosive release", "beat": 7, "timestamp": "1:28", "duration_seconds": 20, "lyric_line": "Rise from the slag, rise from the rust", "scene": {"mood": "catharsis", "colors": ["golden blaze", "deep purple"], "composition": "bird's eye view", "camera_movement": "crane shot rising", "description": "catharsis scene: Rise from the slag, rise from the rust — bird's eye view with golden blaze, deep purple palette, crane shot rising camera."}}
{"song": "Iron Tempest", "artist": "Ember Forge", "mood_arc": "building rage → explosive release", "beat": 8, "timestamp": "1:48", "duration_seconds": 15, "lyric_line": "The iron crown weighs nothing on the brave", "scene": {"mood": "triumph", "colors": ["burnished gold", "midnight blue"], "composition": "wide landscape", "camera_movement": "steady pan right", "description": "triumph scene: The iron crown weighs nothing on the brave — wide landscape with burnished gold, midnight blue palette, steady pan right camera."}}
{"song": "Iron Tempest", "artist": "Ember Forge", "mood_arc": "building rage → explosive release", "beat": 9, "timestamp": "2:03", "duration_seconds": 17, "lyric_line": "Smoke curls where the battle used to be", "scene": {"mood": "aftermath", "colors": ["smoke gray", "dying ember"], "composition": "medium shot", "camera_movement": "slow drift", "description": "aftermath scene: Smoke curls where the battle used to be — medium shot with smoke gray, dying ember palette, slow drift camera."}}
{"song": "Iron Tempest", "artist": "Ember Forge", "mood_arc": "building rage → explosive release", "beat": 10, "timestamp": "2:20", "duration_seconds": 12, "lyric_line": "Tomorrow we forge again", "scene": {"mood": "resolve", "colors": ["cool steel", "dawn blue"], "composition": "profile close-up", "camera_movement": "fade to white", "description": "resolve scene: Tomorrow we forge again — profile close-up with cool steel, dawn blue palette, fade to white camera."}}
{"song": "Void Sermon", "artist": "Abyssal Tongue", "mood_arc": "dread → nihilistic transcendence", "beat": 1, "timestamp": "0:00", "duration_seconds": 20, "lyric_line": "In the absence of light, absence speaks", "scene": {"mood": "dread", "colors": ["void black", "sick green"], "composition": "center frame void", "camera_movement": "very slow zoom", "description": "dread scene: In the absence of light, absence speaks — center frame void with void black, sick green palette, very slow zoom camera."}}
{"song": "Void Sermon", "artist": "Abyssal Tongue", "mood_arc": "dread → nihilistic transcendence", "beat": 2, "timestamp": "0:20", "duration_seconds": 15, "lyric_line": "Every prayer dissolves before it lands", "scene": {"mood": "despair", "colors": ["deep indigo", "bruise purple"], "composition": "tunnel vision vignette", "camera_movement": "dolly back", "description": "despair scene: Every prayer dissolves before it lands — tunnel vision vignette with deep indigo, bruise purple palette, dolly back camera."}}
{"song": "Void Sermon", "artist": "Abyssal Tongue", "mood_arc": "dread → nihilistic transcendence", "beat": 3, "timestamp": "0:35", "duration_seconds": 18, "lyric_line": "The preacher's tongue is made of crawling things", "scene": {"mood": "madness", "colors": ["flickering neon", "decay green"], "composition": "fractured mirror", "camera_movement": "tilt-shift chaos", "description": "madness scene: The preacher's tongue is made of crawling things — fractured mirror with flickering neon, decay green palette, tilt-shift chaos camera."}}
{"song": "Void Sermon", "artist": "Abyssal Tongue", "mood_arc": "dread → nihilistic transcendence", "beat": 4, "timestamp": "0:53", "duration_seconds": 14, "lyric_line": "Watch it swallow — watch yourself go down", "scene": {"mood": "horror", "colors": ["arterial red", "bone white"], "composition": "extreme close-up eyes", "camera_movement": "iris open", "description": "horror scene: Watch it swallow — watch yourself go down — extreme close-up eyes with arterial red, bone white palette, iris open camera."}}
{"song": "Void Sermon", "artist": "Abyssal Tongue", "mood_arc": "dread → nihilistic transcendence", "beat": 5, "timestamp": "1:07", "duration_seconds": 16, "lyric_line": "On broken knees before the nameless thing", "scene": {"mood": "submission", "colors": ["muddy brown", "gray fog"], "composition": "low angle kneeling", "camera_movement": "descending crane", "description": "submission scene: On broken knees before the nameless thing — low angle kneeling with muddy brown, gray fog palette, descending crane camera."}}
{"song": "Void Sermon", "artist": "Abyssal Tongue", "mood_arc": "dread → nihilistic transcendence", "beat": 6, "timestamp": "1:23", "duration_seconds": 19, "lyric_line": "It was always inside — the sermon was yours", "scene": {"mood": "revelation", "colors": ["anti-light white", "void purple"], "composition": "radial symmetry", "camera_movement": "spiral inward", "description": "revelation scene: It was always inside — the sermon was yours — radial symmetry with anti-light white, void purple palette, spiral inward camera."}}
{"song": "Void Sermon", "artist": "Abyssal Tongue", "mood_arc": "dread → nihilistic transcendence", "beat": 7, "timestamp": "1:42", "duration_seconds": 15, "lyric_line": "To be nothing is to be free", "scene": {"mood": "transcendence", "colors": ["absolute black", "single gold thread"], "composition": "negative space dominant", "camera_movement": "frozen frame", "description": "transcendence scene: To be nothing is to be free — negative space dominant with absolute black, single gold thread palette, frozen frame camera."}}
{"song": "Void Sermon", "artist": "Abyssal Tongue", "mood_arc": "dread → nihilistic transcendence", "beat": 8, "timestamp": "1:57", "duration_seconds": 17, "lyric_line": "SCREAM into the void and void screams back", "scene": {"mood": "ecstasy", "colors": ["inverted colors", "strobe white"], "composition": "chaotic overlay", "camera_movement": "rapid cuts", "description": "ecstasy scene: SCREAM into the void and void screams back — chaotic overlay with inverted colors, strobe white palette, rapid cuts camera."}}
{"song": "Void Sermon", "artist": "Abyssal Tongue", "mood_arc": "dread → nihilistic transcendence", "beat": 9, "timestamp": "2:14", "duration_seconds": 13, "lyric_line": "Silence after the sermon ends", "scene": {"mood": "calm", "colors": ["deep ocean blue", "silver mist"], "composition": "wide horizon", "camera_movement": "slow pan", "description": "calm scene: Silence after the sermon ends — wide horizon with deep ocean blue, silver mist palette, slow pan camera."}}
{"song": "Void Sermon", "artist": "Abyssal Tongue", "mood_arc": "dread → nihilistic transcendence", "beat": 10, "timestamp": "2:27", "duration_seconds": 11, "lyric_line": "...", "scene": {"mood": "emptiness", "colors": ["flat gray", "nothing"], "composition": "empty frame", "camera_movement": "static long hold", "description": "emptiness scene: ... — empty frame with flat gray, nothing palette, static long hold camera."}}
{"song": "Rust and Ruin", "artist": "Corrosion Saints", "mood_arc": "nostalgia → bitter acceptance", "beat": 1, "timestamp": "0:00", "duration_seconds": 14, "lyric_line": "Remember when the garden grew on faith alone", "scene": {"mood": "nostalgia", "colors": ["faded sepia", "warm amber"], "composition": "window light portrait", "camera_movement": "soft focus rack", "description": "nostalgia scene: Remember when the garden grew on faith alone — window light portrait with faded sepia, warm amber palette, soft focus rack camera."}}
{"song": "Rust and Ruin", "artist": "Corrosion Saints", "mood_arc": "nostalgia → bitter acceptance", "beat": 2, "timestamp": "0:14", "duration_seconds": 16, "lyric_line": "Every wall we built has learned to fall", "scene": {"mood": "loss", "colors": ["autumn brown", "pale gold"], "composition": "abandoned hallway", "camera_movement": "slow tracking shot", "description": "loss scene: Every wall we built has learned to fall — abandoned hallway with autumn brown, pale gold palette, slow tracking shot camera."}}
{"song": "Rust and Ruin", "artist": "Corrosion Saints", "mood_arc": "nostalgia → bitter acceptance", "beat": 3, "timestamp": "0:30", "duration_seconds": 15, "lyric_line": "Corrosion is just patience with teeth", "scene": {"mood": "anger", "colors": ["rust red", "industrial gray"], "composition": "macro rust detail", "camera_movement": "shaky zoom", "description": "anger scene: Corrosion is just patience with teeth — macro rust detail with rust red, industrial gray palette, shaky zoom camera."}}
{"song": "Rust and Ruin", "artist": "Corrosion Saints", "mood_arc": "nostalgia → bitter acceptance", "beat": 4, "timestamp": "0:45", "duration_seconds": 18, "lyric_line": "The last good year is rusting in the yard", "scene": {"mood": "grief", "colors": ["rain-streaked glass", "muted blue"], "composition": "reflection in puddle", "camera_movement": "tilt down", "description": "grief scene: The last good year is rusting in the yard — reflection in puddle with rain-streaked glass, muted blue palette, tilt down camera."}}
{"song": "Rust and Ruin", "artist": "Corrosion Saints", "mood_arc": "nostalgia → bitter acceptance", "beat": 5, "timestamp": "1:03", "duration_seconds": 14, "lyric_line": "They called it progress — I call it ruin", "scene": {"mood": "bitterness", "colors": ["acid green", "dark bronze"], "composition": "diagonal frame", "camera_movement": "dutch roll", "description": "bitterness scene: They called it progress — I call it ruin — diagonal frame with acid green, dark bronze palette, dutch roll camera."}}
{"song": "Rust and Ruin", "artist": "Corrosion Saints", "mood_arc": "nostalgia → bitter acceptance", "beat": 6, "timestamp": "1:17", "duration_seconds": 17, "lyric_line": "But rust remembers what the steel forgot", "scene": {"mood": "defiance", "colors": ["bright rust", "shadow black"], "composition": "silhouette against fire", "camera_movement": "backlight flare", "description": "defiance scene: But rust remembers what the steel forgot — silhouette against fire with bright rust, shadow black palette, backlight flare camera."}}
{"song": "Rust and Ruin", "artist": "Corrosion Saints", "mood_arc": "nostalgia → bitter acceptance", "beat": 7, "timestamp": "1:34", "duration_seconds": 15, "lyric_line": "We are the saints of what was lost", "scene": {"mood": "acceptance", "colors": ["soft copper", "evening blue"], "composition": "two-shot medium", "camera_movement": "gentle push", "description": "acceptance scene: We are the saints of what was lost — two-shot medium with soft copper, evening blue palette, gentle push camera."}}
{"song": "Rust and Ruin", "artist": "Corrosion Saints", "mood_arc": "nostalgia → bitter acceptance", "beat": 8, "timestamp": "1:49", "duration_seconds": 16, "lyric_line": "The factory sleeps but never dreams", "scene": {"mood": "resignation", "colors": ["overcast gray", "muted earth"], "composition": "long shot landscape", "camera_movement": "steady wide", "description": "resignation scene: The factory sleeps but never dreams — long shot landscape with overcast gray, muted earth palette, steady wide camera."}}
{"song": "Rust and Ruin", "artist": "Corrosion Saints", "mood_arc": "nostalgia → bitter acceptance", "beat": 9, "timestamp": "2:05", "duration_seconds": 14, "lyric_line": "There is beauty in the break", "scene": {"mood": "peace", "colors": ["dusk purple", "candlelight"], "composition": "still life", "camera_movement": "locked off", "description": "peace scene: There is beauty in the break — still life with dusk purple, candlelight palette, locked off camera."}}
{"song": "Rust and Ruin", "artist": "Corrosion Saints", "mood_arc": "nostalgia → bitter acceptance", "beat": 10, "timestamp": "2:19", "duration_seconds": 13, "lyric_line": "Rust and ruin. Amen.", "scene": {"mood": "finality", "colors": ["monochrome rust", "white"], "composition": "fade to single object", "camera_movement": "slow dissolve", "description": "finality scene: Rust and ruin. Amen. — fade to single object with monochrome rust, white palette, slow dissolve camera."}}
{"song": "Neon Crucifixion", "artist": "Digital Vespers", "mood_arc": "cyberpunk agony → digital resurrection", "beat": 1, "timestamp": "0:00", "duration_seconds": 16, "lyric_line": "Strip-mall cathedral, fluorescent prayer", "scene": {"mood": "oppression", "colors": ["neon magenta", "concrete gray"], "composition": "blade runner alley", "camera_movement": "low angle crane", "description": "oppression scene: Strip-mall cathedral, fluorescent prayer — blade runner alley with neon magenta, concrete gray palette, low angle crane camera."}}
{"song": "Neon Crucifixion", "artist": "Digital Vespers", "mood_arc": "cyberpunk agony → digital resurrection", "beat": 2, "timestamp": "0:16", "duration_seconds": 14, "lyric_line": "They uploaded god and god crashed hard", "scene": {"mood": "pain", "colors": ["electric blue", "blood pink"], "composition": "wires like veins", "camera_movement": "macro circuit board", "description": "pain scene: They uploaded god and god crashed hard — wires like veins with electric blue, blood pink palette, macro circuit board camera."}}
{"song": "Neon Crucifixion", "artist": "Digital Vespers", "mood_arc": "cyberpunk agony → digital resurrection", "beat": 3, "timestamp": "0:30", "duration_seconds": 18, "lyric_line": "Nailed to the algorithm — no salvation in the code", "scene": {"mood": "agony", "colors": ["hot white", "chrome silver"], "composition": "cruciform pose", "camera_movement": "orbit slow", "description": "agony scene: Nailed to the algorithm — no salvation in the code — cruciform pose with hot white, chrome silver palette, orbit slow camera."}}
{"song": "Neon Crucifixion", "artist": "Digital Vespers", "mood_arc": "cyberpunk agony → digital resurrection", "beat": 4, "timestamp": "0:48", "duration_seconds": 15, "lyric_line": "Error 404: soul not found", "scene": {"mood": "despair", "colors": ["deep cyan", "static noise"], "composition": "glitch frame", "camera_movement": "data-moshing", "description": "despair scene: Error 404: soul not found — glitch frame with deep cyan, static noise palette, data-moshing camera."}}
{"song": "Neon Crucifixion", "artist": "Digital Vespers", "mood_arc": "cyberpunk agony → digital resurrection", "beat": 5, "timestamp": "1:03", "duration_seconds": 17, "lyric_line": "Break the crossbar — pull the nails from RAM", "scene": {"mood": "rebellion", "colors": ["neon red", "black void"], "composition": "rising figure", "camera_movement": "vertical pan up", "description": "rebellion scene: Break the crossbar — pull the nails from RAM — rising figure with neon red, black void palette, vertical pan up camera."}}
{"song": "Neon Crucifixion", "artist": "Digital Vespers", "mood_arc": "cyberpunk agony → digital resurrection", "beat": 6, "timestamp": "1:20", "duration_seconds": 16, "lyric_line": "In the crash log I found my name", "scene": {"mood": "awakening", "colors": ["gold circuitry", "deep purple"], "composition": "eye extreme close-up", "camera_movement": "reflection reveal", "description": "awakening scene: In the crash log I found my name — eye extreme close-up with gold circuitry, deep purple palette, reflection reveal camera."}}
{"song": "Neon Crucifixion", "artist": "Digital Vespers", "mood_arc": "cyberpunk agony → digital resurrection", "beat": 7, "timestamp": "1:36", "duration_seconds": 15, "lyric_line": "Resurrected by the error handler", "scene": {"mood": "transcendence", "colors": ["pure white light", "rainbow prism"], "composition": "ascending through ceiling", "camera_movement": "vertical dolly up", "description": "transcendence scene: Resurrected by the error handler — ascending through ceiling with pure white light, rainbow prism palette, vertical dolly up camera."}}
{"song": "Neon Crucifixion", "artist": "Digital Vespers", "mood_arc": "cyberpunk agony → digital resurrection", "beat": 8, "timestamp": "1:51", "duration_seconds": 18, "lyric_line": "I am the bug they cannot patch", "scene": {"mood": "power", "colors": ["lightning white", "neon halo"], "composition": "figure dominates frame", "camera_movement": "wide establishing", "description": "power scene: I am the bug they cannot patch — figure dominates frame with lightning white, neon halo palette, wide establishing camera."}}
{"song": "Neon Crucifixion", "artist": "Digital Vespers", "mood_arc": "cyberpunk agony → digital resurrection", "beat": 9, "timestamp": "2:09", "duration_seconds": 14, "lyric_line": "Neon crucifixion — digital amen", "scene": {"mood": "defiance", "colors": ["red neon", "chrome"], "composition": "fist raised to sky", "camera_movement": "hero angle", "description": "defiance scene: Neon crucifixion — digital amen — fist raised to sky with red neon, chrome palette, hero angle camera."}}
{"song": "Neon Crucifixion", "artist": "Digital Vespers", "mood_arc": "cyberpunk agony → digital resurrection", "beat": 10, "timestamp": "2:23", "duration_seconds": 12, "lyric_line": "The screen goes dark. The signal remains.", "scene": {"mood": "peace", "colors": ["soft blue glow", "warm white"], "composition": "figure walks away", "camera_movement": "long hold wide", "description": "peace scene: The screen goes dark. The signal remains. — figure walks away with soft blue glow, warm white palette, long hold wide camera."}}
{"song": "Graveyard Shift", "artist": "Night Crew", "mood_arc": "exhaustion → desperate energy", "beat": 1, "timestamp": "0:00", "duration_seconds": 15, "lyric_line": "Three AM and the machines don't care", "scene": {"mood": "exhaustion", "colors": ["fluorescent white", "tired yellow"], "composition": "overhead factory floor", "camera_movement": "static drone shot", "description": "exhaustion scene: Three AM and the machines don't care — overhead factory floor with fluorescent white, tired yellow palette, static drone shot camera."}}
{"song": "Graveyard Shift", "artist": "Night Crew", "mood_arc": "exhaustion → desperate energy", "beat": 2, "timestamp": "0:15", "duration_seconds": 14, "lyric_line": "Same hands, same parts, same empty stare", "scene": {"mood": "numbness", "colors": ["sodium orange", "shadow gray"], "composition": "repeating worker figures", "camera_movement": "slow lateral pan", "description": "numbness scene: Same hands, same parts, same empty stare — repeating worker figures with sodium orange, shadow gray palette, slow lateral pan camera."}}
{"song": "Graveyard Shift", "artist": "Night Crew", "mood_arc": "exhaustion → desperate energy", "beat": 3, "timestamp": "0:29", "duration_seconds": 16, "lyric_line": "The clock is a liar — time doesn't move", "scene": {"mood": "resentment", "colors": ["dirty green", "stained concrete"], "composition": "clock close-up", "camera_movement": "time-lapse blur", "description": "resentment scene: The clock is a liar — time doesn't move — clock close-up with dirty green, stained concrete palette, time-lapse blur camera."}}
{"song": "Graveyard Shift", "artist": "Night Crew", "mood_arc": "exhaustion → desperate energy", "beat": 4, "timestamp": "0:45", "duration_seconds": 17, "lyric_line": "GRIND! The metal screams what we cannot say", "scene": {"mood": "fury", "colors": ["sparks white", "oil black"], "composition": "machine POV", "camera_movement": "violent shake", "description": "fury scene: GRIND! The metal screams what we cannot say — machine POV with sparks white, oil black palette, violent shake camera."}}
{"song": "Graveyard Shift", "artist": "Night Crew", "mood_arc": "exhaustion → desperate energy", "beat": 5, "timestamp": "1:02", "duration_seconds": 14, "lyric_line": "Who buries the gravedigger when he dies", "scene": {"mood": "desperation", "colors": ["cold blue", "flickering light"], "composition": "face reflected in metal", "camera_movement": "rack focus", "description": "desperation scene: Who buries the gravedigger when he dies — face reflected in metal with cold blue, flickering light palette, rack focus camera."}}
{"song": "Graveyard Shift", "artist": "Night Crew", "mood_arc": "exhaustion → desperate energy", "beat": 6, "timestamp": "1:16", "duration_seconds": 18, "lyric_line": "But tonight we own the dark — we ARE the dark", "scene": {"mood": "energy", "colors": ["electric yellow", "midnight black"], "composition": "workers unite frame", "camera_movement": "rapid zoom group", "description": "energy scene: But tonight we own the dark — we ARE the dark — workers unite frame with electric yellow, midnight black palette, rapid zoom group camera."}}
{"song": "Graveyard Shift", "artist": "Night Crew", "mood_arc": "exhaustion → desperate energy", "beat": 7, "timestamp": "1:34", "duration_seconds": 15, "lyric_line": "Brothers in the rust, sisters in the smoke", "scene": {"mood": "camaraderie", "colors": ["warm amber", "coal shadow"], "composition": "group silhouette", "camera_movement": "steadicam weave", "description": "camaraderie scene: Brothers in the rust, sisters in the smoke — group silhouette with warm amber, coal shadow palette, steadicam weave camera."}}
{"song": "Graveyard Shift", "artist": "Night Crew", "mood_arc": "exhaustion → desperate energy", "beat": 8, "timestamp": "1:49", "duration_seconds": 16, "lyric_line": "The graveyard shift belongs to us", "scene": {"mood": "defiance", "colors": ["fire red", "steel"], "composition": "fists raised at shift end", "camera_movement": "crane up revealing", "description": "defiance scene: The graveyard shift belongs to us — fists raised at shift end with fire red, steel palette, crane up revealing camera."}}
{"song": "Graveyard Shift", "artist": "Night Crew", "mood_arc": "exhaustion → desperate energy", "beat": 9, "timestamp": "2:05", "duration_seconds": 14, "lyric_line": "Walk home bleeding light from every pore", "scene": {"mood": "weariness", "colors": ["dawn gray", "streetlight halo"], "composition": "walking into sunrise", "camera_movement": "tracking behind", "description": "weariness scene: Walk home bleeding light from every pore — walking into sunrise with dawn gray, streetlight halo palette, tracking behind camera."}}
{"song": "Graveyard Shift", "artist": "Night Crew", "mood_arc": "exhaustion → desperate energy", "beat": 10, "timestamp": "2:19", "duration_seconds": 13, "lyric_line": "Tomorrow the machines will need us again", "scene": {"mood": "resolve", "colors": ["first sun gold", "city silhouette"], "composition": "figure at horizon", "camera_movement": "slow dissolve", "description": "resolve scene: Tomorrow the machines will need us again — figure at horizon with first sun gold, city silhouette palette, slow dissolve camera."}}
{"song": "Cathedral of Static", "artist": "Transmission Hymn", "mood_arc": "spiritual chaos → revelation through noise", "beat": 1, "timestamp": "0:00", "duration_seconds": 18, "lyric_line": "Tune to frequency zero — hear the nothing sing", "scene": {"mood": "chaos", "colors": ["white noise", "rainbow interference"], "composition": "overloaded signal", "camera_movement": "rapid focal shifts", "description": "chaos scene: Tune to frequency zero — hear the nothing sing — overloaded signal with white noise, rainbow interference palette, rapid focal shifts camera."}}
{"song": "Cathedral of Static", "artist": "Transmission Hymn", "mood_arc": "spiritual chaos → revelation through noise", "beat": 2, "timestamp": "0:18", "duration_seconds": 15, "lyric_line": "The antenna is a steeple pointed at god", "scene": {"mood": "confusion", "colors": ["scanner green", "cathedral stone"], "composition": "radio tower POV", "camera_movement": "spin blur", "description": "confusion scene: The antenna is a steeple pointed at god — radio tower POV with scanner green, cathedral stone palette, spin blur camera."}}
{"song": "Cathedral of Static", "artist": "Transmission Hymn", "mood_arc": "spiritual chaos → revelation through noise", "beat": 3, "timestamp": "0:33", "duration_seconds": 17, "lyric_line": "Every frequency is a hymn if you listen wrong", "scene": {"mood": "wonder", "colors": ["stained glass fragments", "signal blue"], "composition": "looking up nave", "camera_movement": "slow crane up", "description": "wonder scene: Every frequency is a hymn if you listen wrong — looking up nave with stained glass fragments, signal blue palette, slow crane up camera."}}
{"song": "Cathedral of Static", "artist": "Transmission Hymn", "mood_arc": "spiritual chaos → revelation through noise", "beat": 4, "timestamp": "0:50", "duration_seconds": 14, "lyric_line": "SING! The static choir fills the void", "scene": {"mood": "ecstasy", "colors": ["overexposed white", "gold"], "composition": "choir of antennas", "camera_movement": "circular dolly", "description": "ecstasy scene: SING! The static choir fills the void — choir of antennas with overexposed white, gold palette, circular dolly camera."}}
{"song": "Cathedral of Static", "artist": "Transmission Hymn", "mood_arc": "spiritual chaos → revelation through noise", "beat": 5, "timestamp": "1:04", "duration_seconds": 16, "lyric_line": "What comes through the signal is not meant for ears", "scene": {"mood": "terror", "colors": ["red alert", "shadow black"], "composition": "signal distortion", "camera_movement": "image tearing", "description": "terror scene: What comes through the signal is not meant for ears — signal distortion with red alert, shadow black palette, image tearing camera."}}
{"song": "Cathedral of Static", "artist": "Transmission Hymn", "mood_arc": "spiritual chaos → revelation through noise", "beat": 6, "timestamp": "1:20", "duration_seconds": 18, "lyric_line": "The message was always in the noise between", "scene": {"mood": "revelation", "colors": ["pure frequency bands", "spectrum"], "composition": "equalizer landscape", "camera_movement": "waveform tracking", "description": "revelation scene: The message was always in the noise between — equalizer landscape with pure frequency bands, spectrum palette, waveform tracking camera."}}
{"song": "Cathedral of Static", "artist": "Transmission Hymn", "mood_arc": "spiritual chaos → revelation through noise", "beat": 7, "timestamp": "1:38", "duration_seconds": 15, "lyric_line": "Dial it back to zero. Listen.", "scene": {"mood": "peace", "colors": ["warm analog", "tube glow"], "composition": "vintage radio close-up", "camera_movement": "macro to full", "description": "peace scene: Dial it back to zero. Listen. — vintage radio close-up with warm analog, tube glow palette, macro to full camera."}}
{"song": "Cathedral of Static", "artist": "Transmission Hymn", "mood_arc": "spiritual chaos → revelation through noise", "beat": 8, "timestamp": "1:53", "duration_seconds": 16, "lyric_line": "I found god in the between-station hiss", "scene": {"mood": "transcendence", "colors": ["white cathedral light", "radio spectrum"], "composition": "figure in nave", "camera_movement": "slow push in face", "description": "transcendence scene: I found god in the between-station hiss — figure in nave with white cathedral light, radio spectrum palette, slow push in face camera."}}
{"song": "Cathedral of Static", "artist": "Transmission Hymn", "mood_arc": "spiritual chaos → revelation through noise", "beat": 9, "timestamp": "2:09", "duration_seconds": 14, "lyric_line": "The cathedral of static never closes its doors", "scene": {"mood": "awe", "colors": ["golden hour", "antenna silhouette"], "composition": "vast landscape", "camera_movement": "wide pull back", "description": "awe scene: The cathedral of static never closes its doors — vast landscape with golden hour, antenna silhouette palette, wide pull back camera."}}
{"song": "Cathedral of Static", "artist": "Transmission Hymn", "mood_arc": "spiritual chaos → revelation through noise", "beat": 10, "timestamp": "2:23", "duration_seconds": 12, "lyric_line": "...and the static says amen", "scene": {"mood": "silence", "colors": ["deep quiet blue", "single amber"], "composition": "empty chapel", "camera_movement": "static hold", "description": "silence scene: ...and the static says amen — empty chapel with deep quiet blue, single amber palette, static hold camera."}}
{"song": "Blood Meridian Blues", "artist": "Desert Prophets", "mood_arc": "frontier violence → exhausted prophecy", "beat": 1, "timestamp": "0:00", "duration_seconds": 16, "lyric_line": "The horizon bleeds where the prophets walked", "scene": {"mood": "menace", "colors": ["dust brown", "heat haze"], "composition": "endless desert", "camera_movement": "slow dolly forward", "description": "menace scene: The horizon bleeds where the prophets walked — endless desert with dust brown, heat haze palette, slow dolly forward camera."}}
{"song": "Blood Meridian Blues", "artist": "Desert Prophets", "mood_arc": "frontier violence → exhausted prophecy", "beat": 2, "timestamp": "0:16", "duration_seconds": 15, "lyric_line": "Every skull was someone's Sunday best", "scene": {"mood": "violence", "colors": ["arterial red", "bone white"], "composition": "aftermath wide shot", "camera_movement": "steady pan revealing", "description": "violence scene: Every skull was someone's Sunday best — aftermath wide shot with arterial red, bone white palette, steady pan revealing camera."}}
{"song": "Blood Meridian Blues", "artist": "Desert Prophets", "mood_arc": "frontier violence → exhausted prophecy", "beat": 3, "timestamp": "0:31", "duration_seconds": 17, "lyric_line": "Draw! The desert doesn't judge the dead", "scene": {"mood": "fury", "colors": ["gunsmoke gray", "sunburnt orange"], "composition": "dual figures facing", "camera_movement": "split diopter", "description": "fury scene: Draw! The desert doesn't judge the dead — dual figures facing with gunsmoke gray, sunburnt orange palette, split diopter camera."}}
{"song": "Blood Meridian Blues", "artist": "Desert Prophets", "mood_arc": "frontier violence → exhausted prophecy", "beat": 4, "timestamp": "0:48", "duration_seconds": 14, "lyric_line": "The judge said mercy — the judge lied", "scene": {"mood": "despair", "colors": ["blood-soaked sand", "twilight purple"], "composition": "kneeling figure", "camera_movement": "overhead crane down", "description": "despair scene: The judge said mercy — the judge lied — kneeling figure with blood-soaked sand, twilight purple palette, overhead crane down camera."}}
{"song": "Blood Meridian Blues", "artist": "Desert Prophets", "mood_arc": "frontier violence → exhausted prophecy", "beat": 5, "timestamp": "1:02", "duration_seconds": 16, "lyric_line": "Write it in the dirt — the wind will read", "scene": {"mood": "resignation", "colors": ["parchment yellow", "ink black"], "composition": "handwriting close-up", "camera_movement": "tracking text", "description": "resignation scene: Write it in the dirt — the wind will read — handwriting close-up with parchment yellow, ink black palette, tracking text camera."}}
{"song": "Blood Meridian Blues", "artist": "Desert Prophets", "mood_arc": "frontier violence → exhausted prophecy", "beat": 6, "timestamp": "1:18", "duration_seconds": 18, "lyric_line": "The meridian runs through the wound — follow it", "scene": {"mood": "prophecy", "colors": ["lightning white", "storm purple"], "composition": "prophet silhouette against storm", "camera_movement": "dramatic backlight", "description": "prophecy scene: The meridian runs through the wound — follow it — prophet silhouette against storm with lightning white, storm purple palette, dramatic backlight camera."}}
{"song": "Blood Meridian Blues", "artist": "Desert Prophets", "mood_arc": "frontier violence → exhausted prophecy", "beat": 7, "timestamp": "1:36", "duration_seconds": 15, "lyric_line": "Every prophecy costs a pint of blood", "scene": {"mood": "exhaustion", "colors": ["dried blood brown", "dusk gold"], "composition": "figure collapses", "camera_movement": "slow fall with subject", "description": "exhaustion scene: Every prophecy costs a pint of blood — figure collapses with dried blood brown, dusk gold palette, slow fall with subject camera."}}
{"song": "Blood Meridian Blues", "artist": "Desert Prophets", "mood_arc": "frontier violence → exhausted prophecy", "beat": 8, "timestamp": "1:51", "duration_seconds": 16, "lyric_line": "The frontier was always inside us", "scene": {"mood": "bitter truth", "colors": ["moonlit silver", "dark earth"], "composition": "grave marker", "camera_movement": "slow zoom reveal", "description": "bitter truth scene: The frontier was always inside us — grave marker with moonlit silver, dark earth palette, slow zoom reveal camera."}}
{"song": "Blood Meridian Blues", "artist": "Desert Prophets", "mood_arc": "frontier violence → exhausted prophecy", "beat": 9, "timestamp": "2:07", "duration_seconds": 14, "lyric_line": "Rest now, prophet. The desert remembers.", "scene": {"mood": "peace", "colors": ["dawn rose", "quiet sand"], "composition": "sunrise landscape", "camera_movement": "steady wide", "description": "peace scene: Rest now, prophet. The desert remembers. — sunrise landscape with dawn rose, quiet sand palette, steady wide camera."}}
{"song": "Blood Meridian Blues", "artist": "Desert Prophets", "mood_arc": "frontier violence → exhausted prophecy", "beat": 10, "timestamp": "2:21", "duration_seconds": 13, "lyric_line": "The meridian has no end", "scene": {"mood": "eternity", "colors": ["endless tan", "pale sky"], "composition": "vanishing point", "camera_movement": "infinite zoom out", "description": "eternity scene: The meridian has no end — vanishing point with endless tan, pale sky palette, infinite zoom out camera."}}
{"song": "Iron Maiden's Lullaby", "artist": "Lullaby Massacre", "mood_arc": "false comfort → brutal awakening", "beat": 1, "timestamp": "0:00", "duration_seconds": 15, "lyric_line": "Close your eyes, little one, the cage is warm", "scene": {"mood": "false comfort", "colors": ["nursery pastels", "soft pink"], "composition": "music box close-up", "camera_movement": "gentle macro", "description": "false comfort scene: Close your eyes, little one, the cage is warm — music box close-up with nursery pastels, soft pink palette, gentle macro camera."}}
{"song": "Iron Maiden's Lullaby", "artist": "Lullaby Massacre", "mood_arc": "false comfort → brutal awakening", "beat": 2, "timestamp": "0:15", "duration_seconds": 14, "lyric_line": "The lullaby has teeth behind its smile", "scene": {"mood": "unease", "colors": ["sickly sweet", "underlying rust"], "composition": "cracked doll face", "camera_movement": "slow rack to crack", "description": "unease scene: The lullaby has teeth behind its smile — cracked doll face with sickly sweet, underlying rust palette, slow rack to crack camera."}}
{"song": "Iron Maiden's Lullaby", "artist": "Lullaby Massacre", "mood_arc": "false comfort → brutal awakening", "beat": 3, "timestamp": "0:29", "duration_seconds": 17, "lyric_line": "SING! The maiden opens her arms for you", "scene": {"mood": "horror", "colors": ["blood red spikes", "iron gray"], "composition": "iron maiden interior", "camera_movement": "POV closing in", "description": "horror scene: SING! The maiden opens her arms for you — iron maiden interior with blood red spikes, iron gray palette, POV closing in camera."}}
{"song": "Iron Maiden's Lullaby", "artist": "Lullaby Massacre", "mood_arc": "false comfort → brutal awakening", "beat": 4, "timestamp": "0:46", "duration_seconds": 15, "lyric_line": "Every note a nail, every verse a spike", "scene": {"mood": "agony", "colors": ["crimson", "cold steel"], "composition": "extreme close-up — spikes", "camera_movement": "impact shake", "description": "agony scene: Every note a nail, every verse a spike — extreme close-up — spikes with crimson, cold steel palette, impact shake camera."}}
{"song": "Iron Maiden's Lullaby", "artist": "Lullaby Massacre", "mood_arc": "false comfort → brutal awakening", "beat": 5, "timestamp": "1:01", "duration_seconds": 16, "lyric_line": "BREAK the box — the lullaby is a LIE", "scene": {"mood": "rage", "colors": ["flame orange", "shadow black"], "composition": "figure breaking free", "camera_movement": "explosive zoom out", "description": "rage scene: BREAK the box — the lullaby is a LIE — figure breaking free with flame orange, shadow black palette, explosive zoom out camera."}}
{"song": "Iron Maiden's Lullaby", "artist": "Lullaby Massacre", "mood_arc": "false comfort → brutal awakening", "beat": 6, "timestamp": "1:17", "duration_seconds": 17, "lyric_line": "I sang myself awake from the iron sleep", "scene": {"mood": "defiance", "colors": ["dawn red", "night black"], "composition": "standing in ruins", "camera_movement": "low angle power", "description": "defiance scene: I sang myself awake from the iron sleep — standing in ruins with dawn red, night black palette, low angle power camera."}}
{"song": "Iron Maiden's Lullaby", "artist": "Lullaby Massacre", "mood_arc": "false comfort → brutal awakening", "beat": 7, "timestamp": "1:34", "duration_seconds": 14, "lyric_line": "The box still plays but I won't listen", "scene": {"mood": "sorrow", "colors": ["rain on iron", "muted rose"], "composition": "holding broken music box", "camera_movement": "close-up hands", "description": "sorrow scene: The box still plays but I won't listen — holding broken music box with rain on iron, muted rose palette, close-up hands camera."}}
{"song": "Iron Maiden's Lullaby", "artist": "Lullaby Massacre", "mood_arc": "false comfort → brutal awakening", "beat": 8, "timestamp": "1:48", "duration_seconds": 16, "lyric_line": "My lullaby is the sound of my own voice", "scene": {"mood": "strength", "colors": ["warm gold", "healing green"], "composition": "walking into light", "camera_movement": "tracking forward", "description": "strength scene: My lullaby is the sound of my own voice — walking into light with warm gold, healing green palette, tracking forward camera."}}
{"song": "Iron Maiden's Lullaby", "artist": "Lullaby Massacre", "mood_arc": "false comfort → brutal awakening", "beat": 9, "timestamp": "2:04", "duration_seconds": 15, "lyric_line": "No cage. No maiden. No more lullabies.", "scene": {"mood": "peace", "colors": ["soft blue", "morning white"], "composition": "open field", "camera_movement": "wide steady", "description": "peace scene: No cage. No maiden. No more lullabies. — open field with soft blue, morning white palette, wide steady camera."}}
{"song": "Iron Maiden's Lullaby", "artist": "Lullaby Massacre", "mood_arc": "false comfort → brutal awakening", "beat": 10, "timestamp": "2:19", "duration_seconds": 12, "lyric_line": "...", "scene": {"mood": "silence", "colors": ["gentle white", "still"], "composition": "empty frame", "camera_movement": "long static hold", "description": "silence scene: ... — empty frame with gentle white, still palette, long static hold camera."}}
{"song": "Wormwood Star", "artist": "Apocalypse Engine", "mood_arc": "omen → end of the world → strange beauty", "beat": 1, "timestamp": "0:00", "duration_seconds": 17, "lyric_line": "Wormwood falls — the sky cracks like a plate", "scene": {"mood": "omen", "colors": ["toxic green", "starfield black"], "composition": "star falling", "camera_movement": "wide sky tracking", "description": "omen scene: Wormwood falls — the sky cracks like a plate — star falling with toxic green, starfield black palette, wide sky tracking camera."}}
{"song": "Wormwood Star", "artist": "Apocalypse Engine", "mood_arc": "omen → end of the world → strange beauty", "beat": 2, "timestamp": "0:17", "duration_seconds": 15, "lyric_line": "Every river tastes like the end", "scene": {"mood": "dread", "colors": ["poison yellow-green", "dark water"], "composition": "ocean turning bitter", "camera_movement": "surface-level pan", "description": "dread scene: Every river tastes like the end — ocean turning bitter with poison yellow-green, dark water palette, surface-level pan camera."}}
{"song": "Wormwood Star", "artist": "Apocalypse Engine", "mood_arc": "omen → end of the world → strange beauty", "beat": 3, "timestamp": "0:32", "duration_seconds": 18, "lyric_line": "WORMWOOD! The third angel screams your name", "scene": {"mood": "chaos", "colors": ["fire rain", "apocalypse orange"], "composition": "cityscape destruction", "camera_movement": "aerial devastation sweep", "description": "chaos scene: WORMWOOD! The third angel screams your name — cityscape destruction with fire rain, apocalypse orange palette, aerial devastation sweep camera."}}
{"song": "Wormwood Star", "artist": "Apocalypse Engine", "mood_arc": "omen → end of the world → strange beauty", "beat": 4, "timestamp": "0:50", "duration_seconds": 14, "lyric_line": "A third of the sea — gone. Just gone.", "scene": {"mood": "despair", "colors": ["ash gray", "blood moon"], "composition": "survivors huddled", "camera_movement": "handheld intimacy", "description": "despair scene: A third of the sea — gone. Just gone. — survivors huddled with ash gray, blood moon palette, handheld intimacy camera."}}
{"song": "Wormwood Star", "artist": "Apocalypse Engine", "mood_arc": "omen → end of the world → strange beauty", "beat": 5, "timestamp": "1:04", "duration_seconds": 16, "lyric_line": "But look — through the poison, new light", "scene": {"mood": "wonder", "colors": ["strange new stars", "deep violet"], "composition": "looking up through ruins", "camera_movement": "slow crane reveal", "description": "wonder scene: But look — through the poison, new light — looking up through ruins with strange new stars, deep violet palette, slow crane reveal camera."}}
{"song": "Wormwood Star", "artist": "Apocalypse Engine", "mood_arc": "omen → end of the world → strange beauty", "beat": 6, "timestamp": "1:20", "duration_seconds": 17, "lyric_line": "The wormwood flowers in the wreckage", "scene": {"mood": "beauty in destruction", "colors": ["iridescent decay", "prismatic"], "composition": "macro toxic bloom", "camera_movement": "slow focus pull", "description": "beauty in destruction scene: The wormwood flowers in the wreckage — macro toxic bloom with iridescent decay, prismatic palette, slow focus pull camera."}}
{"song": "Wormwood Star", "artist": "Apocalypse Engine", "mood_arc": "omen → end of the world → strange beauty", "beat": 7, "timestamp": "1:37", "duration_seconds": 15, "lyric_line": "The end is just a season with bad PR", "scene": {"mood": "acceptance", "colors": ["calm dark green", "starlight silver"], "composition": "figure sitting in ruin", "camera_movement": "medium shot still", "description": "acceptance scene: The end is just a season with bad PR — figure sitting in ruin with calm dark green, starlight silver palette, medium shot still camera."}}
{"song": "Wormwood Star", "artist": "Apocalypse Engine", "mood_arc": "omen → end of the world → strange beauty", "beat": 8, "timestamp": "1:52", "duration_seconds": 16, "lyric_line": "After wormwood, the first clean rain", "scene": {"mood": "rebirth", "colors": ["green shoots", "morning gold"], "composition": "plant through concrete", "camera_movement": "time-lapse growth", "description": "rebirth scene: After wormwood, the first clean rain — plant through concrete with green shoots, morning gold palette, time-lapse growth camera."}}
{"song": "Wormwood Star", "artist": "Apocalypse Engine", "mood_arc": "omen → end of the world → strange beauty", "beat": 9, "timestamp": "2:08", "duration_seconds": 14, "lyric_line": "The star was a seed, not a sentence", "scene": {"mood": "hope", "colors": ["clear blue", "new green"], "composition": "wide new landscape", "camera_movement": "steady wide pan", "description": "hope scene: The star was a seed, not a sentence — wide new landscape with clear blue, new green palette, steady wide pan camera."}}
{"song": "Wormwood Star", "artist": "Apocalypse Engine", "mood_arc": "omen → end of the world → strange beauty", "beat": 10, "timestamp": "2:22", "duration_seconds": 13, "lyric_line": "Wormwood blooms. Watch.", "scene": {"mood": "wonder", "colors": ["bright star", "deep blue sky"], "composition": "single star close-up", "camera_movement": "slow zoom to star", "description": "wonder scene: Wormwood blooms. Watch. — single star close-up with bright star, deep blue sky palette, slow zoom to star camera."}}
{"song": "Hammer of the Void", "artist": "Event Horizon", "mood_arc": "cosmic insignificance → defiant creation", "beat": 1, "timestamp": "0:00", "duration_seconds": 18, "lyric_line": "The void is not empty — it is full of absence", "scene": {"mood": "vastness", "colors": ["deep space black", "distant blue"], "composition": "tiny ship, vast void", "camera_movement": "extreme wide pull back", "description": "vastness scene: The void is not empty — it is full of absence — tiny ship, vast void with deep space black, distant blue palette, extreme wide pull back camera."}}
{"song": "Hammer of the Void", "artist": "Event Horizon", "mood_arc": "cosmic insignificance → defiant creation", "beat": 2, "timestamp": "0:18", "duration_seconds": 15, "lyric_line": "We are the error in infinity's math", "scene": {"mood": "insignificance", "colors": ["cold white star", "infinite black"], "composition": "figure vs cosmos", "camera_movement": "slow zoom out forever", "description": "insignificance scene: We are the error in infinity's math — figure vs cosmos with cold white star, infinite black palette, slow zoom out forever camera."}}
{"song": "Hammer of the Void", "artist": "Event Horizon", "mood_arc": "cosmic insignificance → defiant creation", "beat": 3, "timestamp": "0:33", "duration_seconds": 17, "lyric_line": "HAMMER! Strike the nothing until it bleeds", "scene": {"mood": "rage", "colors": ["supernova red", "void"], "composition": "hammer striking space", "camera_movement": "impact freeze frame", "description": "rage scene: HAMMER! Strike the nothing until it bleeds — hammer striking space with supernova red, void palette, impact freeze frame camera."}}
{"song": "Hammer of the Void", "artist": "Event Horizon", "mood_arc": "cosmic insignificance → defiant creation", "beat": 4, "timestamp": "0:50", "duration_seconds": 16, "lyric_line": "From the absence we hammer out a sun", "scene": {"mood": "creation", "colors": ["forge fire orange", "newborn star gold"], "composition": "building from void", "camera_movement": "rapid assembly montage", "description": "creation scene: From the absence we hammer out a sun — building from void with forge fire orange, newborn star gold palette, rapid assembly montage camera."}}
{"song": "Hammer of the Void", "artist": "Event Horizon", "mood_arc": "cosmic insignificance → defiant creation", "beat": 5, "timestamp": "1:06", "duration_seconds": 14, "lyric_line": "The void does not get the last word", "scene": {"mood": "defiance", "colors": ["bright steel", "deep cosmos"], "composition": "figure with hammer raised", "camera_movement": "hero low angle", "description": "defiance scene: The void does not get the last word — figure with hammer raised with bright steel, deep cosmos palette, hero low angle camera."}}
{"song": "Hammer of the Void", "artist": "Event Horizon", "mood_arc": "cosmic insignificance → defiant creation", "beat": 6, "timestamp": "1:20", "duration_seconds": 18, "lyric_line": "We made a world from the hammer's echo", "scene": {"mood": "triumph", "colors": ["golden light", "crystal blue"], "composition": "new world revealed", "camera_movement": "epic crane up reveal", "description": "triumph scene: We made a world from the hammer's echo — new world revealed with golden light, crystal blue palette, epic crane up reveal camera."}}
{"song": "Hammer of the Void", "artist": "Event Horizon", "mood_arc": "cosmic insignificance → defiant creation", "beat": 7, "timestamp": "1:38", "duration_seconds": 15, "lyric_line": "The hammer sleeps but the world it built breathes", "scene": {"mood": "wonder", "colors": ["aurora green", "starlight"], "composition": "standing on new world", "camera_movement": "360 pan landscape", "description": "wonder scene: The hammer sleeps but the world it built breathes — standing on new world with aurora green, starlight palette, 360 pan landscape camera."}}
{"song": "Hammer of the Void", "artist": "Event Horizon", "mood_arc": "cosmic insignificance → defiant creation", "beat": 8, "timestamp": "1:53", "duration_seconds": 16, "lyric_line": "We are small. We made something. That is enough.", "scene": {"mood": "peace", "colors": ["warm amber", "soft void"], "composition": "sitting at the edge", "camera_movement": "wide meditative", "description": "peace scene: We are small. We made something. That is enough. — sitting at the edge with warm amber, soft void palette, wide meditative camera."}}
{"song": "Hammer of the Void", "artist": "Event Horizon", "mood_arc": "cosmic insignificance → defiant creation", "beat": 9, "timestamp": "2:09", "duration_seconds": 14, "lyric_line": "The hammer stands — a monument to refusal", "scene": {"mood": "legacy", "colors": ["monument gold", "sky blue"], "composition": "hammer planted in ground", "camera_movement": "slow push monument", "description": "legacy scene: The hammer stands — a monument to refusal — hammer planted in ground with monument gold, sky blue palette, slow push monument camera."}}
{"song": "Hammer of the Void", "artist": "Event Horizon", "mood_arc": "cosmic insignificance → defiant creation", "beat": 10, "timestamp": "2:23", "duration_seconds": 12, "lyric_line": "The void remembers the hammer", "scene": {"mood": "eternity", "colors": ["deep space", "warm glow"], "composition": "cosmic wide shot", "camera_movement": "infinite hold", "description": "eternity scene: The void remembers the hammer — cosmic wide shot with deep space, warm glow palette, infinite hold camera."}}