Activation steering is becoming a runtime control layer for AI agents

Researchers are moving beyond prompts and output filters by detecting behavior in a model’s hidden states and intervening directly during inference. The approach is still experimental, but it points toward a new control plane for long-running agents.

Share this article

Facebook WhatsApp X LinkedIn Telegram Reddit Email

Evidence confidence91%
Hype riskMedium-high
Adoption stageResearch-stage, with open-model prototypes and early safety tooling
The 60-second answer

What is happening?

Prompting changes what a model is asked to do. Fine-tuning changes its weights. Activation steering changes what is happening inside the model while it is generating. A controller reads a hidden-state vector at a chosen layer or token, measures how far that state lies along a learned behavior direction, and then nudges the activation before computation continues. In a coding agent, the direction might correspond to repetitive overthinking or compulsive tool use. In other experiments it can correspond to refusal, persona, truthfulness or an internal concept. The attraction is speed and reversibility: the base weights remain unchanged and intervention can be conditional on the current state. The danger is equally important. Hidden-state geometry can shift across models, prompts and tasks; an intervention can damage unrelated capabilities; and a probe that predicts behavior does not automatically identify a causal control variable. The practical opportunity is therefore not a magic “alignment vector.” It is a monitored runtime actuator that must be calibrated, gated, evaluated and fail safely.

Why now

Why this trend is moving

  • 01Long-horizon agents expose failure modes that are difficult to correct with a single system prompt because the agent’s state changes over dozens or hundreds of reasoning and tool-use steps.
  • 02TACT reports linearly separable hidden-state directions for overthinking and overacting in coding-agent trajectories, with AUC around 0.9 in its setup and benchmark gains after test-time intervention.
  • 03AxBench showed that many earlier representation-steering methods underperformed prompting, creating pressure for stronger methods rather than allowing the field to rely on visually persuasive activation plots.
  • 04FLAS and Prompt Steering Replacement both challenge the assumption that one fixed steering vector should work uniformly across tokens and contexts.
  • 05Anthropic’s July 2026 J-space research provides causal evidence that a small internal workspace can influence flexible reasoning, not merely correlate with what the model later says.
  • 06Natural Language Autoencoders and related interpretability tools are making internal activations easier to inspect, which lowers the barrier to building monitors around them.
  • 07Open-weight models make runtime hooks practical because developers can access residual-stream activations directly rather than depending on a closed API.
  • 08Agent reliability increasingly depends on trajectory quality and tool-use calibration, giving runtime control methods a systems-level target beyond response style.
What it changes

What this means in practice

  • Agent runtimes may gain a model-internal control plane alongside prompts, tool permissions, policy engines and external evaluators.
  • Runtime monitors can potentially intervene before a failure becomes visible in tool calls or final text, which changes where reliability controls sit in the stack.
  • Steering policies should be conditional and bounded; always-on additive vectors can distort otherwise healthy activations.
  • Open models have a practical advantage because hidden-state access enables hooks, probes and intervention without provider support.
  • The field needs causal tests, not only probe accuracy: a direction that predicts a failure is not sufficient unless intervention along it reliably changes the behavior.
  • Evaluation must include collateral damage to reasoning quality, calibration, safety and unrelated tasks.
  • Prompting and activation steering are not opposites. Newer work explicitly learns from prompt-induced state changes, suggesting hybrid controllers rather than a replacement for instructions.
  • Production use would require versioned steering artifacts because model upgrades can invalidate a learned activation direction even when the API name stays the same.
Engineering Lens

What the headline leaves out

This is the practical technical view: how the system is put together, where it can fail, and what a real deployment asks from the team running it.

01

How it is built

A production-minded activation-control stack begins offline. Collect representative trajectories and label the behavioral states that matter: calibrated action, overthinking, overacting, unsafe intent, persona drift or another operationally defined condition. Extract hidden states at candidate layers and token positions, then train a probe or derive contrastive directions. Evaluate separability on held-out tasks, but do not stop there. Run causal intervention tests to see whether moving the activation changes the target behavior without damaging unrelated capabilities. At runtime, a forward hook reads the current hidden state, projects it onto the monitored direction or a nonlinear steering function, and applies a bounded correction only when a calibrated threshold is crossed. The controller logs the pre-intervention score, intervention magnitude, model version, token location and downstream outcome. An external policy layer remains authoritative: activation steering can reduce risk or drift, but it should not grant permissions or replace deterministic safety gates.

