File tree 1 file changed +8
-8
lines changed 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -237,7 +237,7 @@ async def filters_and_scorers():
237
237
# 4️⃣ Advanced Filters
238
238
async def advanced_filters ():
239
239
"""
240
- PART 5 : Demonstrates advanced filtering techniques for specialized crawling.
240
+ PART 4 : Demonstrates advanced filtering techniques for specialized crawling.
241
241
242
242
This function covers:
243
243
- SEO filters
@@ -300,7 +300,7 @@ async def advanced_filters():
300
300
# 5️⃣ Max Pages and Score Thresholds
301
301
async def max_pages_and_thresholds ():
302
302
"""
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.
304
304
305
305
This function shows:
306
306
- How to limit the number of pages crawled
@@ -399,7 +399,7 @@ async def max_pages_and_thresholds():
399
399
# 6️⃣ Wrap-Up and Key Takeaways
400
400
async def wrap_up ():
401
401
"""
402
- PART 4 : Wrap-Up and Key Takeaways
402
+ PART 6 : Wrap-Up and Key Takeaways
403
403
404
404
Summarize the key concepts learned in this tutorial.
405
405
"""
@@ -478,12 +478,12 @@ async def run_tutorial():
478
478
479
479
# Define sections - uncomment to run specific parts during development
480
480
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 ,
486
485
advanced_filters ,
486
+ wrap_up ,
487
487
]
488
488
489
489
for section in tutorial_sections :
You can’t perform that action at this time.
0 commit comments