Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.moorcheh.ai/llms.txt

Use this file to discover all available pages before exploring further.

Synopsis

moorcheh-edge upload-vectors --vectors-file PATH [--base-url URL]

Options

FlagRequiredDescription
--vectors-fileYesPath to JSON with {"vectors": [...]}
--base-urlNoAPI base URL (default http://localhost:8080)

File format

{
  "vectors": [
    {
      "id": "item-1",
      "vector": [0.01, -0.02, "... 1024 floats ..."]
    }
  ]
}

Example

moorcheh-edge upload-vectors --vectors-file payload.json
See API: Upload.