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.

SDK

results = client.search(
    query=[...],  # 1024 floats
    top_k=5,
    threshold=0.0,
    kiosk_mode=False,
)
for r in results:
    print(r["id"], r["score"], r["label"])
Returns a list of result dicts.

HTTP client

resp = client.search({
    "query": [...],
    "top_k": 5,
})
print(resp["results"])
See API: Search.