> For the complete documentation index, see [llms.txt](https://pixyleai.gitbook.io/pixyle.ai-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pixyleai.gitbook.io/pixyle.ai-documentation/integration-manual/third-party-integrations/algolia-integration/algolia-integration-features.md).

# Algolia Integration Features

### Product Data Pulling

* **Maximum Products per Pull**: 1000 products per batch for stability and optimal API performance.

### Image Processing

* The system attempts to automatically detect which field(s) in your product data contain image URLs.
* If your image URLs are stored in non-standard fields (e.g., nested or custom paths), we recommend you communicate this explicitly to us to ensure accurate processing and metadata generation.

### Data Push to Algolia

* Utilizes partial updates, keeping existing data intact while adding/modifying AI-generated fields.

#### AI-Generated Fields Added

Each product record gains these fields:

* `pixyle_ai_title`: AI-generated product title
* `pixyle_ai_description`: AI-generated product description
* `pixyle_ai_optimized_site_search_tags`: AI-generated tags for enhanced search

#### AI-Generated Attribute Fields

Additional detected attributes:

* Format: `pixyle_ai_{attribute_group}`
* Examples: `pixyle_ai_color`, `pixyle_ai_pattern`, `pixyle_ai_material`

**Example Output**

```json
{
  "objectID": "12345",
  "pixyle_ai_title": "Blue Pleated High-Neck Dress",
  "pixyle_ai_description": "Elegant mini dress in soft pleated fabric with a high neckline...",
  "pixyle_ai_color": "blue",
  "pixyle_ai_pattern": "pleated",
  "pixyle_ai_material": "polyester",
  "pixyle_ai_optimized_site_search_tags": ["blue", "pleated", "mini", "high-neck"]
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://pixyleai.gitbook.io/pixyle.ai-documentation/integration-manual/third-party-integrations/algolia-integration/algolia-integration-features.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
