From 442a9714fcf31d17f5595600bf34ba09c1ee707e Mon Sep 17 00:00:00 2001 From: Anupam Kumar Date: Wed, 26 Feb 2025 02:03:10 +0530 Subject: [PATCH 1/2] fix: use session id in retry generation in chatty llm Signed-off-by: Anupam Kumar --- src/components/ChattyLLM/ChattyLLMInputForm.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ChattyLLM/ChattyLLMInputForm.vue b/src/components/ChattyLLM/ChattyLLMInputForm.vue index 61c4ceaa..38524027 100644 --- a/src/components/ChattyLLM/ChattyLLMInputForm.vue +++ b/src/components/ChattyLLM/ChattyLLMInputForm.vue @@ -113,7 +113,7 @@ :aria-label="t('assistant', 'Retry response generation')" :disabled="loading.initialMessages || loading.llmGeneration" type="secondary" - @click="runGenerationTask"> + @click="runGenerationTask(active.id)"> {{ t('assistant', 'Retry response generation') }} From eb43daacee29449d03b286fe9ecf3d415a071cfd Mon Sep 17 00:00:00 2001 From: Anupam Kumar Date: Wed, 5 Mar 2025 14:47:30 +0530 Subject: [PATCH 2/2] fix: show empty assitant messages Signed-off-by: Anupam Kumar --- src/components/ChattyLLM/Message.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/ChattyLLM/Message.vue b/src/components/ChattyLLM/Message.vue index b279a59e..e836c988 100644 --- a/src/components/ChattyLLM/Message.vue +++ b/src/components/ChattyLLM/Message.vue @@ -3,7 +3,7 @@ - SPDX-License-Identifier: AGPL-3.0-or-later -->