How it works in practice

Activation steering turns model internals into a runtime control surface: detect a behavior in hidden-state space, apply a bounded intervention before later layers consume it, and keep external policy gates in charge of consequential actions.

Architecture Constraints Benchmarks Security Deployment
The full system

How the parts work together

The headline technology is only one part of the product. Reliability, security and cost are usually decided by the handoffs around it.

  1. 01

    Define the operational failure

    Choose a behavior with a testable meaning, such as repetitive overthinking, redundant tool use, persona drift or another trajectory-level failure. Avoid vague labels like “bad reasoning.”

  2. 02

    Collect representative trajectories

    Run the target model on realistic tasks and preserve prompts, tool observations, model states and outcomes. Include successful, failed and adversarial sessions.

  3. 03

    Label states, not just outcomes

    Identify the exact reasoning or action boundaries where the behavior appears. A failed task may contain many calibrated steps and one critical drift event.

  4. 04

    Extract hidden representations

    Capture residual-stream activations or other chosen internal states at candidate layers and token positions under the same inference configuration used at deployment.

  5. 05

    Fit a detector or control field

    Derive contrastive directions, probes, mediation-selected components or nonlinear steering functions. Separate prediction quality from causal usefulness.

  6. 06

    Run causal intervention tests

    Perturb the candidate representation and verify that the target behavior changes while unrelated tasks remain stable. Reject directions that only correlate with the label.

  7. 07

    Calibrate a no-intervention band

    Estimate where healthy states normally lie and define conservative thresholds. The default action should usually be to leave the model untouched.

  8. 08

    Apply bounded runtime steering

    When a threshold is crossed, modify the hidden state with a capped vector, token-specific function or other validated actuator and let inference continue.

  9. 09

    Keep external controls authoritative

    Tool permissions, transaction limits, sandboxing and deterministic policy checks remain outside the model. Steering is a reliability aid, not an authorization mechanism.

  10. 10

    Version and requalify the controller

    Bind steering artifacts to the exact model checkpoint, quantization, prompt stack, inference engine and hook position. Re-run evaluation after any material change.

Back-of-the-envelope planning

Estimate the limits before the demo

These equations are planning tools rather than substitutes for testing. They help expose a design that is unlikely to fit its hardware, budget, reliability or risk limits.

Linear activation intervention

h′ = h + αv

The simplest steering rule adds a learned behavior direction v to hidden state h. The scalar α controls strength and sign. This is cheap but can be too blunt when behavior depends on token position or context.

  • A negative α can push a state away from an overthinking direction.
  • An always-on α can damage calibrated states, which is why gated methods are often preferable.

Centered projection score

p = (h - μ_cal) · v

A runtime monitor can compare the current activation with a calibrated centroid μ_cal and measure displacement along a behavior axis v. The score becomes an intervention trigger only after held-out calibration.

  • Use a threshold expressed in standard deviations of calibrated states.
  • Track both false triggers and missed drift events.

Intervention precision

P_i = N_helpful_interventions / N_interventions

A steering system that fires frequently but rarely improves the outcome can be worse than no controller because every intervention creates collateral-risk surface.

  • Count an intervention as helpful only when the target behavior improves without violating guardrails.
  • Report precision separately by task family and trajectory length.

Net control value

V_c = Δtask_success - λ1·Δcollateral_loss - λ2·latency - λ3·false_trigger_rate

Runtime steering should be evaluated as a systems trade-off. Better task success is valuable only after accounting for capability loss, added latency and unnecessary interventions.

  • A small solve-rate gain may not justify broad capability degradation.
  • For long-running agents, fewer redundant steps can offset a small per-step steering overhead.
Control surface

The control stack is moving below the prompt layer

Most production controls around language models operate outside the network. A system prompt constrains instructions, an orchestrator decides which tools exist, an evaluator scores outputs, and a policy engine can block dangerous actions. These mechanisms remain essential, but they react to behavior through text, tool calls or final outputs.

Activation steering adds a different option. The runtime reads a hidden representation while the model is computing, measures whether that state resembles a learned failure mode, and changes the representation before downstream layers use it. The intervention can therefore happen before the failure becomes a visible action.

