Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions crawl4ai/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@
"TableExtractionStrategy",
"DefaultTableExtraction",
"NoTableExtraction",
"LLMTableExtraction",
"RelevantContentFilter",
"PruningContentFilter",
"BM25ContentFilter",
Expand Down
2 changes: 1 addition & 1 deletion crawl4ai/async_configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ class MatchMode(Enum):
# Dispatchers
"MemoryAdaptiveDispatcher", "SemaphoreDispatcher",
# Table extraction
"DefaultTableExtraction", "NoTableExtraction",
"DefaultTableExtraction", "NoTableExtraction", "LLMTableExtraction",
# Proxy
"RoundRobinProxyStrategy",
}
Expand Down
2 changes: 1 addition & 1 deletion deploy/docker/tests/test_security_fixes.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def setUp(self):
"DomainAuthorityScorer", "FreshnessScorer", "PathDepthScorer",
"CacheMode", "MatchMode", "DisplayMode",
"MemoryAdaptiveDispatcher", "SemaphoreDispatcher",
"DefaultTableExtraction", "NoTableExtraction",
"DefaultTableExtraction", "NoTableExtraction", "LLMTableExtraction",
"RoundRobinProxyStrategy",
}

Expand Down