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.
Overview
Returns whether the server is running, which Ollama embedding model is configured, and how many items are stored versus the global cap (default 100,000). Use this before uploads to check remaining quota, or to confirm Ollama is configured for text embedding and search.Method
API
GET /health — see Health
Example
Returns
Server health.
"ok" when the API is running and reachable.Ollama embedding model configured for the server (for example
"nomic-embed-text"). Used when embedding text documents and text search queries.Total number of stored items across all namespaces (text documents + vectors).
Global storage cap for this instance. Default is
100000.How many new items you can still add:
max_items - items. Uploads that would exceed this return 409.Example return value
Field order in the response may vary; all fields above are always present on success.
Errors
Non-2xx responses raiseMoorchehApiError (for example if the server is not running or unreachable).
Related
- API: Health
- CLI: moorcheh status
- Python: upload_namespace_documents() — 409 quota errors include the same fields in
MoorchehApiError.body