From 4f5a7ddaaa1479fb8dfd42f2f894f660ba282aaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20Mili=C4=87?= Date: Mon, 11 Aug 2025 15:36:23 +0200 Subject: [PATCH] bugfix/MAke Opey widget recevite responses at GUI --- src/stores/chat.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/chat.ts b/src/stores/chat.ts index 44a62af..23d40f0 100644 --- a/src/stores/chat.ts +++ b/src/stores/chat.ts @@ -336,7 +336,7 @@ export const useChat = defineStore('chat', { } - if (data.type === 'token' && data.content) { + if (data.type === 'assistant_complete' && data.content) { this.currentAssistantMessage.loading = false; // Append content to the current assistant message this.currentAssistantMessage.content += data.content;