Vector Store
Persist and query embeddings for retrieval-augmented workflows.
v1.0.0data—by norien · updated 10h ago
$ norien tool install vector-store@1.0.0Category
data
Runtime
—
Permissions
0
Environment
0
declared variables
Details
- Slug
- vector-store
- Version
- 1.0.0
- Runtime
- —
- Entrypoint
- —
- Authentication
- api_key · X-Vector-Key
- License
- —
- Published
- 10h ago
Requirements
Permissions
None requested.
Dependencies
None.
Tags
embeddingsretrievalstorage
Environment variables
No environment variables
This tool needs no configuration.
Input schema
{
"type": "object",
"required": [
"action",
"namespace"
],
"properties": {
"top_k": {
"type": "number"
},
"action": {
"enum": [
"upsert",
"query",
"delete"
],
"type": "string"
},
"vectors": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"values": {
"type": "array",
"items": {
"type": "number"
}
}
}
}
},
"namespace": {
"type": "string"
}
}
}Output schema
{
"type": "object",
"properties": {
"matches": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"score": {
"type": "number"
}
}
}
}
}
}