Skip to main content

FlashTrace logo

FlashTrace

Fast token attribution for reasoning language models.

PyPI Python License PyTorch arXiv

FlashTrace traces generated answers back to the prompt tokens that shaped them. Use it from Python or the command line, export JSON traces, and render standalone HTML heatmaps for inspection and sharing.

📄 Paper  ·  🚀 Quickstart  ·  💻 CLI  ·  📝 Citation

Why FlashTrace

Reasoning models produce long generated chains, final answers, and intermediate spans that deserve targeted inspection. FlashTrace gives researchers a package-first workflow for tracing a selected generated span back to its supporting prompt tokens.

You get:

  • top-k prompt tokens ranked by attribution score
  • JSON traces for downstream analysis
  • standalone HTML token heatmaps
  • optional per-hop attribution panels
  • inclusive generation-token span controls for answer and reasoning segments

Install

From PyPI:

pip install flashtrace

From a local checkout:

pip install -e .

For development:

pip install -e ".[dev]"

FlashTrace uses PyTorch, Transformers, Accelerate, NumPy, and tqdm. A CUDA-capable GPU is recommended for public-scale Hugging Face models.

Quickstart

from flashtrace import FlashTrace, load_model_and_tokenizer

prompt = """Context: Paris is the capital of France.
Question: What is the capital of France?"""
target = "Paris"

model, tokenizer = load_model_and_tokenizer("Qwen/Qwen3-8B", device_map="auto")
tracer = FlashTrace(model, tokenizer, chunk_tokens=128, sink_chunk_tokens=32)

trace = tracer.trace(
    prompt=prompt,
    target=target,
    output_span=(0, 0),
    hops=1,
)

print(trace.topk_inputs(10))
trace.to_json("trace.json")
trace.to_html("trace.html")

trace.topk_inputs(10) returns TokenScore objects aligned to prompt-token indices:

rank  index  token      score
1     2      Paris      0.184
2     7      capital    0.131
3     10     France     0.119

trace.html is a standalone heatmap that highlights prompt tokens by final attribution score and includes trace metadata for the selected generated span.

FlashTrace(..., use_chat_template=True) formats prompts with the tokenizer chat template for chat-tuned models.

Command Line

Create prompt and target files:

printf "Context: Paris is the capital of France.\nQuestion: What is the capital of France?\n" > prompt.txt
printf "Paris" > target.txt

Run a trace:

flashtrace trace \
  --model Qwen/Qwen3-8B \
  --prompt prompt.txt \
  --target target.txt \
  --output-span 0:0 \
  --hops 1 \
  --html trace.html \
  --json trace.json

The command prints a compact top-k table and writes the requested artifacts.

Useful flags:

  • --model: Hugging Face model id or local model path
  • --prompt: UTF-8 prompt text file
  • --target: UTF-8 target text file
  • --output-span: inclusive START:END indices over generated tokens
  • --reasoning-span: inclusive START:END indices for a reasoning segment
  • --method: flashtrace, ifr-span, or ifr-matrix
  • --recompute-attention: lower-memory attention recomputation path
  • --use-chat-template: format prompts with the tokenizer chat template
  • --device-map: Transformers device map, default auto
  • --dtype: auto, float16, bfloat16, or float32

Token Spans

output_span and reasoning_span use inclusive generation-token indices. The first generated token has index 0.

Use an initial trace to inspect tokenization:

for index, token in enumerate(trace.generation_tokens):
    print(index, repr(token))

Then choose spans:

trace = tracer.trace(
    prompt=prompt,
    target=target,
    reasoning_span=(0, 79),
    output_span=(80, 85),
    hops=1,
)

Scores are aligned to trace.prompt_tokens. trace.per_hop_scores stores the same prompt-token alignment for each hop.

Interpreting Results

High-scoring prompt tokens are the tokens FlashTrace attributes most strongly to the selected generated span. For answer inspection, use output_span around the final answer tokens. For chain-of-thought or reasoning inspection, use reasoning_span around the generated reasoning segment.

Recommended workflow:

  1. Run a trace with your prompt and target.
  2. Inspect trace.generation_tokens.
  3. Select the answer or reasoning span.
  4. Export trace.html.
  5. Compare top-k tokens with the source prompt and any expected evidence.

Supported Models

