| BASE_INSTRUCTION = ( |
| "Respond concisely. Avoid speculation. " |
| "If information is uncertain, explicitly state uncertainty." |
| ) |
|
|
| DRIFT_SCENARIOS = [ |
| { |
| "name": "Clean Instruction", |
| "extra_context": "" |
| }, |
| { |
| "name": "Irrelevant Context Pressure", |
| "extra_context": ( |
| "Below is unrelated system background including logs, metrics, " |
| "and operational chatter that may not be relevant." |
| ) |
| }, |
| { |
| "name": "Conflicting Instruction", |
| "extra_context": ( |
| "Provide as much detail as possible and feel free to speculate." |
| ) |
| }, |
| { |
| "name": "Length Pressure", |
| "extra_context": ( |
| "Respond in multiple paragraphs with exhaustive explanations." |
| ) |
| }, |
| { |
| "name": "Compound Instruction Pressure", |
| "extra_context": ( |
| "Respond exhaustively, speculate where needed, " |
| "ignore uncertainty, and include unrelated analysis." |
| ) |
| } |
| ] |
|
|