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
When a new embeddings instance is created, the default settings do not store content. In this mode, index ids are added to a separate array and stored directly in the embeddings configuration.
#652 is changing the default configuration format from pickle to json. Given this change, it's best to store ids in a file separate from configuration.
This change will support reading existing embeddings indexes with config["ids"] set. All save calls moving forward will store ids in a separate file, even for existing indexes.
This change has no impacts to indexes with content storage enabled.
The text was updated successfully, but these errors were encountered:
When a new embeddings instance is created, the default settings do not store content. In this mode, index ids are added to a separate array and stored directly in the embeddings configuration.
#652 is changing the default configuration format from
pickle
tojson
. Given this change, it's best to storeids
in a file separate from configuration.This change will support reading existing embeddings indexes with
config["ids"]
set. All save calls moving forward will storeids
in a separate file, even for existing indexes.This change has no impacts to indexes with
content
storage enabled.The text was updated successfully, but these errors were encountered: