From a4cab371fa4dbcafcc861f883f50e504a95e1a23 Mon Sep 17 00:00:00 2001 From: Nicolas BREMOND <99027754+Konsilion@users.noreply.github.com> Date: Fri, 22 Aug 2025 03:54:49 +0200 Subject: [PATCH] Update fr.ts - RAPTOR Issue prompt (#9646) Removed a line break causing problems with execution in Raptor. ### What problem does this PR solve? When I activate Raptor without changing anything in French, I encounter a problem that I don't have with the English version. I noticed in the logs that there was an extra line break, so I suggest removing it. ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --- web/src/locales/fr.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/web/src/locales/fr.ts b/web/src/locales/fr.ts index d4494ae4e..34b439bc3 100644 --- a/web/src/locales/fr.ts +++ b/web/src/locales/fr.ts @@ -240,9 +240,8 @@ export default { promptTip: 'Décrivez la tâche attendue du LLM, ses réponses, ses exigences, etc. Utilisez `/` pour afficher les variables disponibles.', promptMessage: 'Le prompt est requis', - promptText: `Veuillez résumer les paragraphes suivants. Attention aux chiffres, ne pas inventer. Paragraphes suivants : {cluster_content - } - Le contenu à résumer est ci-dessus.`, + promptText: `Veuillez résumer les paragraphes suivants. Attention aux chiffres, ne pas inventer. Paragraphes suivants : {cluster_content} + Le contenu à résumer est ci-dessus.`, maxToken: 'Nombre maximal de tokens', maxTokenTip: 'Nombre maximal de tokens générés par résumé.', maxTokenMessage: 'Nombre maximal de tokens requis',