Skip to content

Commit 8afe85f

Browse files
committed
s/search_temp_index/hybrid_search
1 parent 43adf6e commit 8afe85f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

llmstack/processors/providers/promptly/data_uri_text_extract.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,9 @@ def process(self) -> str:
112112
return output
113113

114114
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,
115+
documents: List[Document] = self.temp_store.hybrid_search(
116+
self.storage_index_name, document_query=DocumentQuery(
117+
query=query, limit=self._config.document_limit),
117118
)
118119

119120
async_to_sync(self._output_stream.write)(

0 commit comments

Comments
 (0)