chroma
chroma copied to clipboard
Open-source search and retrieval database for AI applications.
### What happened? start_time = time.time() client = chromadb.PersistentClient(path="./chroma") # client = chromadb.Client() end_time = time.time() print(end_time - start_time) start_time = time.time() collection = client.get_or_create_collection(name="test_collection", metadata={"hnsw:space": "cosine", "hnsw:search_ef": 100}) start_time...
## Description of changes `UniqueConstraintError` was not included as the possible `ChromaError` types causing it to appear as a generic error. Closes #2569 ## Test plan *How are these changes...
## Description of changes Update the default value of ef_search to 100. Many users experienced bad recall with large collections, and increasing ef_search generally ameliorates the issue. Example: https://github.com/chroma-core/chroma/issues/1737 ##...
## Description of changes We often see failures in this workflow that look like: ``` Error: Failed to CreateArtifact: Received non-retryable error: Failed request: (409) Conflict: an artifact with this...
By default, most grpc implementations allow up to 100 concurrent streams. We have 200 concurrent requests, basically guaranteeing queueing. Expose the two gRPC options in Go that will allow us...
To be merged when trychroma.com/signup goes live.
## Description of changes Adds support to distributed Chroma for the new list databases API. ## Test plan *How are these changes tested?* - [x] Tests pass locally with `pytest`...
Adding some explanations for configuring HNSW parameters with an example.
## Description of changes JS-Client had some type inconsistencies in Collection functions. Closing #3184 ## Test plan *How are these changes tested?* - [x] Tests pass locally with `pytest` for...
### What happened? I'm using ChromaDB in a Dockerized FastAPI app and encountered the following error when calling await client.create_collection(): ``` f"Trying to instantiate configuration of type {cls.__name__} from JSON...