Skip to content
Open
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
4 changes: 2 additions & 2 deletions crawl4ai/content_filter_strategy.py
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ def __init__(
threshold_type (str): Threshold type for dynamic threshold (default: 'fixed').
threshold (float): Fixed threshold value (default: 0.48).
"""
super().__init__(None)
super().__init__(user_query=user_query)
self.min_word_threshold = min_word_threshold
self.threshold_type = threshold_type
self.threshold = threshold
Expand Down Expand Up @@ -823,7 +823,7 @@ def __init__(
api_base: Optional[str] = None,
extra_args: Dict = None,
):
super().__init__(None)
super().__init__(user_query=user_query)
self.provider = provider
self.api_token = api_token
self.base_url = base_url or api_base
Expand Down