Skip to content

Commit ea2685f

Browse files
fix: remove reference to a non-existent method in NvidiaRerankComponent (#5957)
Removing reference to nonexistent method Co-authored-by: brian.ogrady@datastax.com <brian.ogrady@datastax.com>
1 parent e8879ff commit ea2685f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/base/langflow/components/nvidia/nvidia_rerank.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class NvidiaRerankComponent(LCVectorStoreComponent):
5353
def update_build_config(self, build_config: dotdict, field_value: Any, field_name: str | None = None):
5454
if field_name == "base_url" and field_value:
5555
try:
56-
build_model = self.build_model()
56+
build_model = self.build_reranker()
5757
ids = [model.id for model in build_model.available_models]
5858
build_config["model"]["options"] = ids
5959
build_config["model"]["value"] = ids[0]

0 commit comments

Comments
 (0)