Jeff Huber
Jeff Huber
Currently users need to remember specific syntax to use chroma in local mode with persistence or API mode. ```python # init persistance from chromadb.config import Settings client = chromadb.Client(Settings( chroma_db_impl="duckdb+parquet",...
Currently we have a lot of validation logic in [`Collection.py`](https://github.com/chroma-core/chroma/blob/main/chromadb/api/models/Collection.py). This is nice in that we validate things before sending them over the wire, but does not abstract well for...
[This came up in Discord](https://discord.com/channels/1073293645303795742/1074711446589542552/1088185430035411006) Some users may want to do pre-filtering in their dbs and then pass the `allowlist` to vector similarity search. It could hook in, similar to...
https://github.com/chroma-core/chroma/pull/178 A few features which have not made it to JS yet: - [ ] `get_or_create` for collections - [ ] `where_document` support for `delete`, `get`, and `query` - [...
All the good stuff here is credit of @gustawdaniel . This separate PR is mainly handling merge conflicts from `main` moving on with additional functionality. https://github.com/chroma-core/chroma/pull/348 This PR - swaps...
### Describe the problem Current the typescript client uses a number of generic types. ### Describe the proposed solution Use very specific types so that the API is more user...
### Describe the problem It would be useful to have detailed reference for the JS API, including responses. Similar to this for python - https://github.com/chroma-core/docs/pull/28 ### Describe the proposed solution...
can we add Chroma to this list? happy to open the PR
I don't see a Chroma integration on the docs https://docs.sciphi.ai/integrations/databases but I see it throughout the codebase. Anything I can do to help?
hi there, i want to use this project to match the documentation formatting and styling coming out of pydoc-markdown. what is the recommended way to adjusting the formatting and styling...