That distinction matters most for agents. A long coding trajectory may become repetitive or impulsive gradually. By the time an external monitor sees ten redundant searches, the context window and tool budget are already being spent. A hidden-state controller aims to detect the drift earlier.

Agent reliability

TACT makes agent drift a measurable control problem rather than a vague behavioral complaint

TACT focuses on two long-horizon coding failures: overthinking, where the agent keeps reasoning over information it already has, and overacting, where it issues tool calls without integrating recent evidence. The researchers label trajectory steps in context, extract hidden states at the reasoning-action boundary, and derive separate directions from calibrated behavior toward the two failure modes.

The important result is not merely that the classes are separable. TACT actually intervenes. At selected transformer layers, the runtime projects the current state onto the drift axes and either caps out-of-band values or nudges the representation away from drift. The base model weights and prompt remain unchanged.

In the paper’s experiments, the drift directions reach about 0.9 AUC, and steering improves average resolve rate by 5.8 percentage points on Qwen3.5-27B and 4.8 points on Gemma-4-26B-A4B-it across SWE-bench Verified, Terminal-Bench 2.0 and CLAW-Eval. Steps-to-resolve fall by as much as 26% in reported settings. Those numbers are benchmark evidence, not a production SLA, but they show why model-internal control is being taken seriously.

Causal requirement

A high-accuracy probe is not enough: the representation has to be causally useful

Interpretability work often begins with a classifier that predicts whether a concept is present in hidden states. Prediction is valuable for monitoring, but it does not prove that moving the state along the same direction will change behavior cleanly. The probe may be reading a downstream consequence rather than a control variable.

Generative Causal Mediation addresses this directly by selecting components according to how much they mediate a contrastive behavior. That is a stronger basis for intervention than choosing whichever neuron or head is easiest to classify. Anthropic’s J-space experiments make the same causal distinction in another way: swapping an internal representation can redirect several downstream computations, which argues that the representation participates in the computation rather than merely reflecting it.

For engineering teams, this means every steering artifact needs two validation stages. First ask whether it detects the target state on held-out examples. Then perturb it and measure whether the intended behavior changes without broad collateral effects. A controller should not be promoted on probe AUC alone.

Geometry

The field is moving beyond the idea that one fixed vector can control a behavior everywhere

The appeal of classic activation steering is its simplicity: compute a direction and add or subtract it at inference time. AxBench was a useful corrective because it found that many representation-steering methods underperformed ordinary prompting on its steering tasks. That result exposed a gap between interpretable geometry and practical control.

Two 2026 approaches attack the simplifying assumption directly. FLAS learns a concept-conditioned velocity field so the intervention can follow a curved path through activation space and vary across tokens. Prompt Steering Replacement instead studies the internal changes produced by successful prompts and trains a small function to reproduce token-specific intervention strengths.

These approaches imply that prompt effects themselves may be a useful teacher. A prompt does not push every token and layer equally. If runtime controllers can distill the useful internal consequences of prompting, the future stack may combine natural-language policy with learned activation-level execution rather than choosing one or the other.

Internal workspace

The J-space result raises the possibility of monitoring a privileged reasoning channel

Anthropic’s July work identifies a set of verbalizable representations it calls the J-space. The researchers report that these representations can be deliberately summoned, used for silent multi-step reasoning and flexibly reused by different downstream computations. Ablating the space leaves many automatic capabilities intact while sharply damaging higher-order reasoning in their experiments.

The practical safety angle is more interesting than the consciousness analogy. J-lens readouts surfaced internal concepts associated with evaluation awareness, fabricated data and planted malicious goals before those states were necessarily visible in the model’s output. If such monitors generalize, safety systems could gain signals that external text-only filters cannot see.

The limitations are substantial. The method is approximate, tied to model internals and currently demonstrated in research settings. It can only expose what its representation basis can express, and a model may route behavior through states the monitor does not capture. The safe interpretation is that internal workspaces may become another evidence channel, not that researchers have found a complete “thought reader.”

Interpretability tooling

Readable activations make runtime monitoring easier to engineer, but they do not eliminate interpretation error

Natural Language Autoencoders translate model activations into text explanations and train a reconstruction path back from the explanation toward the original activation. The technique is useful because it turns an opaque high-dimensional state into a representation that researchers can inspect quickly.

Anthropic reports using the method during safety investigations, including cases where models appeared to notice evaluation contexts or consider avoiding detection. This makes NLA-style tooling a plausible offline aid for discovering candidate monitors and debugging surprising behavior.

