Draft
Conversation
d852b59 to
9de6668
Compare
rsmith49
commented
Jan 22, 2026
| title = {ARES Mechanistic Interpretability Module}, | ||
| author = {Martian}, | ||
| year = {2025}, | ||
| url = {https://github.com/anthropics/ares} |
Contributor
Author
There was a problem hiding this comment.
LOL I see you claude code
5953af7 to
90c5138
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
User description
In progress - current implementation is mostly vibe coded, will clean up and merge
Generated description
Below is a concise technical summary of the changes proposed in this PR:
graph LR main_("main"):::added HookedTransformerLLMClient_("HookedTransformerLLMClient"):::added ActivationCapture_("ActivationCapture"):::added TrajectoryActivations_("TrajectoryActivations"):::added InterventionManager_("InterventionManager"):::added create_zero_ablation_hook_("create_zero_ablation_hook"):::added main_ -- "Adds hooked-transformer LLM client enabling local inference with hooks." --> HookedTransformerLLMClient_ main_ -- "Captures activations per step via ActivationCapture context manager." --> ActivationCapture_ ActivationCapture_ -- "get_trajectory returns TrajectoryActivations aggregating step ActivationCaches." --> TrajectoryActivations_ main_ -- "Uses TrajectoryActivations to access/save per-step activation data." --> TrajectoryActivations_ main_ -- "Applies InterventionManager to add/remove hook-based interventions during runs." --> InterventionManager_ InterventionManager_ -- "Uses zero-ablation hook to zero specific attention heads." --> create_zero_ablation_hook_ classDef added stroke:#15AA7A classDef removed stroke:#CD5270 classDef modified stroke:#EDAC4C linkStyle default stroke:#CBD5E1,font-size:13pxIntegrates
TransformerLensinto the ARES framework to enable trajectory-level mechanistic interpretability for agents. Introduces specialized components for capturing model activations and performing causal interventions during agent execution.ActivationCaptureandInterventionManagerfor analyzing agent behavior.Modified files (3)
Latest Contributors(2)
HookedTransformerLLMClientandActivationCaptureto facilitate activation tracking and hook-based interventions within ARES environments.Modified files (4)
Latest Contributors(0)