mirror of
https://github.com/unclecode/crawl4ai.git
synced 2026-06-11 16:28:11 +00:00
fix: add LLMTableExtraction to Docker API deserialization allowlist
This commit is contained in:
@@ -169,6 +169,7 @@ __all__ = [
|
||||
"TableExtractionStrategy",
|
||||
"DefaultTableExtraction",
|
||||
"NoTableExtraction",
|
||||
"LLMTableExtraction",
|
||||
"RelevantContentFilter",
|
||||
"PruningContentFilter",
|
||||
"BM25ContentFilter",
|
||||
|
||||
@@ -150,7 +150,7 @@ ALLOWED_DESERIALIZE_TYPES = {
|
||||
# Dispatchers
|
||||
"MemoryAdaptiveDispatcher", "SemaphoreDispatcher",
|
||||
# Table extraction
|
||||
"DefaultTableExtraction", "NoTableExtraction",
|
||||
"DefaultTableExtraction", "NoTableExtraction", "LLMTableExtraction",
|
||||
# Proxy
|
||||
"RoundRobinProxyStrategy",
|
||||
}
|
||||
|
||||
@@ -251,7 +251,7 @@ class TestDeserializationAllowlist(unittest.TestCase):
|
||||
"DomainAuthorityScorer", "FreshnessScorer", "PathDepthScorer",
|
||||
"CacheMode", "MatchMode", "DisplayMode",
|
||||
"MemoryAdaptiveDispatcher", "SemaphoreDispatcher",
|
||||
"DefaultTableExtraction", "NoTableExtraction",
|
||||
"DefaultTableExtraction", "NoTableExtraction", "LLMTableExtraction",
|
||||
"RoundRobinProxyStrategy",
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user