-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ENH] Update to v2 API, flatten v2 module, improve concurrency. #17
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great. Thanks @rescrv.
Could you please update the snippets in the README.md to reflect the changes?
@Anush008 I've updated the README. Would you consider a change to include the readme at the top of lib.rs so that the docs and readme come from the same source? Something like this: https://github.com/rescrv/blue/blob/main/guacamole/src/lib.rs#L1 |
Update to the chroma_cloud v2 API and in the process remove the v2 namespacing from the API. Improve concurrency as well so that there's no contention within libssl for requests using the same collection/client object.
907c680
to
a88e5a8
Compare
👍. Thank you. That'll be cool. |
Hey @rescrv. I'll cut a release for the time being. |
# [2.0.0](v1.1.0...v2.0.0) (2024-12-30) ### Bug Fixes * pass None when ids vector is empty for getting embeddings ([#18](#18)) ([7b6bd81](7b6bd81)) ## [2.0.0](v1.1.0...v2.0.0) (2024-12-30) ### ⚠ BREAKING CHANGES * Update to v2 API, flatten v2 module, improve concurrency. (#17) ### 🐛 Bug Fixes * pass None when ids vector is empty for getting embeddings ([#18](#18)) ([7b6bd81](7b6bd81)) ### 📝 Documentation * Tidy README.md ([96b256c](96b256c)) ### 🧑💻 Code Refactoring * Update to v2 API, flatten v2 module, improve concurrency. ([#17](#17)) ([3232d8a](3232d8a))
🎉 This PR is included in version 2.0.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
Update to the chroma_cloud v2 API and in the process remove the v2
namespacing from the API. Improve concurrency as well so that there's
no contention within libssl for requests using the same
collection/client object.