Skip to content

Commit 9c58e4c

Browse files
committed
fix(docs): correct section numbering in deepcrawl_example.py tutorial
1 parent df6a6d5 commit 9c58e4c

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/examples/deepcrawl_example.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ async def filters_and_scorers():
237237
# 4️⃣ Advanced Filters
238238
async def advanced_filters():
239239
"""
240-
PART 5: Demonstrates advanced filtering techniques for specialized crawling.
240+
PART 4: Demonstrates advanced filtering techniques for specialized crawling.
241241
242242
This function covers:
243243
- SEO filters
@@ -300,7 +300,7 @@ async def advanced_filters():
300300
# 5️⃣ Max Pages and Score Thresholds
301301
async def max_pages_and_thresholds():
302302
"""
303-
PART 6: Demonstrates using max_pages and score_threshold parameters with different strategies.
303+
PART 5: Demonstrates using max_pages and score_threshold parameters with different strategies.
304304
305305
This function shows:
306306
- How to limit the number of pages crawled
@@ -399,7 +399,7 @@ async def max_pages_and_thresholds():
399399
# 6️⃣ Wrap-Up and Key Takeaways
400400
async def wrap_up():
401401
"""
402-
PART 4: Wrap-Up and Key Takeaways
402+
PART 6: Wrap-Up and Key Takeaways
403403
404404
Summarize the key concepts learned in this tutorial.
405405
"""
@@ -478,12 +478,12 @@ async def run_tutorial():
478478

479479
# Define sections - uncomment to run specific parts during development
480480
tutorial_sections = [
481-
# basic_deep_crawl,
482-
# stream_vs_nonstream,
483-
# filters_and_scorers,
484-
max_pages_and_thresholds, # Added new section
485-
wrap_up,
481+
basic_deep_crawl,
482+
stream_vs_nonstream,
483+
filters_and_scorers,
484+
max_pages_and_thresholds,
486485
advanced_filters,
486+
wrap_up,
487487
]
488488

489489
for section in tutorial_sections:

0 commit comments

Comments
 (0)