| Table (Datagrid) | A data structure with named and typed columns, organized into rows. Each table belongs to a workspace and can be connected to one or more agents. |
| Column | Defines a field in the table. Each column has a name (up to 50 characters), description (3 to 250 characters), data type (String, Number, Boolean), and optional settings such as semantic search and required field. |
| Row | A record in the table. Each row contains values for each defined column. Rows can be inserted manually through the interface, imported via CSV, or created by the agent during conversations. |
| Datagrid Tool | A capability made available to the agent for interacting with the table. The available actions are: semantic_search, similarity_search, insert_row, and update_row. Each action is activated individually per table. |
| Column Semantic Search | When enabled on a String column, values are vectorized using the text-embedding-3-small model (1,536 dimensions) and indexed for similarity search — the agent finds rows by meaning, not just exact match. |