Data Operations
moorcheh-edge upload-vectors
Upload precomputed vectors (vector store).
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Upload precomputed vectors (vector store).
moorcheh-edge upload-vectors --vectors-file PATH [--base-url URL]
| Flag | Required | Description |
|---|---|---|
--vectors-file | Yes | Path to JSON with {"vectors": [...]} |
--base-url | No | API base URL (default http://localhost:8080) |
{
"vectors": [
{
"id": "item-1",
"vector": [0.01, -0.02, "... match allowed dimension ..."],
"text": "Optional label for search results"
}
]
}
moorcheh-edge clear-store first to switch modes.moorcheh-edge upload-vectors --vectors-file vectors.json
Was this page helpful?