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.
Search with a query vector or plain text.
results = edge.search_text( "Hello world", top_k=5, threshold=0.0, kiosk_mode=False, ) for r in results: print(r["id"], r["score"], r.get("text"))
results = edge.search( query=[...], # match store dimension top_k=5, threshold=0.0, kiosk_mode=False, ) for r in results: print(r["id"], r["score"], r["label"])
resp = client.search({ "query": [...], "top_k": 5, }) print(resp["results"])
Was this page helpful?