Skip to content
Snippets Groups Projects
Unverified Commit f0dba005 authored by Logan's avatar Logan Committed by GitHub
Browse files

use proper retriever kwargs (#11874)

parent 720959a9
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,10 @@ class LlamaCloudRetriever(BaseRetriever):
self._alpha = alpha or OMIT
self._search_filters = search_filters or OMIT
super().__init__(**kwargs)
super().__init__(
callback_manager=kwargs.get("callback_manager", None),
verbose=kwargs.get("verbose", False),
)
def _result_nodes_to_node_with_score(
self, result_nodes: List[TextNodeWithScore]
......
......@@ -30,7 +30,7 @@ exclude = ["**/BUILD"]
license = "MIT"
name = "llama-index-indices-managed-llama-cloud"
readme = "README.md"
version = "0.1.3"
version = "0.1.4"
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment