File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 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():
237237# 4️⃣ Advanced Filters
238238async 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
301301async 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
400400async 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 :
You can’t perform that action at this time.
0 commit comments