You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Description of changes
_Summarize the changes made by this PR._
- Improvements & Bug fixes
- This PR adds more regex patterns in the benchmark. The benchmark also serve as an integration for regex as it compares the result with bruteforce evaluation.
- Updates a few dependencies. Verified that there should be no breaking change
- Updates some wal3 test because fragment size changed after dependency. The existing fragment should be compatible and manifest should still be valid
- New functionality
- N/A
## Test plan
_How are these changes tested?_
- [ ] Tests pass locally with `pytest` for python, `yarn test` for js, `cargo test` for rust
## Documentation Changes
_Are all docstrings for user-facing APIs updated if required? Do we need to make documentation changes in the [docs section](https://github.com/chroma-core/chroma/tree/main/docs/docs.trychroma.com)?_
let dataset_dir = get_dataset_cache_path(dataset_name, cache_dir).await?;
38
-
let file_path = dataset_dir.join(file_name);
37
+
let dataset_dir = get_dataset_cache_path(dataset_name.as_ref(), cache_dir).await?;
38
+
let file_path = dataset_dir.join(file_name.as_ref());
39
39
40
40
if !file_path.exists(){
41
41
// We assume that dataset creation was successful if the file exists, so we use a temporary file to avoid scenarios where the file is partially written and then the callback fails.
0 commit comments