Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/ai_actions/ai_actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition: lts-update

AI Actions is a set of capabilities that enhance the efficiency and creativity of content editors.
The feature is not included in [[= product_name =]] by default.
It's an [LTS Update]([[= developer_doc =]]/release_notes/ibexa_dxp_v4.6/#lts-updates) that requires separate [installation and system configuration]([[= developer_doc =]]/ai_actions/install_ai_actions/).
It's an [LTS Update]([[= developer_doc =]]/ibexa_products/editions#lts-updates) that requires separate [installation and system configuration]([[= developer_doc =]]/ai_actions/install_ai_actions/).

Once AI Actions are installed and configured, content editors with `Action configuration/View` and `Action configuration/Execute` permissions have access to AI-driven tools.
For example, they can [enhance or improve the text](create_edit_content_items.md#ai-assistant) that they have written, or [generate alternative text](upload_images.md#ai) for images.
Expand Down
13 changes: 7 additions & 6 deletions theme/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,16 @@
{% endfor %}
<li class="breadcrumb-item breadcrumb-item-current">{{ page.title }}</li>
</ul>
{% if page.meta.edition %}
{% if page.meta.edition or page.meta.editions %}
<div class="pills">
{% if page.meta.edition == 'commerce' %}
<span class="pill pill--commerce"></span>
{% elif page.meta.edition == 'experience' %}
<span class="pill pill--experience"></span><span class="pill pill--commerce"></span>
{% elif page.meta.edition == 'lts-update' %}
{% if page.meta.edition == 'lts-update' or 'lts-update' in page.meta.editions %}
<span class="pill pill--lts-update"></span>
{% endif %}
{% if page.meta.edition == 'experience' or 'experience' in page.meta.editions %}
<span class="pill pill--experience"></span><span class="pill pill--commerce"></span>
{% elif page.meta.edition == 'commerce' or 'commerce' in page.meta.editions %}
<span class="pill pill--commerce"></span>
{% endif %}
</div>
{% endif %}
{{ page.content }}
Expand Down