-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fa135d6
commit 4c4d4b3
Showing
2 changed files
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Release 1.1.6 (4/29/24) | ||
|
||
`faiss_embedding.py` now by default stores a cached embedding at the user's cache directory (determined by `platformdirs`). | ||
|
||
If `cache_embedding` is enabled (which is turned on by default), this file computes a hash of the free text values. The next time when the server is run, if the database values remains unchanged, this file will directly use the cached embeddings. If there are changes to the underlying values, this file will recompute the embeddings. | ||
|
||
Check API documentation for the `add` function at [here](https://stanford-oval.github.io/suql/suql/faiss_embedding.html#suql.faiss_embedding.MultipleEmbeddingStore.add). | ||
|
||
# Release 1.1.5 (4/25/24) | ||
|
||
Bug fix for #15. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
# Package metadata | ||
name = "suql" | ||
version = "1.1.5" | ||
version = "1.1.6" | ||
description = "Structured and Unstructured Query Language (SUQL) Python API" | ||
author = "Shicheng Liu" | ||
author_email = "[email protected]" | ||
|