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
Currently, an Embeddings instance requires each input to be a tuple of 3 elements, (id, data, tags). The vast majority of time, tags is empty and the id is an auto-generated number.
This change will allow the following inputs when passing data to an insert/upsert operation.
(id, data, tags) tuples (CURRENT)
(id, data) tuples
data elements
In the case of just data elements, an auto id index will be used.
Note: The application interface already has similar functionality.
The text was updated successfully, but these errors were encountered:
Currently, an Embeddings instance requires each input to be a tuple of 3 elements, (id, data, tags). The vast majority of time, tags is empty and the id is an auto-generated number.
This change will allow the following inputs when passing data to an insert/upsert operation.
In the case of just data elements, an auto id index will be used.
Note: The application interface already has similar functionality.
The text was updated successfully, but these errors were encountered: