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
for some additional context, I think you could do some interesting semantic search given this kind of functionality.
An example of using read_blob and semantic search to build a mechanism for searching for files using semantic text
> create table doc_embeddings as (
SELECT*, openai_embed(content::text) as embedding
FROM read_blob('**/*.rs')
);
>select cosine_similarity(openai_embed('configuration object for various supported storage types'), embeddings), content;
The text was updated successfully, but these errors were encountered:
Description
duckdb style
read_blob
functionhttps://duckdb.org/docs/guides/import/read_file#read_blob
for some additional context, I think you could do some interesting semantic search given this kind of functionality.
An example of using
read_blob
and semantic search to build a mechanism for searching for files using semantic textThe text was updated successfully, but these errors were encountered: