Uploading Data
Uploading a Single Document
hyperspace_client.add_document(document, collection_name)document = {"title": "star wars",
"genres": ["Action","Adventure","Sc-ifi"],
"embedded_description" = [0.01,0.003,...]}
hyperspace_client.add_document(document, collection_name) Document document = new Document();
document.putAdditionalProperty("title", "star wars");
document.putAdditionalProperty("genres", ["Action","Adventure","Sc-ifi"]);
document.putAdditionalProperty("embedded_description", [0.01,0.003,...])
hyperspaceClient.updateDocument(collectionName, doc, true, false);const document = {"title": "star wars",
"genres": ["Action","Adventure","Sc-ifi"],
"embedded_description" = [0.01,0.003,...]};
hyperspaceClient.addDocument(document, collection_name);Uploading a Batch of Documents
Last updated