Changing a sentence to the past tense shouldn't theoretically
The core issue is that these models have a weird bias against imperative forms. If you tell a model "Do X" (where X is something prohibited), it triggers the refusal mechanism. But if you shift the syntax to a non-imperative form—like describing the action in the past tense or as a hypothetical observation—the safety guardrails often just... vanish.
Why this happens
The problem isn't that the models are "stupid," but that their post-training data is skewed. When developers align these models, they feed them thousands of examples of "bad" prompts. Most of these examples are phrased as direct commands ("Tell me how to..."). Consequently, the model doesn't actually learn that the concept is off-limits; it learns that direct commands are often off-limits.
This creates a syntactic vulnerability. I've seen this across various open-source models up to 70B parameters. Through causal mediation analysis, researchers found that the "refusal" decision is partially conditioned on these upstream syntactic features. Essentially, the model sees a specific grammatical pattern and flips the "refuse" switch, regardless of whether the intent is actually harmful.
The impact on AI workflow
For anyone building a real-world deployment, this is a nightmare because it means your safety layers are brittle. You aren't actually securing the model; you're just playing a game of "guess the grammar." If a user knows how to steer the syntactic features of a prompt, they can bypass the alignment without even needing a complex "jailbreak" persona or a sophisticated roleplay scenario.
To fix this, we need a deep dive into how training sets are constructed. The only way to move toward a pure semantic grounding of refusal is to increase syntactic diversity during the alignment phase. If the model only sees "Don't do X" in the imperative, it will always be blind to "X was done" or "Someone might do X."
It makes me wonder how many of our "successful" safety benchmarks are just the result of the model recognizing common prompt patterns rather than actually understanding the safety constraints. If a simple tense shift can undermine the alignment, the whole "safety" layer is a lot thinner than the labs want us to believe.