May 06, 2024 — Vector data type and Vector similarity functions — Preview¶
With this release, we are pleased to announce the preview of VECTOR data type, Vector Similarity Functions, and the Vector Embedding Function. These features enable important applications that require semantic vector search and retrieval.
For more information, see Vector Embeddings.
New SQL data type¶
The following data type was introduced in recent releases:
Category |
New data type |
Description |
---|---|---|
Vector |
With the VECTOR data type, Snowflake encodes and processes vectors efficiently. This data type supports semantic vector search and retrieval applications, such as RAG-based applications, and common operations on vectors in vector-processing applications. |
New SQL functions¶
The following functions were introduced in recent releases:
Function Category |
New Function |
Description |
---|---|---|
Returns the inner product of two vectors. The inner product (also known as the dot or scalar product) multiplies two vectors |
||
Measures the L2 distance between two vectors. |
||
Measures the cosine similarity between two vectors, which is the angular distance between the vectors in a multi-dimensional space. |
||
Creates a vector embedding for a given string of text in English. |