πŸ”Inserting Into Vector AI

How to insert your data into Vector AI

Before inserting into Vector AI, there are a few important things to note about Vector AI.

1) Document-based storage. Vector AI relies on a document-oriented storage. An example of a document can be seen below.

document_example = {
    "car": {
        "wheels":
            {
                "number": 4
            }
    }
}

2) When uploading documents into VectorAI, the schema is automatically determined. The schema itself relies on the following built-in concepts:

Last updated