|
|
|
|
|
by fakedang
1008 days ago
|
|
This might be a noob question but what does Lantern have that a normal Postgres dB with pgvector does not? I think Supabase already has a Postgres as a service product with the pgvector extension too. Second: >Creating an AI application end to end without leaving your database (example: https://github.com/ezra-varady/lanterndb-semantic-image-sear...) What does "without leaving your database" mean in this context? |
|
Our extension, similarly, builds an index but also extends SQL in more ways.
For example,
- Generating embeddings to augment plain relational data
- Using data from local proprietary embedding models or third-party model APIs in queries.
We have more things planned like vector versioning, data retention policies and recall regression tracking.
> What does "without leaving your database" mean in this context?
You can work with embeddings with just SQL. For instance, a table of academic papers can be augmented with CLIP model embeddings produced locally. This entire process - creating, storing, and querying - happens using just SQL."