We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43adf6e commit 8afe85fCopy full SHA for 8afe85f
llmstack/processors/providers/promptly/data_uri_text_extract.py
@@ -112,8 +112,9 @@ def process(self) -> str:
112
return output
113
114
if query and self.storage_index_name:
115
- documents: List[Document] = self.temp_store.search_temp_index(
116
- self.storage_index_name, query, self._config.document_limit,
+ documents: List[Document] = self.temp_store.hybrid_search(
+ self.storage_index_name, document_query=DocumentQuery(
117
+ query=query, limit=self._config.document_limit),
118
)
119
120
async_to_sync(self._output_stream.write)(
0 commit comments