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.

Install

pip install moorcheh-edge

Command groups

GroupCommandsPurpose
Runtimeup, down, statusDocker container lifecycle
Dataupload-vectorsUpload vectors from JSON file
SearchsearchVector similarity search
DeletedeleteRemove items by id

Typical workflow

moorcheh-edge up
moorcheh-edge status
moorcheh-edge upload-vectors --vectors-file payload.json
moorcheh-edge search --query-vector-json "[...]" --top-k 5
moorcheh-edge delete --ids-json '["item-1"]'
moorcheh-edge down

Output

API commands print JSON to stdout. Errors print JSON (when available) and exit with code 1.

Data directory

moorcheh-edge up stores data at ~/.moorcheh-edge/data. moorcheh-edge down stops the container but does not delete your data.

Shared flag: --base-url

--base-url http://localhost:8080
Use when the server runs on a non-default port:
moorcheh-edge up --server-port 8083
moorcheh-edge status --base-url http://localhost:8083

Help

moorcheh-edge --help
moorcheh-edge up --help
moorcheh-edge search --help