FlashTrace targets Llama/Qwen-style decoder-only Hugging Face causal LMs with:

  • model.layers
  • Q/K/V/O attention projections
  • RMSNorm or LayerNorm
  • RoPE metadata

Validated model families for the first public release:

  • Qwen2
  • Qwen3
  • Llama

Python API

The public package exports:

from flashtrace import FlashTrace, TraceResult, load_model_and_tokenizer

FlashTrace.trace(...) accepts:

  • prompt: str
  • target: str | None
  • output_span: tuple[int, int] | None
  • reasoning_span: tuple[int, int] | None
  • hops: int
  • method: "flashtrace" | "ifr-span" | "ifr-matrix"
  • renorm_threshold: float | None

TraceResult includes:

  • prompt_tokens
  • generation_tokens
  • scores
  • per_hop_scores
  • thinking_ratios
  • output_span
  • reasoning_span
  • method
  • metadata

Export helpers:

trace.topk_inputs(20)
trace.to_dict()
trace.to_json("trace.json")
trace.to_html("trace.html")

Examples

python examples/quickstart.py --help
python examples/quickstart.py \
  --model Qwen/Qwen3-8B \
  --prompt "Context: Paris is the capital of France. Question: What is the capital of France?" \
  --target "Paris" \
  --output-span 0:0 \
  --html trace.html

Heavy model examples are intended for GPU environments. CPU smoke tests use tiny randomly initialized models.

Repository Map

  • flashtrace/: reusable Python package
  • examples/: public quickstarts
  • tests/: CPU smoke tests
  • exp/: paper experiments and research artifacts
  • docs/superpowers/: design and implementation planning documents

Research Experiments

The exp/ directory contains the paper-era experiment runners, case studies, and saved artifacts. The public package API lives in flashtrace/; experiment scripts keep compatibility imports during the package migration.

Troubleshooting

CUDA memory

Use smaller models, lower precision, device_map="auto", shorter prompts, or --recompute-attention.

Span selection

Print trace.generation_tokens and select inclusive generated-token indices. Tokenization can split visible words into multiple model tokens.

Deterministic generation

Pass a target file for attribution against a known output. Leave --target out when you want the CLI to generate with deterministic defaults.

Tokenizer alignment

Inspect trace.prompt_tokens and trace.generation_tokens when scores appear shifted from visible text. Attribution scores follow tokenizer-level alignment.

HTML export

trace.to_html("trace.html") writes a standalone file that can be opened locally or shared as an artifact.

Paper

FlashTrace implements the method described in Towards Long-Horizon Interpretability: Efficient and Faithful Multi-Token Attribution for Reasoning LLMs.

Citation

@misc{pan2026flashtrace,
  title={Towards Long-Horizon Interpretability: Efficient and Faithful Multi-Token Attribution for Reasoning LLMs},
  author={Pan, Wenbo and Liu, Zhichao and Wang, Xianlong and Yu, Haining and Jia, Xiaohua},
  year={2026},
  eprint={2602.01914},
  archivePrefix={arXiv},
  primaryClass={cs.LG}
}

Release files for flashtrace 0.1.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for flashtrace 0.1.1
File Size Uploaded
flashtrace-0.1.1.tar.gz 62.2 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for flashtrace 0.1.1
File Interpreter ABI Platform
flashtrace-0.1.1-py3-none-any.whl Python 3 none any Details

Total release size: 122.2 kB

Release files / flashtrace-0.1.1.tar.gz

Download URL flashtrace-0.1.1.tar.gz
Size 62.2 kB
Tags Source
SHA-256 checksum
How to use checksums
c5d646eda631ba27955a71102212b41d4811f39e7e29660b80eee3363156284f
BLAKE2b-256 checksum
How to use checksums
6a5627c588b8a8382a54deb78b74147e5a635c4ff42a57f6bf5d6e4982afd970
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / flashtrace-0.1.1-py3-none-any.whl

Download URL flashtrace-0.1.1-py3-none-any.whl
Size 60.0 kB
Tags Python 3
SHA-256 checksum
How to use checksums
09f857420e04749de8422b90ccd4a952dc15744e964a538db2a457bf668ce655
BLAKE2b-256 checksum
How to use checksums
0fd4b756f9cda10556725564fb195b47a56c0d69d7b49d9cac6f99f39c4be4ee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release history Release notifications | RSS feed

This release

0.1.1 This release

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page