We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1684d14 commit 5c13beaCopy full SHA for 5c13bea
src/vectorcode/database/chroma0.py
@@ -13,6 +13,18 @@
13
from urllib.parse import urlparse
14
15
import chromadb
16
+
17
+if not chromadb.__version__.startswith("0.6.3"): # pragma: nocover
18
+ logging.error(
19
+ f"""
20
+Found ChromaDB {chromadb.__version__}, which is incompatible wiht your VectorCode installation. Please install vectorcode[chroma0].
21
22
+For example:
23
+uv tool install vectorcode[chroma0]
24
+"""
25
+ )
26
+ sys.exit(1)
27
28
import httpx
29
from chromadb.api import AsyncClientAPI
30
from chromadb.api.models.AsyncCollection import AsyncCollection
0 commit comments