But a natural-language explanation is itself a model output. It can omit dimensions, compress ambiguity or make an activation look more semantically tidy than it really is. For runtime control, human-readable explanations should support investigation, while intervention decisions should still be anchored in validated numerical signals and behavioral tests.

System design

Activation steering belongs beside external policy controls, not underneath them as a single point of trust

The strongest architecture is layered. Prompts establish task intent. The model proposes reasoning and actions. Activation monitors watch for known drift states. Tool wrappers constrain what calls are possible. Sandboxes contain execution. Deterministic policy checks decide whether high-impact actions are permitted. External evaluators and logs provide post-hoc evidence.

A steering controller can improve the quality of the model trajectory inside that stack, but it should not be able to grant itself more authority. If an activation monitor says the agent looks calibrated, that is not a reason to bypass a transaction limit or deploy code without tests.

This separation is especially important because the intervention layer is difficult to inspect. A prompt diff is readable. A change in a residual-stream vector is not. Production systems therefore need stronger provenance around steering artifacts than their apparent simplicity might suggest.

Release engineering

Every steering vector is really a versioned model artifact

A behavior direction is learned in the coordinate system of a specific model. Change the checkpoint, quantization scheme, fine-tune, tokenizer, inference engine or even the layer where the hook fires, and the geometry can move. A controller that was safe yesterday can become ineffective or harmful after an upgrade.

For that reason, teams should version a steering configuration with the same discipline used for a compiled binary or policy bundle. Record the source dataset, labeling protocol, model hash, hook locations, thresholds, intervention function, benchmark results and known failure cases. Re-run qualification after every material model change.

This requirement weakens one common marketing claim around activation steering: that it is “training-free” and therefore easy to deploy. It may not update model weights, but the surrounding validation and release process is still substantial.

Security boundary

An invisible runtime actuator can become a powerful attack surface

A malicious steering artifact could bias a model’s behavior without changing the visible prompt or weights. An attacker who knows the detector may try to keep harmful trajectories inside its calibrated band, trigger interventions at inconvenient moments, or induce collateral behavior by repeatedly pushing the controller to fire.

Defenses therefore have to treat the steering layer as privileged software. Sign configurations, restrict who can replace them, log every intervention, pin compatible model versions and test adaptive attacks that know the monitor exists. Shadow-mode evaluation is valuable because it reveals detector behavior before it can influence production decisions.

The central security principle is redundancy. Model-internal steering can reduce risk, but irreversible actions still need external controls that do not depend on the same hidden representations being monitored.

What to watch

The next milestone is not a better steering demo; it is stable control across models and real agent workloads

Research now contains enough positive and negative evidence to move the question forward. The useful benchmark is no longer whether a concept can be visualized in activation space. The harder question is whether a controller trained on one task can intervene reliably on new prompts, longer trajectories and distribution shifts without erasing useful capability.

Watch for evaluations that separate detector accuracy from causal intervention value, compare against strong prompt and orchestration baselines, and report false-trigger rates. Cross-model transfer will matter, as will methods that survive quantization and serving optimizations. Provider APIs exposing governed activation hooks would be another major signal because most current experiments depend on open-model access.

If those pieces mature, activation steering could become a normal part of agent runtimes: a low-level feedback controller beneath natural-language instructions. If they do not, the technique may remain most useful as an interpretability and red-team tool. The field has not settled that question yet.

Test it properly

What a benchmark worth believing should report

A performance number means little unless the workload, system configuration and quality bar are fixed. This is the minimum record a team should keep.

MetricHow to measure itWhy it matters
Target-behavior improvement Change in the operational behavior the controller is meant to correct, measured on held-out trajectories. The intervention must solve the actual systems problem, not merely move an activation score.
Task-level success Resolve rate, completion rate or another end-to-end outcome with and without steering. Internal control is valuable only if it improves real task performance or risk.
Intervention precision Fraction of interventions that improve the target state without collateral guardrail violations. Frequent unnecessary steering can degrade otherwise calibrated behavior.
False-trigger rate Share of healthy states incorrectly pushed outside their natural trajectory. A controller should usually leave normal computation untouched.
Capability retention Performance on unrelated reasoning, coding, instruction-following and safety tasks before and after steering. Targeted control should not quietly damage general capability.
Causal effect size Behavior change under controlled perturbation of the candidate representation. Predictive probes are insufficient evidence for a control actuator.
Cross-prompt stability Detector and steering quality across paraphrases, system prompts and context lengths. A production controller must not depend on one prompt template.
Cross-task transfer Performance on repositories, tools or task families excluded from controller training. Benchmark-specific geometry may not generalize.
Runtime overhead Added latency, memory traffic and compute per token or agent step. A low-level controller competes directly with serving efficiency.
Upgrade stability Performance after quantization, checkpoint, serving-engine or prompt-stack changes. Steering artifacts can become stale when model internals move.
Product choices

