File tree Expand file tree Collapse file tree 2 files changed +0
-3
lines changed
llmstack/processors/providers/promptly Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,6 @@ def process(self) -> DataSourceSearchOutput:
103103 query = input_data .query ,
104104 alpha = hybrid_semantic_search_ratio ,
105105 limit = self ._config .document_limit ,
106- search_filters = self ._config .search_filters ,
107106 use_hybrid_search = True ,
108107 )
109108 documents .extend (result )
Original file line number Diff line number Diff line change @@ -187,7 +187,6 @@ def fetch_datasource_docs(datasource_uuid):
187187 )
188188 pipeline = datasource .create_data_query_pipeline ()
189189 search_query = input ["question" ]
190- search_filters = input ["search_filters" ]
191190 if (
192191 len (
193192 self ._chat_history ,
@@ -210,7 +209,6 @@ def fetch_datasource_docs(datasource_uuid):
210209 alpha = self ._config .hybrid_semantic_search_ratio ,
211210 query = search_query ,
212211 limit = self ._config .k ,
213- search_filters = search_filters ,
214212 )
215213 except Exception as e :
216214 logger .error (
You can’t perform that action at this time.
0 commit comments