From eb76df2c0d8a5d77667fcaaa413655639e9208ca Mon Sep 17 00:00:00 2001 From: Chris Murphy Date: Mon, 1 Dec 2025 16:15:58 -0500 Subject: [PATCH] added missing deep crawling objects to init --- crawl4ai/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crawl4ai/__init__.py b/crawl4ai/__init__.py index 8f1fdef4..af35e6a0 100644 --- a/crawl4ai/__init__.py +++ b/crawl4ai/__init__.py @@ -72,6 +72,8 @@ from .deep_crawling import ( BestFirstCrawlingStrategy, DFSDeepCrawlStrategy, DeepCrawlDecorator, + ContentRelevanceFilter, + ContentTypeScorer, ) # NEW: Import AsyncUrlSeeder from .async_url_seeder import AsyncUrlSeeder