Skip to content

Commit 6640c2a

Browse files
committed
update f string copy to match file renaming
1 parent 13e0578 commit 6640c2a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/generate_llms.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
Runs, in order:
88
1) generate_ai_pages.py -> /.ai/pages/*.md (loads its own config; no --config flag)
99
2) generate_llms_txt.py -> /llms.txt
10-
3) generate_site_index.py -> /.ai/site-index.json (+sections.jsonl by default)
11-
4) generate_category_bundles.py -> /.ai/categories/*.manifest.json (or other formats)
10+
3) generate_site_index.py -> /.ai/site-index.json (+llms-full.jsonl by default)
11+
4) generate_category_bundles.py -> /.ai/categories/*.bundle.md (or other formats)
1212
1313
Defaults:
1414
- sections: enabled (use --no-sections to turn off)
@@ -100,7 +100,7 @@ def main():
100100
site_index_cmd.append("--dry-run")
101101
if args.limit:
102102
site_index_cmd += ["--limit", str(args.limit)]
103-
run_step("Generate site-index (and sections.jsonl if enabled)", site_index_cmd)
103+
run_step("Generate site-index and full site content files", site_index_cmd)
104104

105105
# 4) category bundles (manifest/jsonl/md/all)
106106
bundles_cmd = [

0 commit comments

Comments
 (0)