Skip to content

Commit abbee50

Browse files
authored
Apply suggestions from code review
1 parent 2bd1a0f commit abbee50

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/generate_llms_by_category.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
REFERENCE_CONTEXT_DESCRIPTION = config["referenceContextDescription"].format(PROJECT_NAME=PROJECT_NAME)
2424

2525
# Use raw GitHub links for source URLs
26-
RAW_BASE_URL = f"https://raw.githubusercontent.com/{github_org}/{docs_repo}/refs/heads/main"
26+
RAW_BASE_URL = f"https://raw.githubusercontent.com/{github_org}/{docs_repo}/refs/heads/master"
2727

2828

2929
docs_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), '..')) # path to docs directory

scripts/generate_llms_standard.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
output_file = os.path.join(docs_dir, 'llms-full.txt')
2727
snippet_dir = os.path.join(docs_dir, '.snippets')
2828
# GitHub raw URL base (instead of website)
29-
raw_base_url = f"https://raw.githubusercontent.com/{github_org}/{docs_repo}/refs/heads/main"
29+
raw_base_url = f"https://raw.githubusercontent.com/{github_org}/{docs_repo}/refs/heads/master"
3030

3131
# Regex to find lines like: --8<-- 'code/build/applications/...' and --8<-- 'http....'
3232
SNIPPET_REGEX = r"--8<--\s*['\"]([^'\"]+)['\"]"

0 commit comments

Comments
 (0)