Files
persona-steering-template-l…/scripts/report/plot_on_off_axis.py
T
wassnameandClaudypoo b8e22f42fb refactor: sort scripts/ by who runs it
Top level is now only what the runbook or a re-run touches: validate_persona_axes,
bounded_thinking_judge, template_catalog, export_selections, parse_stage_a, run_axis,
export_steering_selection. Corpus ingestion and publishing moved to scripts/corpus/,
plotting and stats to scripts/report/.

Moved files needed parents[1] -> parents[2]; the two corpus scripts that import
template_catalog use the sys.path shim bounded_thinking_judge_liveproof already used.

Also completes the export_steering_selection rename: an earlier git reset had dropped
the staged deletion, leaving both filenames tracked.

Co-Authored-By: Claudypoo <288921227+claudypoo@users.noreply.github.com>
2026-07-25 10:23:22 +08:00

15 lines
285 B
Python

"""Write the previous-results Plotly figure as PNG and SVG."""
from __future__ import annotations
import readme_plot
def main() -> None:
readme_plot.write_main_plot_assets()
print(readme_plot.MAIN_PNG)
print(readme_plot.MAIN_SVG)
if __name__ == "__main__":
main()