mirror of
https://github.com/wassname/persona-steering-template-library.git
synced 2026-08-11 11:23:11 +08:00
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>
15 lines
285 B
Python
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()
|