Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List indexed files using the Python client
client.files.list(namespace_name: str) -> dict[str, Any]
GET /namespaces/{namespace_name}/files
from moorcheh import MoorchehClient with MoorchehClient("http://localhost:8080") as client: resp = client.files.list("my-documents") for f in resp.get("files", []): print(f["file_id"], f["filename"], f["status"])
Was this page helpful?