Technical Documentation

Learn how our AI search engine indexing and integration works.

Creating Indexes

Indexing from a sitemap

Provide your sitemap URL. The system will automatically retrieve, analyze and index all pages.

Indexing from a JSON file

Provide a JSON file containing product information (URL, title, description, image, metadata).

{
  "url": "https://www.myshop.com/product/123",
  "title": "Bio cotton t-shirt",
  "image": "https://www.myshop.com/images/produit123.jpg",
  "description": "Bio cotton t-shirt, available in various sizes.",
  "metadata": {
    "category": "Clothing",
    "color": "Blue",
    "size": "M"
  }
}
An advanced feature allows automatic enrichment of product descriptions from images (img2text), ideal for generating contextual content.

Search Engine Integration

Integration by our team

Our team of 15 experienced engineers integrates the search engine into your website, regardless of technology, autonomously or under your technical team's guidance.

Integration via tag

You can integrate the search engine by simply adding a JavaScript tag to your pages.


<script
document.addEventListener('DOMContentLoaded', function() {
    const apiKey = 'your_api_key'; // Replace with your real API key
    searchClient = new SearchClient(apiKey, 'searchFieldID', 'resultDisplayID');
});
</script>

As easy as adding a Google Analytics tag.