mirror of
https://github.com/wassname/persona-steering-template-library.git
synced 2026-08-19 12:30:39 +08:00
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>
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
"""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()
|
||||
Reference in New Issue
Block a user