git » alan.git » commit 65faa54

Remove generation parameters from meta and booklet output

author Alan Dipert
2025-12-04 05:06:20 UTC
committer Alan Dipert
2025-12-04 05:06:20 UTC
parent 0aabbc4f7753e4f968c1a24a15bbf15b95f082f7

Remove generation parameters from meta and booklet output

render_text.py +0 -6
test_generator.py +0 -1

diff --git a/render_text.py b/render_text.py
index 5f03a7d..975ef89 100644
--- a/render_text.py
+++ b/render_text.py
@@ -26,12 +26,6 @@ def render_booklet(data: Dict[str, Any]) -> str:
     if meta.get("instructions"):
         lines.append(meta["instructions"])
         lines.append("")
-    params = meta.get("generation_params")
-    if params:
-        lines.append("## Generation parameters")
-        for k, v in params.items():
-            lines.append(f"- **{k}**: {v}")
-        lines.append("")
     if meta.get("rules"):
         lines.append("## Grammar Cheat Sheet")
         for rule in meta["rules"]:
diff --git a/test_generator.py b/test_generator.py
index 9c299b1..bbd1710 100644
--- a/test_generator.py
+++ b/test_generator.py
@@ -783,7 +783,6 @@ def generate_test(
                 "the examples. You do not need any linguistics background. For each question, pick "
                 "the best option (A-D). All correct answers keep the order: doer, receiver, verb."
             ),
-            "generation_params": meta_params,
             "rules": [
                 "Word order: DOER RECEIVER VERB (SOV). For 'give': doer, recipient, theme, verb.",
                 "Adjectives follow the noun they describe.",