Skip to content

AI Related Tags

Note

This feature is for experimental use only

AI Related Tags use the Bizzkit AI Assistant (BAIA) to suggest context-aware tags for search queries, helping users find more relevant results.

Traditional keyword search often fails to capture the user's true intent, especially when a search term can have multiple meanings. For example, searching for "indlæg" could refer to nursing pads, footwear insoles, or hygiene products. With AI Related Tags, the system uses BAIA’s AI Search instructions to suggest the most relevant tags.

AI Related Tags are generated using BAIA, which processes suggestions and, for each, generates specialized tags based on the configured instructions.

How AI related tags work

AI Related Tags can be enabled via a setting in the AI search settings panel. This setting is grouped with other AI features such as semantic search.

The BAIA instructions are also configured in the AI search settings.

For each popular phrase, BAIA is prompted to generate related tags based on the search context. The results are stored in the database and versioned. If the prompt changes, all related tags are refreshed.

Only phrases without taboo content are included.

For a search to include Ai Related tags, this must be configured in the Scope used for searching.

When a user searches, the unified search endpoint consults the suggestion index and returns AI Related Tags if available. Only tags that would lead to results are included.

Example:

1
2
3
4
5
{
    "segmentId": "segment-with-suggestions",
    "scopeId": "scope-with-ai-related-tags-configured",
    "phrase": "insole"
}
1
2
3
4
5
6
7
8
{
    "suggestions": [
        "insoles"
    ],
    "aiRelatedTags": [
        "footwear insoles"
    ]
}