# Log custom metadata in a table format

A Vectice `Table` wraps a pandas dataframe into a table format, which you can then log to a Vectice iteration. This enables you to log custom metadata to Vectice in a tabular format.

{% hint style="warning" %}
You should not use `Table` to store important or sensitive information. `Table` is for storing low sensitive information that may support your documentation efforts.
{% endhint %}

For example, if you wish to log a few rows of additional low sensitive information not captured in the dataset, you can utilize `Table` to log and document them into Vectice. See below for a code example:

```python
import pandas as pd
from vectice import Table

table_dict = {
    "inputs": ["What is Vectice?", "Describe a dog to me"],
    "outputs": ["Vectice is an auto-documentation platform", "A dog is an animal with four legs"],
    "toxicity": [0.0, 0.0],
}

prompt_data_input_output = pd.DataFrame(table_dict)

table = Table(prompt_data_input_output, name="prompt_data")
iteration.log(table)
```

{% hint style="info" %}
`Table()`has a maximum capacity of 100 rows and 20 columns.
{% endhint %}

<figure><img src="/files/lmPZx2DbaMPLGIsOTFO7" alt=""><figcaption></figcaption></figure>


---

# 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://docs.vectice.com/log-and-manage-assets-with-vectice-api/log-assets-to-vectice/log-custom-metadata-in-a-table-format.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.
