# Terminology Guide

An example of a document in Vector AI:

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

| Terminology              | Definition                                                                                         |
| ------------------------ | -------------------------------------------------------------------------------------------------- |
| Vectors                  | AKA embeddings, 1D arrays, latent space vectors                                                    |
| Models/Encoders          | Turns data into vectors (e.g. Word2Vec turns words into vectors)                                   |
| Vector Similarity Search | Nearest neighbor search, distance search                                                           |
| Collection               | Index, Table (a collection is made up of multiple documents)                                       |
| Documents                | (AKA JSON, item, dictionary, row) - a document can contain vector and other important information. |
| Field                    | A field is the key to a Python dictionary.                                                         |
| Value                    | A value is the value of a Python dictionary                                                        |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://learn.getvectorai.com/what-are-vectors/terminology-guide.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
