Jeff Huber

Results 346 comments of Jeff Huber

The next step here is to write up a CIP (chroma improvement proposal.) https://docs.trychroma.com/contributing#cips Intuitively this would involve adding something like this to `query` ``` def query( query_embeddings: Optional[OneOrMany[Embedding]] =...

@tyherox sure! first step is we need to write up a CIP. More about CIPs here, https://docs.trychroma.com/contributing#cips You can see examples in https://github.com/chroma-core/chroma/tree/main/docs Let me know if you are up...

To clarify: I think we don't actually want to implement this onto `get_collection`, but `list_collection`. Since we don't know how many results the filter will return. A user had opened...

keep in backlog until storage of embedding funcs is cleaned up

With the launch of Chroma `0.4` - duckdb is no longer a dependency and this should be fixed!

@mangled-data so you have many chroma directories? can you explain the use case some more? This is an uncommon approach. Because the indexes are separate - you would need to...

@mangled-data just confirming, this is using `langchain`?

@mangled-data try calling persist directly https://github.com/hwchase17/langchain/blob/master/langchain/vectorstores/chroma.py#L189 - otherwise it won't call persist until the object is deleted from memory. calling `.persist()` will force it. and then when you load it...

@Giiiii0 thank you! we are looking into this