-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Expand file tree
/
Copy pathbuild_llms_txt.py
More file actions
339 lines (281 loc) · 10.8 KB
/
build_llms_txt.py
File metadata and controls
339 lines (281 loc) · 10.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
#!/usr/bin/env python3
"""
build_llms_txt.py – produce llms.txt and llms-full.txt
– skips ```java``` blocks
– README can be next to docs/ or inside docs/
– includes Python API reference from HTML files
– includes adk-python repository README
"""
from __future__ import annotations
import argparse
from pathlib import Path
import re
import sys
import textwrap
from typing import List
from typing import Tuple
import urllib.error
import urllib.request
RE_JAVA = re.compile(r"```java[ \t\r\n][\s\S]*?```", re.I | re.M)
RE_SNIPPET = re.compile(r"^(\s*)--8<--\s+\"([^\"]+?)(?::([^\"]+))?\"$", re.M)
def fetch_adk_python_readme() -> str:
"""Fetch README content from adk-python repository"""
try:
url = "https://raw.githubusercontent.com/google/adk-python/main/README.md"
with urllib.request.urlopen(url) as response:
return response.read().decode("utf-8")
except (urllib.error.URLError, urllib.error.HTTPError) as e:
print(f"Warning: Could not fetch adk-python README: {e}")
return ""
def strip_java(md: str) -> str:
return RE_JAVA.sub("", md)
def first_heading(md: str) -> str | None:
for line in md.splitlines():
if line.startswith("#"):
return line.lstrip("#").strip()
return None
def md_to_text(md: str) -> str:
import bs4
import markdown
html = markdown.markdown(
md, extensions=["fenced_code", "tables", "attr_list"]
)
return bs4.BeautifulSoup(html, "html.parser").get_text("\n")
def html_to_text(html_file: Path) -> str:
"""Extract text content from HTML files (for Python API reference)"""
import bs4
try:
html_content = html_file.read_text(encoding="utf-8")
soup = bs4.BeautifulSoup(html_content, "html.parser")
# Remove script and style elements
for script in soup(["script", "style"]):
script.decompose()
# Get text and clean it up
text = soup.get_text()
lines = (line.strip() for line in text.splitlines())
chunks = (phrase.strip() for line in lines for phrase in line.split(" "))
text = "\n".join(chunk for chunk in chunks if chunk)
return text
except Exception as e:
print(f"Warning: Could not process {html_file}: {e}")
return ""
def count_tokens(text: str, model: str = "cl100k_base") -> int:
try:
import tiktoken
return len(tiktoken.get_encoding(model).encode(text))
except Exception:
return len(text.split())
def expand_code_snippets(content: str, project_root: Path) -> str:
"""
Expands code snippets marked with --8<-- "path/to/file.py" or
--8<-- "path/to/file.py:section_name" into the content.
"""
def replace_snippet(match):
indent = match.group(1) # Capture leading spaces
snippet_path_str = match.group(
2
) # Capture the file path (e.g., "examples/python/snippets/file.py")
section_name = match.group(
3
) # Capture the section name if present (e.g., "init")
snippet_full_path = (
project_root / snippet_path_str
) # Changed from base_path to project_root
# If not found in project root, try adk-docs directory
if not snippet_full_path.exists():
script_dir = Path(__file__).resolve().parent
adk_docs_path = script_dir / "adk-docs" / snippet_path_str
if adk_docs_path.exists():
snippet_full_path = adk_docs_path
if snippet_full_path.exists():
try:
file_content = snippet_full_path.read_text(encoding="utf-8")
if section_name:
# Extract content based on section markers
# Handle both single and double hash markers with optional spacing
start_marker_patterns = [
f"# --8<-- [start:{section_name.strip()}]",
f"## --8<-- [start:{section_name.strip()}]",
]
end_marker_patterns = [
f"# --8<-- [end:{section_name.strip()}]",
f"## --8<-- [end:{section_name.strip()}]",
f"## --8<-- [end:{section_name.strip()}]", # Handle extra space
]
start_index = -1
end_index = -1
# Find start marker
for pattern in start_marker_patterns:
start_index = file_content.find(pattern)
if start_index != -1:
start_marker = pattern
break
# Find end marker
for pattern in end_marker_patterns:
end_index = file_content.find(pattern)
if end_index != -1:
break
if start_index != -1 and end_index != -1 and start_index < end_index:
# Adjust start_index to begin immediately after the start_marker
start_of_code = start_index + len(start_marker)
temp_content = file_content[start_of_code:end_index]
lines = temp_content.splitlines(keepends=True)
extracted_lines = []
for line in lines:
if (
not line.strip().startswith("# --8<--")
and not line.strip().startswith("## --8<--")
and line.strip() != ""
):
extracted_lines.append(line)
extracted_content = "".join(extracted_lines).strip("\n")
return textwrap.indent(extracted_content, indent)
else:
print(
f"Warning: Section '{section_name}' not found or markers"
f" malformed in {snippet_full_path}"
)
return match.group(0)
else:
# Read entire file if no section name
return textwrap.indent(file_content, indent)
except Exception as e:
print(f"Warning: Could not read snippet file {snippet_full_path}: {e}")
return match.group(0)
else:
print(f"Warning: Snippet file not found: {snippet_full_path}")
return match.group(0)
expanded_content = RE_SNIPPET.sub(replace_snippet, content)
return expanded_content
# ---------- index (llms.txt) ----------
def build_index(docs: Path) -> str:
# Locate README
for cand in (docs / "README.md", docs.parent / "README.md"):
if cand.exists():
readme = cand.read_text(encoding="utf-8")
break
else:
sys.exit("README.md not found in docs/ or its parent")
title = first_heading(readme) or "Documentation"
summary = md_to_text(readme).split("\n\n")[0]
lines = [f"# {title}", "", f"> {summary}", ""]
# Add adk-python repository README content
adk_readme = fetch_adk_python_readme()
if adk_readme:
lines.append("## ADK Python Repository")
lines.append("")
# Include the full README content, properly formatted
adk_text = md_to_text(strip_java(adk_readme))
lines.append(adk_text)
lines.append("")
lines.append(
f"**Source:** [adk-python"
f" repository](https://github.com/google/adk-python)"
)
lines.append("")
primary: List[Tuple[str, str]] = []
secondary: List[Tuple[str, str]] = []
# Process Markdown files
for md in sorted(docs.rglob("*.md")):
# Skip Java API reference files
if "api-reference" in md.parts and "java" in md.parts:
continue
rel = md.relative_to(docs)
# Construct the correct GitHub URL for the Markdown file
url = f"https://github.com/google/adk-docs/blob/main/docs/{rel}".replace(
" ", "%20"
)
h = first_heading(strip_java(md.read_text(encoding="utf-8"))) or rel.stem
(
secondary
if "sample" in rel.parts or "tutorial" in rel.parts
else primary
).append((h, url))
# Add Python API reference
python_api_dir = docs / "api-reference" / "python"
if python_api_dir.exists():
primary.append((
"Python API Reference",
"https://github.com/google/adk-docs/blob/main/docs/api-reference/python/",
))
def emit(name: str, items: List[Tuple[str, str]]):
nonlocal lines
if items:
lines.append(f"## {name}")
lines += [f"- [{h}]({u})" for h, u in items]
lines.append("")
emit("Documentation", primary)
emit("Optional", secondary)
return "\n".join(lines)
# ---------- full corpus ----------
def build_full(docs: Path) -> str:
out = []
script_dir = Path(__file__).resolve().parent
project_root = script_dir.parents[2] # Correct project root
print(f"DEBUG: Project Root: {project_root}")
print(f"DEBUG: Docs Dir: {docs}")
# Add adk-python repository README content at the beginning
adk_readme = fetch_adk_python_readme()
if adk_readme:
# Expand snippets in README if any
expanded_adk_readme = expand_code_snippets(
strip_java(adk_readme), project_root
) # Pass project_root
out.append("# ADK Python Repository")
out.append("")
out.append(expanded_adk_readme) # Use expanded content
out.append("")
out.append("---")
out.append("")
# Process Markdown files
for md in sorted(docs.rglob("*.md")):
# Skip Java API reference files
if "api-reference" in md.parts and "java" in md.parts:
continue
md_content = md.read_text(encoding="utf-8")
print(f"DEBUG: Processing markdown file: {md.relative_to(docs)}")
expanded_md_content = expand_code_snippets(
strip_java(md_content), project_root
) # Changed back to project_root
out.append(expanded_md_content) # Use expanded content
# Process Python API reference HTML files
python_api_dir = docs / "api-reference" / "python"
if python_api_dir.exists():
# Add a separator and header for Python API reference
out.append("\n\n# Python API Reference\n")
# Process main HTML files (skip static assets and generated files)
html_files = [
python_api_dir / "index.html",
python_api_dir / "google-adk.html",
python_api_dir / "genindex.html",
python_api_dir / "py-modindex.html",
]
for html_file in html_files:
if html_file.exists():
text = html_to_text(html_file)
if text.strip():
out.append(f"\n## {html_file.stem}\n")
out.append(text)
return "\n\n".join(out)
def main() -> None:
ap = argparse.ArgumentParser(
description="Generate llms.txt / llms-full.txt",
formatter_class=argparse.RawDescriptionHelpFormatter,
)
ap.add_argument("--docs-dir", required=True, type=Path)
ap.add_argument("--out-root", default=Path("."), type=Path)
ap.add_argument("--index-limit", type=int, default=50_000)
ap.add_argument("--full-limit", type=int, default=500_000)
args = ap.parse_args()
idx, full = build_index(args.docs_dir), build_full(args.docs_dir)
if (tok := count_tokens(idx)) > args.index_limit:
sys.exit(f"Index too big: {tok:,}")
if (tok := count_tokens(full)) > args.full_limit:
sys.exit(f"Full text too big: {tok:,}")
(args.out_root / "llms.txt").write_text(idx, encoding="utf-8")
(args.out_root / "llms-full.txt").write_text(full, encoding="utf-8")
print("✅ Generated llms.txt and llms-full.txt successfully")
print(f"llms.txt tokens: {count_tokens(idx)}")
print(f"llms-full.txt tokens: {count_tokens(full)}")
if __name__ == "__main__":
main()