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.
Upload or replace vectors.
resp = client.upload([ {"id": "item-1", "vector": [...]}, # 1024 floats ]) print(resp["total"])
resp = client.upload_vectors({ "vectors": [ {"item_id": "item-1", "vector": [...]}, ], })
MoorchehEdgeApiClient
MoorchehEdgeApiError
except MoorchehEdgeApiError as exc: if exc.is_item_limit_exceeded: print(exc.body)
Was this page helpful?