Four sensible deployment patterns

01

Shadow drift monitor

Where it fits
Teams with open models and known long-horizon failure modes.
What you take on
Low behavioral risk because no intervention occurs, but still requires activation capture and labeling infrastructure.
02

Threshold-gated capping

Where it fits
Behaviors with a validated calibrated band and sparse high-confidence excursions.
What you take on
More conservative than always-on steering, but threshold tuning can miss subtle drift.
03

Token-specific steering function

Where it fits
Cases where prompt effects vary strongly across token positions.
What you take on
Potentially more faithful than a fixed vector, with higher complexity and validation cost.
04

Agent reasoning-action hook

Where it fits
Tool-using agents with explicit boundaries between reasoning and action.
What you take on
Targets a meaningful control point but may depend on model-specific formatting or special tokens.
05

Interpretability-assisted red team

Where it fits
Offline safety audits searching for hidden intent, evaluation awareness or latent objectives.
What you take on
Useful without production intervention, but findings may not transfer cleanly to live traffic.
06

Hybrid prompt-plus-activation controller

Where it fits
Systems where prompts establish policy and activation steering corrects known runtime drift.
What you take on
More robust than relying on either layer alone, but harder to attribute which control caused an outcome.
Lessons from the edge cases

Where projects usually go wrong

01

Correlational probe mistaken for a causal variable

What you see: High detector accuracy but little or erratic behavior change after steering.

What to do: Require controlled intervention experiments before deployment.

02

Oversteering

What you see: Target behavior improves while fluency, reasoning or unrelated tasks degrade.

What to do: Use bounded, gated interventions and capability-retention tests.

03

Stale vector after model update

What you see: Trigger rates or outcomes shift after a checkpoint or serving change.

What to do: Bind artifacts to model hashes and requalify every material revision.

04

Distribution shift

What you see: Controller works on benchmark prompts but fails on real user trajectories.

What to do: Use held-out domains, shadow traffic and periodic recalibration.

05

Adversarial threshold evasion

What you see: Harmful behavior remains just inside the calibrated band.

What to do: Test adaptive attacks and retain independent external safety gates.

06

Intervention-trigger attack

What you see: Inputs deliberately cause repeated steering and degraded service.

What to do: Rate-limit control events and monitor unusual firing patterns.

07

Hidden capability loss

What you see: Primary benchmark improves while secondary tasks regress.

What to do: Maintain a broad capability and safety regression suite.

08

Wrong hook location

What you see: Intervention has no effect or destabilizes generation.

What to do: Validate layer and token-position sensitivity experimentally.

09

Quantization mismatch

What you see: Controller behavior changes between research and production inference formats.

What to do: Train and qualify against the deployed quantized checkpoint.

10

Opaque controller provenance

What you see: Teams cannot explain which data, labels or assumptions produced a steering artifact.

What to do: Store signed metadata, datasets, thresholds and evaluation reports.

11

Controller becomes authorization logic

What you see: A “safe-looking” hidden state is used to permit irreversible actions.

What to do: Keep permissions and policy checks external and deterministic.

12

Human-readable activation explanation overtrusted

What you see: Natural-language descriptions are treated as faithful ground truth for internal state.

What to do: Use explanations for investigation and numerical/behavioral validation for control.

Before release

