zed/crates/semantic_index
KCaverly c4db914f0a move embeddings queue to use single hashmap for all changed paths
Co-authored-by: Antonio <me@as-cii.com>
2023-09-01 08:59:25 -04:00
..
src move embeddings queue to use single hashmap for all changed paths 2023-09-01 08:59:25 -04:00
Cargo.toml add proper handling for open ai rate limit delays 2023-08-29 15:44:51 -04:00
README.md rename vector_store crate to semantic_index 2023-07-17 17:06:10 -04:00

WIP: Sample SQL Queries /*

create table "files" ( "id" INTEGER PRIMARY KEY, "path" VARCHAR, "sha1" VARCHAR, );

create table symbols ( "file_id" INTEGER REFERENCES("files", "id") ON CASCADE DELETE, "offset" INTEGER, "embedding" VECTOR, );

insert into "files" ("path", "sha1") values ("src/main.rs", "sha1") return id; insert into symbols ( "file_id", "start", "end", "embedding" ) values ( (id,), (id,), (id,), (id,), )

*/