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

fix clickhouse init in vector store (#16903)

parent d8386833
No related branches found
No related tags found
No related merge requests found
...@@ -233,7 +233,7 @@ class ClickHouseVectorStore(BasePydanticVectorStore): ...@@ -233,7 +233,7 @@ class ClickHouseVectorStore(BasePydanticVectorStore):
"extract_func": lambda x: json.dumps(x.metadata), "extract_func": lambda x: json.dumps(x.metadata),
}, },
} }
column_names = list(self._column_config.keys()) column_names = list(column_config.keys())
column_type_names = [ column_type_names = [
column_config[column_name]["type"] for column_name in column_names column_config[column_name]["type"] for column_name in column_names
] ]
......
...@@ -27,7 +27,7 @@ exclude = ["**/BUILD"] ...@@ -27,7 +27,7 @@ exclude = ["**/BUILD"]
license = "MIT" license = "MIT"
name = "llama-index-vector-stores-clickhouse" name = "llama-index-vector-stores-clickhouse"
readme = "README.md" readme = "README.md"
version = "0.3.1" version = "0.3.2"
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = ">=3.8.1,<4.0" 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