{"id":15404649,"url":"https://github.com/k1low/go-sqlite-vss","last_synced_at":"2025-04-16T21:43:54.804Z","repository":{"id":184362250,"uuid":"671754911","full_name":"k1LoW/go-sqlite-vss","owner":"k1LoW","description":"go-sqlite-vss is a \"SQLite + SQLite Vector Similarity Search extension\" driver for database/sql package.","archived":false,"fork":false,"pushed_at":"2023-08-01T05:37:25.000Z","size":674,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-29T05:41:36.155Z","etag":null,"topics":["faiss","go","sqlite","sqlite-extension","vector-search"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/k1LoW.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"k1LoW","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2023-07-28T04:09:04.000Z","updated_at":"2025-01-17T20:17:52.000Z","dependencies_parsed_at":"2024-10-21T12:49:52.810Z","dependency_job_id":null,"html_url":"https://github.com/k1LoW/go-sqlite-vss","commit_stats":{"total_commits":27,"total_committers":2,"mean_commits":13.5,"dds":0.2962962962962963,"last_synced_commit":"071e72f145ff2a4549ae8c2f8532ea41268fbaa0"},"previous_names":["k1low/go-sqlite-vss"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k1LoW%2Fgo-sqlite-vss","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k1LoW%2Fgo-sqlite-vss/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k1LoW%2Fgo-sqlite-vss/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k1LoW%2Fgo-sqlite-vss/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/k1LoW","download_url":"https://codeload.github.com/k1LoW/go-sqlite-vss/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249280535,"owners_count":21243138,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["faiss","go","sqlite","sqlite-extension","vector-search"],"created_at":"2024-10-01T16:13:56.786Z","updated_at":"2025-04-16T21:43:54.787Z","avatar_url":"https://github.com/k1LoW.png","language":"Go","readme":"# go-sqlite-vss\n\n`go-sqlite-vss` is a [\"SQLite + SQLite Vector Similarity Search extension\"](https://github.com/asg017/sqlite-vss) driver for database/sql package.\n\n## Usage\n\nInstall [vector0 and vss0](https://github.com/asg017/sqlite-vss/releases).\n\n``` console\n$ # An example installation\n$ gh ext install k1LoW/gh-setup\n$ gh setup --repo github.com/asg017/sqlite-vss --bin-dir ${SQLITE_VSS_EXT_PATH} --match sqlite-vss-v.*-loadable --skip-content-type-check\n```\n\nAnd then, use `sqlite-vss` as the driver name.\n\n``` go\npackage main\n\nimport (\n\t\"database/sql\"\n\t\"fmt\"\n\t\"log\"\n)\n\nfunc main() {\n\tdb, err := sql.Open(\"sqlite-vss\", \"test.db\")\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tdefer db.Close()\n\n\tr := db.QueryRow(\"select vss_version();\")\n\tif err := r.Err(); err != nil {\n\t\tlog.Fatal(err)\n\t}\n\n\tvar version string\n\tif err := r.Scan(\u0026version); err != nil {\n\t\tlog.Fatal(err)\n\t}\n\n\tfmt.Println(version)\n\t// Output: v0.1.1\n}\n```\n\n## Test data\n\n- [testdata/test.vec](testdata/test.vec) is created using data https://fasttext.cc/docs/en/crawl-vectors.html .\n    - License\n        - The word vectors are distributed under the [Creative Commons Attribution-Share-Alike License 3.0](https://creativecommons.org/licenses/by-sa/3.0/).\n    - References\n        - [E. Grave*, P. Bojanowski*, P. Gupta, A. Joulin, T. Mikolov, Learning Word Vectors for 157 Languages](https://arxiv.org/abs/1802.06893)\n","funding_links":["https://github.com/sponsors/k1LoW"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fk1low%2Fgo-sqlite-vss","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fk1low%2Fgo-sqlite-vss","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fk1low%2Fgo-sqlite-vss/lists"}