We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b10910f commit 9487ff9Copy full SHA for 9487ff9
scripts/generate_llms.py
@@ -40,6 +40,10 @@ def get_all_markdown_files(directory):
40
if 'node_modules' in root.split(os.sep):
41
continue
42
43
+ # Skip 'venv' directory
44
+ if 'venv' in root.split(os.sep):
45
+ continue
46
+
47
for file in files:
48
if file.endswith(('.md', '.mdx')):
49
results.append(os.path.join(root, file))
0 commit comments