-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathMETA.json.in
More file actions
49 lines (49 loc) · 1.53 KB
/
META.json.in
File metadata and controls
49 lines (49 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "vchord",
"abstract": "Scalable, fast, and disk-friendly vector search in Postgres",
"description": "VectorChord (vchord) is a PostgreSQL extension designed for scalable, high-performance, and disk-efficient vector similarity search, it supports L2 distance, inner product, cosine distance and maxsim",
"version": "@DISTVERSION@",
"maintainer": [
"TensorChord [email protected]",
"usamoi [email protected]"
],
"license": "agpl_3",
"prereqs": {
"runtime": {
"requires": {
"PostgreSQL": "14.0.0"
}
}
},
"provides": {
"vchord": {
"file": "src/lib.rs",
"docfile": "README.md",
"version": "@DISTVERSION@",
"abstract": "Scalable, fast, and disk-friendly vector search in Postgres"
}
},
"resources": {
"homepage": "https://github.com/tensorchord/VectorChord",
"bugtracker": {
"web": "https://github.com/tensorchord/VectorChord/issues"
},
"repository": {
"url": "https://github.com/tensorchord/VectorChord.git",
"web": "https://github.com/tensorchord/VectorChord",
"type": "git"
}
},
"generated_by": "TensorChord",
"meta-spec": {
"version": "1.0.0",
"url": "http://pgxn.org/meta/spec.txt"
},
"tags": [
"vector search",
"vectors",
"datatype",
"nearest neighbor search",
"approximate nearest neighbors"
]
}