> ## Documentation Index
> Fetch the complete documentation index at: https://docs.t3planet.de/en/latest/llms.txt
> Use this file to discover all available pages before exploring further.

# Verifying Indexed Data Content in TYPO3 AI Search

> To ensure that the data from your selected search engines Solr, keSearch, IndexedSearch is properly fetched, stored, and trained in TYPO3, follow these steps:

To ensure that the data from your selected search engines (Solr, keSearch, IndexedSearch) is properly fetched, stored, and trained in TYPO3, follow these steps:

1. **Verify Column Values** In the table tx\_nst3as\_domain\_model\_indexed\_data, check the following columns for each search engine type:

* **`type`**: solr, keSearch, or indexedSearch
* **`status`**: trained
* **`path`**: The corresponding data URL

2. **Check Trained Data** Replace **`solr`** with the type of search engine you want to check (e.g., **`solr`**, **`kesearch`**, or **`indexedsearch`**): SELECT \*
   FROM `tx_nst3as_domain_model_indexed_data`
   WHERE `type` = 'solr'
   AND `status` = 'trained';
3. **Check Untrained Data** Replace **`solr`** with your search engine type as needed: SELECT \*
   FROM `tx_nst3as_domain_model_indexed_data`
   WHERE `type` = 'solr'
   AND `status` = 'Untrained'
   AND `path` != '';

<Note>
  This is not use when you use the CustomLLM because we didn’t save the any data inside the TYPO3 Database.
</Note>

```sql theme={"theme":{"light":"github-light","dark":"github-dark"}}
SELECT *
FROM `tx_nst3as_domain_model_indexed_data`
WHERE `type` = 'solr'
  AND `status` = 'trained';
```

```sql theme={"theme":{"light":"github-light","dark":"github-dark"}}
SELECT *
FROM `tx_nst3as_domain_model_indexed_data`
WHERE `type` = 'solr'
  AND `status` = 'Untrained'
  AND `path` != '';
```