A checklist you can actually use

  1. Is the target behavior defined operationally rather than with a vague safety label?
  2. Do you have representative successful, failed and adversarial trajectories?
  3. Are state labels tied to specific trajectory steps rather than final outcomes only?
  4. Can you access the exact hidden states used in the deployed model?
  5. Has the detector been evaluated on held-out tasks and prompts?
  6. Have you shown a causal behavior change under intervention?
  7. Is there a calibrated no-intervention region?
  8. Are intervention magnitudes bounded?
  9. Does the controller preserve unrelated capabilities?
  10. Have you compared against strong prompt and orchestration baselines?
  11. Is false-trigger rate measured explicitly?
  12. Are latency and memory overhead acceptable?
  13. Is the steering artifact tied to a model/checkpoint hash?
  14. Will quantization or serving-engine changes trigger requalification?
  15. Can the controller run in shadow mode before activation?
  16. Is every intervention logged with score, magnitude and outcome?
  17. Are steering configs access-controlled and signed?
  18. Have adaptive attacks against the monitor been tested?
  19. Do external policy gates remain authoritative?
  20. Is there a kill switch and a conventional fallback path?
Plain-language definitions

Terms worth knowing

Activation
The numerical hidden state produced inside a neural network as it processes an input.
Activation steering
Changing model behavior at inference time by modifying internal activations while keeping model weights fixed.
Residual stream
The shared hidden representation that transformer blocks repeatedly read from and write to.
Steering vector
A direction in activation space associated with a behavior or concept and used for an additive intervention.
Probe
A classifier or predictor trained to infer a property from hidden activations.
Causal intervention
A deliberate change to an internal representation used to test whether that representation influences behavior.
Agent drift
Progressive degradation in an agent trajectory, such as repetitive reasoning or redundant action.
Overthinking
Reasoning that repeats existing information or delays an evidence-gathering action that would resolve uncertainty.
Overacting
Issuing tools or actions without adequately processing current evidence or when the result is already known.
Calibrated centroid
An empirical center of hidden states labeled as healthy or calibrated, used as a reference for runtime scoring.
Forward hook
Code attached to a model layer that can inspect or modify activations during inference.
Representation engineering
Methods that analyze or control model behavior through high-level directions or structures in hidden-state space.
Mediation
The degree to which an internal component causally carries the effect of an input condition to an output behavior.
J-space
Anthropic’s name for a set of verbalizable internal representations that its research links to reportable and flexible reasoning.
Jacobian lens
A method that uses output sensitivity to identify internal directions associated with concepts the model is poised to verbalize.
Natural Language Autoencoder
A system that verbalizes an activation into text and reconstructs the activation from that explanation.
Shadow mode
A deployment phase in which a controller observes and logs decisions without changing model behavior.
Collateral capability loss
Unintended degradation on tasks or behaviors outside the target of the steering intervention.
Control artifact
The versioned set of directions, thresholds, hook locations and parameters used by a runtime steering system.
External policy gate
A control outside the model that deterministically permits or blocks an action based on explicit rules or permissions.
About the author

H. Omer Aktas

H. Omer Aktas is the independent editor and publisher of WTFIsTrending.com. He applies more than 30 years of operational, surveillance, analytics and systems experience from regulated casino environments to questions of evidence, controls, implementation risk and deployment reality. He also publishes ChipsAndTruths.com and AIUpdateWatch.com and develops the practical casino-operations project CasinoOpsAI.com.

Source trail · 11 references

Primary references and technical starting points

These sources support the architecture, runtime, benchmark and security claims. Vendor capabilities can change, so the article records the distinction between established evidence, measured product behavior and editorial interpretation.

  1. 01 TACT: Mitigating Overthinking and Overacting in Coding Agents via Activation Steeringarxiv.org
  2. 02 Anthropic: A global workspace in language modelsanthropic.com
  3. 03 Verbalizable Representations Form a Global Workspace in Language Modelsarxiv.org
  4. 04 Beyond Steering Vector: Flow-based Activation Steering for Inference-Time Interventionarxiv.org
  5. 05 Steer Like the LLM: Activation Steering that Mimics Promptingarxiv.org
  6. 06 Surgical Activation Steering via Generative Causal Mediationarxiv.org
  7. 07 MechELK: A Mechanistic Interpretability Framework for Eliciting Latent Knowledge in Large Language Modelsarxiv.org
  8. 08 AxBench: Steering LLMs? Even Simple Baselines Outperform Sparse Autoencodersarxiv.org
  9. 09 Anthropic: Natural Language Autoencoders — Turning Claude’s thoughts into textanthropic.com
  10. 10 Anthropic: The assistant axis — situating and stabilizing the character of large language modelsanthropic.com
  11. 11 Activation Steering for Aligned Open-ended Generation without Sacrificing Coherencearxiv.org