Skip to content

Commit

Permalink
Ruff check fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
erichare committed Sep 11, 2024
1 parent 087627a commit 05d9476
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/backend/base/langflow/components/vectorstores/AstraDB.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from langflow.base.vectorstores.model import LCVectorStoreComponent, check_cached_vector_store
from langflow.helpers import docs_to_data
from langflow.inputs import DictInput, FloatInput
from langflow.inputs import DictInput, FloatInput, MessageTextInput
from langflow.io import (
BoolInput,
DataInput,
Expand Down Expand Up @@ -269,7 +269,6 @@ def update_build_config(self, build_config: dict, field_value: str, field_name:
if field in build_config:
del build_config[field]

provider_value = self.VECTORIZE_PROVIDERS_MAPPING[field_value][0]
model_options = self.VECTORIZE_PROVIDERS_MAPPING[field_value][1]

new_parameter_0 = DropdownInput(
Expand Down

0 comments on commit 05d9476

Please sign in to comment.