diff --git a/source/_posts/2024-02-07-release-20242.markdown b/source/_posts/2024-02-07-release-20242.markdown
index 373784c5711..f097ef0bb1a 100644
--- a/source/_posts/2024-02-07-release-20242.markdown
+++ b/source/_posts/2024-02-07-release-20242.markdown
@@ -54,6 +54,8 @@ Enjoy the (beta) release!
- [Update entities for ZHA devices](#update-entities-for-zha-devices)
- [Matter diagnostics and actions](#matter-diagnostics-and-actions)
- [All known assist devices](#all-known-assist-devices)
+- [Better errors when using Assist](#better-errors-when-using-assist)
+- [Custom response in the automation editor when using a sentence trigger](#custom-response-in-the-automation-editor-when-using-a-sentence-trigger)
- [Icons everywhere](#icons-everywhere)
- [Integration authentication issues are now shown in the repairs dashboards](#integration-authentication-issues-are-now-shown-in-the-repairs-dashboards)
- [Other noteworthy changes](#other-noteworthy-changes)
@@ -156,6 +158,32 @@ the new "assist devices" button.
{% my voice_assistants badge %}
+## Better errors when using Assist
+
+If you use [Assist](/voice_control/), our private voice assistant, you may have noticed that its responses were not meaningful when something was not understood.
+
+Some of the errors encountered while using Assist can easily be fixed on your side by adding aliases to entities or areas, exposing entities to Assist, or assigning entities and devices to the correct areas.
+
+So we are taking the first step to help you fix these errors: as of this release, Assist provides much better errors in case your intention is understood, but something else is missing (An unknown name, area, device class, or domain).
+
+
+
+## Custom response in the automation editor when using a sentence trigger
+
+As almost every component and feature of Home Assistant, Assist can be customized and extended to understand more sentences.
+
+A few releases ago, we introduced a very simple way to extend what Assist understands: The [sentence trigger](/docs/automation/trigger/#sentence-trigger) in our automation engine.
+
+Up until now, using a sentence trigger always led to the same Assist response: “Done”. In fact, the only way to define a custom response was to write complex custom sentences in YAML.
+
+This release introduces a new action to set a custom response in your sentence-triggered automations directly inside the automation editor.
+
+
+
+The response field accepts templates, so it can be used to build complex responses, for example, listing all your room temperatures.
+
+
+
## Icons everywhere
This release, we completely changed how Home Assistant handles icons. An big
diff --git a/source/images/blog/2024-02/assist-custom-response-editor.png b/source/images/blog/2024-02/assist-custom-response-editor.png
new file mode 100644
index 00000000000..c61a35444fa
Binary files /dev/null and b/source/images/blog/2024-02/assist-custom-response-editor.png differ
diff --git a/source/images/blog/2024-02/assist-custom-response.png b/source/images/blog/2024-02/assist-custom-response.png
new file mode 100644
index 00000000000..6012c444c19
Binary files /dev/null and b/source/images/blog/2024-02/assist-custom-response.png differ
diff --git a/source/images/blog/2024-02/assist-errors.png b/source/images/blog/2024-02/assist-errors.png
new file mode 100644
index 00000000000..8b89fe4aea8
Binary files /dev/null and b/source/images/blog/2024-02/assist-errors.png differ