feat: implement duplicate message detection and display notification

This commit is contained in:
2025-09-02 20:19:28 +02:00
parent 82b10ebc4b
commit 23f31aac99
7 changed files with 158 additions and 102 deletions

View File

@@ -51,6 +51,9 @@ const formatted = computed(() => useDateFormat(useNow(), 'D MMMM YYYY, HH:mm', {
<div v-if="message.type === ChatType.INIT">
{{ message.content }}
</div>
<div v-else-if="message.type === ChatType.DUPLICATED">
<ToolDuplicated />
</div>
<div v-else-if="message.type === ChatType.THEME">
<ToolTheme />
</div>