From 358d598c1cc9f0a3e8267896c6112322c0201255 Mon Sep 17 00:00:00 2001 From: prem Date: Tue, 1 Apr 2025 23:17:12 +0800 Subject: [PATCH 1/6] Add Chromia Vector DB --- docs/tools/vdb_table/data/chromia.json | 188 +++++++++++++++++++++++++ 1 file changed, 188 insertions(+) create mode 100644 docs/tools/vdb_table/data/chromia.json diff --git a/docs/tools/vdb_table/data/chromia.json b/docs/tools/vdb_table/data/chromia.json new file mode 100644 index 000000000..f1a2499f7 --- /dev/null +++ b/docs/tools/vdb_table/data/chromia.json @@ -0,0 +1,188 @@ +{ + "name": "Chroma", + "links": { + "docs": "https://docs.chromia.com/intro/extensions/vector-db", + "github": "https://gitlab.com/chromaway/core/vector-db-extension", + "website": "https://chromia.com/", + "vendor_discussion": "https://github.com/superlinked/VectorHub/discussions/544", + "poc_github": "https://gitlab.com/johan.nilssonn", + "slug": "chromia" + }, + "oss": { + "support": "full", + "source_url": "", + "comment": "" + }, + "license": { + "value": "GPL-3.0", + "source_url": "https://www.gnu.org/licenses/", + "comment": "" + }, + "dev_languages": { + "value": [ + "kotlin" + ], + "source_url": "", + "comment": "" + }, + "vector_launch_year": 2025, + "metadata_filter": { + "support": "partial", + "source_url": "", + "comment": "" + }, + "hybrid_search": { + "support": "partial", + "source_url": "", + "comment": "" + }, + "facets": { + "support": "", + "source_url": "", + "comment": "" + }, + "geo_search": { + "support": "", + "source_url": "", + "comment": "" + }, + "multi_vec": { + "support": "none", + "source_url": "", + "comment": "" + }, + "sparse_vectors": { + "support": "none", + "source_url": "", + "comment": "" + }, + "bm25": { + "support": "none", + "source_url": "", + "comment": "" + }, + "full_text": { + "support": "partial", + "source_url": "https://docs.trychroma.com/guides#filtering-by-document-contents", + "comment": "" + }, + "embeddings_text": { + "support": "none", + "source_url": "", + "comment": "" + }, + "embeddings_image": { + "support": "none", + "source_url": "", + "comment": "" + }, + "embeddings_structured": { + "support": "", + "source_url": "", + "comment": "" + }, + "rag": { + "support": "", + "source_url": "", + "comment": "" + }, + "recsys": { + "support": "", + "source_url": "", + "comment": "" + }, + "langchain": { + "support": "", + "source_url": "", + "comment": "" + }, + "llamaindex": { + "support": "", + "source_url": "", + "comment": "" + }, + "managed_cloud": { + "support": "full", + "source_url": "https://chromia.com/mainnet", + "comment": "" + }, + "pricing": { + "value": "", + "source_url": "", + "comment": "" + }, + "in_process": { + "support": "", + "source_url": "", + "comment": "" + }, + "multi_tenancy": { + "support": "", + "source_url": "", + "comment": "" + }, + "disk_index": { + "support": "", + "source_url": "", + "comment": "" + }, + "ephemeral": { + "support": "none", + "source_url": "", + "comment": "" + }, + "sharding": { + "support": "full", + "source_url": "", + "comment": "" + }, + "doc_size": { + "bytes": 0, + "unlimited": false, + "source_url": "", + "comment": "" + }, + "vector_dims": { + "value": 2000, + "unlimited": false, + "source_url": "", + "comment": "" + }, + "index_types": { + "value": [ + "HNSW" + ], + "source_url": "", + "comment": "" + }, + "github_stars": { + "value": 0, + "source_url": "", + "comment": "", + "value_90_days": 0 + }, + "docker_pulls": { + "value": 0, + "source_url": "", + "comment": "", + "value_90_days": 0 + }, + "pypi_downloads": { + "value": 0, + "source_url": "", + "comment": "", + "value_90_days": 0 + }, + "npm_downloads": { + "value": 0, + "source_url": "", + "comment": "", + "value_90_days": 0 + }, + "crates_io_downloads": { + "value": 0, + "source_url": "", + "comment": "", + "value_90_days": 0 + } + } \ No newline at end of file From d17c36024f3d6bef1a8cb010555c767e86966847 Mon Sep 17 00:00:00 2001 From: prem Date: Thu, 3 Apr 2025 12:51:34 +0800 Subject: [PATCH 2/6] Updated based on comments --- docs/tools/vdb_table/data/chromia.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/tools/vdb_table/data/chromia.json b/docs/tools/vdb_table/data/chromia.json index f1a2499f7..e0affd9c1 100644 --- a/docs/tools/vdb_table/data/chromia.json +++ b/docs/tools/vdb_table/data/chromia.json @@ -10,7 +10,7 @@ }, "oss": { "support": "full", - "source_url": "", + "source_url": "https://gitlab.com/chromaway/core/vector-db-extension/-/blob/dev/LICENSE", "comment": "" }, "license": { @@ -27,7 +27,7 @@ }, "vector_launch_year": 2025, "metadata_filter": { - "support": "partial", + "support": "", "source_url": "", "comment": "" }, @@ -63,7 +63,7 @@ }, "full_text": { "support": "partial", - "source_url": "https://docs.trychroma.com/guides#filtering-by-document-contents", + "source_url": "https://gitlab.com/chromaway/core/vector-db-extension#local-run-and-example", "comment": "" }, "embeddings_text": { @@ -143,10 +143,10 @@ "comment": "" }, "vector_dims": { - "value": 2000, + "value": 1536, "unlimited": false, "source_url": "", - "comment": "" + "comment": "For now, the soft limit is 1536 but there is no official documentation about this. It depends on the embedding model as well" }, "index_types": { "value": [ From 383cffa0ec8ad25e5eec87cdc4c3c5e670024449 Mon Sep 17 00:00:00 2001 From: prem Date: Thu, 3 Apr 2025 21:19:30 +0800 Subject: [PATCH 3/6] Added link for max dimension --- docs/tools/vdb_table/data/chromia.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/tools/vdb_table/data/chromia.json b/docs/tools/vdb_table/data/chromia.json index e0affd9c1..42e7550f8 100644 --- a/docs/tools/vdb_table/data/chromia.json +++ b/docs/tools/vdb_table/data/chromia.json @@ -143,10 +143,10 @@ "comment": "" }, "vector_dims": { - "value": 1536, + "value": 2000, "unlimited": false, - "source_url": "", - "comment": "For now, the soft limit is 1536 but there is no official documentation about this. It depends on the embedding model as well" + "source_url": "https://github.com/pgvector/pgvector", + "comment": "" }, "index_types": { "value": [ From 4bec3fe9d19e191dde591acb2b81e7c534b2d32d Mon Sep 17 00:00:00 2001 From: prem Date: Wed, 9 Apr 2025 09:15:55 +0800 Subject: [PATCH 4/6] Typo Chromia --- docs/tools/vdb_table/data/chromia.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tools/vdb_table/data/chromia.json b/docs/tools/vdb_table/data/chromia.json index 42e7550f8..51c0f8b05 100644 --- a/docs/tools/vdb_table/data/chromia.json +++ b/docs/tools/vdb_table/data/chromia.json @@ -1,5 +1,5 @@ { - "name": "Chroma", + "name": "Chromia", "links": { "docs": "https://docs.chromia.com/intro/extensions/vector-db", "github": "https://gitlab.com/chromaway/core/vector-db-extension", From 4d323c13153604ef085620c36cac86d2c72bf04d Mon Sep 17 00:00:00 2001 From: prem Date: Mon, 14 Apr 2025 23:14:36 +0800 Subject: [PATCH 5/6] Updated vector_dims --- docs/tools/vdb_table/data/chromia.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tools/vdb_table/data/chromia.json b/docs/tools/vdb_table/data/chromia.json index 51c0f8b05..737313579 100644 --- a/docs/tools/vdb_table/data/chromia.json +++ b/docs/tools/vdb_table/data/chromia.json @@ -143,9 +143,9 @@ "comment": "" }, "vector_dims": { - "value": 2000, + "value": 0, "unlimited": false, - "source_url": "https://github.com/pgvector/pgvector", + "source_url": "", "comment": "" }, "index_types": { From 26052c047940971c15a1c304d903d4b36b81b229 Mon Sep 17 00:00:00 2001 From: prem Date: Tue, 13 May 2025 23:20:30 +0800 Subject: [PATCH 6/6] Added url/comment --- docs/tools/vdb_table/data/chromia.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/tools/vdb_table/data/chromia.json b/docs/tools/vdb_table/data/chromia.json index 737313579..8b57473da 100644 --- a/docs/tools/vdb_table/data/chromia.json +++ b/docs/tools/vdb_table/data/chromia.json @@ -33,7 +33,7 @@ }, "hybrid_search": { "support": "partial", - "source_url": "", + "source_url": "https://docs.chromia.com/intro/extensions/vector-db#querying-vectors", "comment": "" }, "facets": { @@ -143,10 +143,10 @@ "comment": "" }, "vector_dims": { - "value": 0, + "value": 2000, "unlimited": false, - "source_url": "", - "comment": "" + "source_url": "https://github.com/pgvector/pgvector", + "comment": "Powered by pgvector - open-source vector similarity" }, "index_types": { "value": [