15 lines
331 B
TOML
15 lines
331 B
TOML
|
|
[project]
|
||
|
|
name = "dify-vdb-myscale"
|
||
|
|
version = "0.0.1"
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
"clickhouse-connect==0.15.1",
|
||
|
|
]
|
||
|
|
description = "Dify vector store backend (dify-vdb-myscale)."
|
||
|
|
|
||
|
|
[project.entry-points."dify.vector_backends"]
|
||
|
|
myscale = "dify_vdb_myscale.myscale_vector:MyScaleVectorFactory"
|
||
|
|
|
||
|
|
[tool.setuptools.packages.find]
|
||
|
|
where = ["src"]
|