Unverified Commit f1a7c766 authored by Timothy Jaeryang Baek's avatar Timothy Jaeryang Baek Committed by GitHub
Browse files

Merge pull request #2004 from cheahjs/feat/backend-web-search

feat: add user toggleable web search
parents b6b71c08 bced9073
...@@ -380,6 +380,105 @@ ...@@ -380,6 +380,105 @@
class="prose chat-{message.role} w-full max-w-full dark:prose-invert prose-headings:my-0 prose-p:m-0 prose-p:-mb-6 prose-pre:my-0 prose-table:my-0 prose-blockquote:my-0 prose-img:my-0 prose-ul:-my-4 prose-ol:-my-4 prose-li:-my-3 prose-ul:-mb-6 prose-ol:-mb-8 prose-ol:p-0 prose-li:-mb-4 whitespace-pre-line" class="prose chat-{message.role} w-full max-w-full dark:prose-invert prose-headings:my-0 prose-p:m-0 prose-p:-mb-6 prose-pre:my-0 prose-table:my-0 prose-blockquote:my-0 prose-img:my-0 prose-ul:-my-4 prose-ol:-my-4 prose-li:-my-3 prose-ul:-mb-6 prose-ol:-mb-8 prose-ol:p-0 prose-li:-mb-4 whitespace-pre-line"
> >
<div> <div>
{#if message.progress || message.files}
<div class="my-2.5 w-full flex overflow-x-auto gap-2 flex-wrap">
{#if message.progress}
<div>
<button
class="h-16 flex items-center space-x-3 px-2.5 dark:bg-gray-600 rounded-xl border border-gray-200 dark:border-none text-left"
type="button"
>
<div class="p-2.5 bg-red-400 text-white rounded-lg">
<svg
class=" w-6 h-6 translate-y-[0.5px]"
fill="currentColor"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
><style>
.spinner_qM83 {
animation: spinner_8HQG 1.05s infinite;
}
.spinner_oXPr {
animation-delay: 0.1s;
}
.spinner_ZTLf {
animation-delay: 0.2s;
}
@keyframes spinner_8HQG {
0%,
57.14% {
animation-timing-function: cubic-bezier(0.33, 0.66, 0.66, 1);
transform: translate(0);
}
28.57% {
animation-timing-function: cubic-bezier(0.33, 0, 0.66, 0.33);
transform: translateY(-6px);
}
100% {
transform: translate(0);
}
}
</style><circle class="spinner_qM83" cx="4" cy="12" r="2.5" /><circle
class="spinner_qM83 spinner_oXPr"
cx="12"
cy="12"
r="2.5"
/><circle class="spinner_qM83 spinner_ZTLf" cx="20" cy="12" r="2.5" /></svg
>
</div>
<div class="flex flex-col justify-center -space-y-0.5">
<div class=" dark:text-gray-100 text-sm font-medium line-clamp-2 text-wrap">
{message.progress}
</div>
</div>
</button>
</div>
{/if}
{#if message.files}
{#each message.files as file}
<div>
{#if file.type === 'websearch'}
<button
class="h-16 w-[15rem] flex items-center space-x-3 px-2.5 dark:bg-gray-600 rounded-xl border border-gray-200 dark:border-none text-left"
type="button"
>
<div class="p-2.5 bg-red-400 text-white rounded-lg">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="currentColor"
class="w-6 h-6"
>
<path
d="M11.625 16.5a1.875 1.875 0 1 0 0-3.75 1.875 1.875 0 0 0 0 3.75Z"
/>
<path
fill-rule="evenodd"
d="M5.625 1.5H9a3.75 3.75 0 0 1 3.75 3.75v1.875c0 1.036.84 1.875 1.875 1.875H16.5a3.75 3.75 0 0 1 3.75 3.75v7.875c0 1.035-.84 1.875-1.875 1.875H5.625a1.875 1.875 0 0 1-1.875-1.875V3.375c0-1.036.84-1.875 1.875-1.875Zm6 16.5c.66 0 1.277-.19 1.797-.518l1.048 1.048a.75.75 0 0 0 1.06-1.06l-1.047-1.048A3.375 3.375 0 1 0 11.625 18Z"
clip-rule="evenodd"
/>
<path
d="M14.25 5.25a5.23 5.23 0 0 0-1.279-3.434 9.768 9.768 0 0 1 6.963 6.963A5.23 5.23 0 0 0 16.5 7.5h-1.875a.375.375 0 0 1-.375-.375V5.25Z"
/>
</svg>
</div>
<div class="flex flex-col justify-center -space-y-0.5">
<div class=" dark:text-gray-100 text-sm font-medium line-clamp-1">
{file.name}
</div>
<div class=" text-gray-500 text-sm">{$i18n.t('Search Results')}</div>
</div>
</button>
{/if}
</div>
{/each}
{/if}
</div>
{/if}
{#if edit === true} {#if edit === true}
<div class="w-full bg-gray-50 dark:bg-gray-800 rounded-3xl px-5 py-3 my-2"> <div class="w-full bg-gray-50 dark:bg-gray-800 rounded-3xl px-5 py-3 my-2">
<textarea <textarea
...@@ -467,6 +566,11 @@ ...@@ -467,6 +566,11 @@
citation.document.forEach((document, index) => { citation.document.forEach((document, index) => {
const metadata = citation.metadata?.[index]; const metadata = citation.metadata?.[index];
const id = metadata?.source ?? 'N/A'; const id = metadata?.source ?? 'N/A';
let source = citation?.source;
// Check if ID looks like a URL
if (id.startsWith('http://') || id.startsWith('https://')) {
source = { name: id };
}
const existingSource = acc.find((item) => item.id === id); const existingSource = acc.find((item) => item.id === id);
...@@ -474,7 +578,7 @@ ...@@ -474,7 +578,7 @@
existingSource.document.push(document); existingSource.document.push(document);
existingSource.metadata.push(metadata); existingSource.metadata.push(metadata);
} else { } else {
acc.push( { id: id, source: citation?.source, document: [document], metadata: metadata ? [metadata] : [] } ); acc.push( { id: id, source: source, document: [document], metadata: metadata ? [metadata] : [] } );
} }
}); });
return acc; return acc;
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
import { config, models, settings, user } from '$lib/stores'; import { config, models, settings, user } from '$lib/stores';
import { createEventDispatcher, onMount, getContext } from 'svelte'; import { createEventDispatcher, onMount, getContext } from 'svelte';
import { toast } from 'svelte-sonner'; import { toast } from 'svelte-sonner';
import Tooltip from '$lib/components/common/Tooltip.svelte';
const dispatch = createEventDispatcher(); const dispatch = createEventDispatcher();
const i18n = getContext('i18n'); const i18n = getContext('i18n');
...@@ -280,7 +281,29 @@ ...@@ -280,7 +281,29 @@
<hr class=" dark:border-gray-700" /> <hr class=" dark:border-gray-700" />
<div> <div>
<div class=" mb-2.5 text-sm font-medium">{$i18n.t('Set Title Auto-Generation Model')}</div> <div class=" mb-2.5 text-sm font-medium flex">
<div class=" mr-1">{$i18n.t('Set Task Model')}</div>
<Tooltip
content={$i18n.t(
'A task model is used when performing tasks such as generating titles for chats and web search queries'
)}
>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-5 h-5"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="m11.25 11.25.041-.02a.75.75 0 0 1 1.063.852l-.708 2.836a.75.75 0 0 0 1.063.853l.041-.021M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-9-3.75h.008v.008H12V8.25Z"
/>
</svg>
</Tooltip>
</div>
<div class="flex w-full gap-2 pr-2"> <div class="flex w-full gap-2 pr-2">
<div class="flex-1"> <div class="flex-1">
<div class=" text-xs mb-1">Local Models</div> <div class=" text-xs mb-1">Local Models</div>
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
"{{modelName}} is thinking...": "{{modelName}} ...يفكر", "{{modelName}} is thinking...": "{{modelName}} ...يفكر",
"{{user}}'s Chats": "دردشات {{user}}", "{{user}}'s Chats": "دردشات {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} مطلوب", "{{webUIName}} Backend Required": "{{webUIName}} مطلوب",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "",
"a user": "مستخدم", "a user": "مستخدم",
"About": "عن", "About": "عن",
"Account": "الحساب", "Account": "الحساب",
...@@ -210,6 +211,7 @@ ...@@ -210,6 +211,7 @@
"Full Screen Mode": "وضع ملء الشاشة", "Full Screen Mode": "وضع ملء الشاشة",
"General": "عام", "General": "عام",
"General Settings": "الاعدادات العامة", "General Settings": "الاعدادات العامة",
"Generating search query": "",
"Generation Info": "معلومات الجيل", "Generation Info": "معلومات الجيل",
"Good Response": "استجابة جيدة", "Good Response": "استجابة جيدة",
"h:mm a": "الساعة:الدقائق صباحا/مساء", "h:mm a": "الساعة:الدقائق صباحا/مساء",
...@@ -284,6 +286,8 @@ ...@@ -284,6 +286,8 @@
"New Chat": "دردشة جديدة", "New Chat": "دردشة جديدة",
"New Password": "كلمة المرور الجديدة", "New Password": "كلمة المرور الجديدة",
"No results found": "لا توجد نتايج", "No results found": "لا توجد نتايج",
"No search query generated": "",
"No search results found": "",
"No source available": "لا يوجد مصدر متاح", "No source available": "لا يوجد مصدر متاح",
"Not factually correct": "ليس صحيحا من حيث الواقع", "Not factually correct": "ليس صحيحا من حيث الواقع",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "ملاحظة: إذا قمت بتعيين الحد الأدنى من النقاط، فلن يؤدي البحث إلا إلى إرجاع المستندات التي لها نقاط أكبر من أو تساوي الحد الأدنى من النقاط.", "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "ملاحظة: إذا قمت بتعيين الحد الأدنى من النقاط، فلن يؤدي البحث إلا إلى إرجاع المستندات التي لها نقاط أكبر من أو تساوي الحد الأدنى من النقاط.",
...@@ -367,6 +371,8 @@ ...@@ -367,6 +371,8 @@
"Search Documents": "البحث المستندات", "Search Documents": "البحث المستندات",
"Search Models": "", "Search Models": "",
"Search Prompts": "أبحث حث", "Search Prompts": "أبحث حث",
"Search Results": "",
"Searching the web for '{{searchQuery}}'": "",
"See readme.md for instructions": "readme.md للحصول على التعليمات", "See readme.md for instructions": "readme.md للحصول على التعليمات",
"See what's new": "ما الجديد", "See what's new": "ما الجديد",
"Seed": "Seed", "Seed": "Seed",
...@@ -388,7 +394,7 @@ ...@@ -388,7 +394,7 @@
"Set Model": "ضبط النموذج", "Set Model": "ضبط النموذج",
"Set reranking model (e.g. {{model}})": "ضبط نموذج إعادة الترتيب (على سبيل المثال: {{model}})", "Set reranking model (e.g. {{model}})": "ضبط نموذج إعادة الترتيب (على سبيل المثال: {{model}})",
"Set Steps": "ضبط الخطوات", "Set Steps": "ضبط الخطوات",
"Set Title Auto-Generation Model": "قم بتعيين نموذج إنشاء العنوان تلقائيًا", "Set Task Model": "",
"Set Voice": "ضبط الصوت", "Set Voice": "ضبط الصوت",
"Settings": "الاعدادات", "Settings": "الاعدادات",
"Settings saved successfully!": "تم حفظ الاعدادات بنجاح", "Settings saved successfully!": "تم حفظ الاعدادات بنجاح",
...@@ -473,6 +479,8 @@ ...@@ -473,6 +479,8 @@
"Web": "Web", "Web": "Web",
"Web Loader Settings": "Web تحميل اعدادات", "Web Loader Settings": "Web تحميل اعدادات",
"Web Params": "Web تحميل اعدادات", "Web Params": "Web تحميل اعدادات",
"Web Search Disabled": "",
"Web Search Enabled": "",
"Webhook URL": "Webhook الرابط", "Webhook URL": "Webhook الرابط",
"WebUI Add-ons": "WebUI الأضافات", "WebUI Add-ons": "WebUI الأضافات",
"WebUI Settings": "WebUI اعدادات", "WebUI Settings": "WebUI اعدادات",
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
"{{modelName}} is thinking...": "{{modelName}} мисли ...", "{{modelName}} is thinking...": "{{modelName}} мисли ...",
"{{user}}'s Chats": "{{user}}'s чатове", "{{user}}'s Chats": "{{user}}'s чатове",
"{{webUIName}} Backend Required": "{{webUIName}} Изисква се Бекенд", "{{webUIName}} Backend Required": "{{webUIName}} Изисква се Бекенд",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "",
"a user": "потребител", "a user": "потребител",
"About": "Относно", "About": "Относно",
"Account": "Акаунт", "Account": "Акаунт",
...@@ -210,6 +211,7 @@ ...@@ -210,6 +211,7 @@
"Full Screen Mode": "На Цял екран", "Full Screen Mode": "На Цял екран",
"General": "Основни", "General": "Основни",
"General Settings": "Основни Настройки", "General Settings": "Основни Настройки",
"Generating search query": "",
"Generation Info": "Информация за Генерация", "Generation Info": "Информация за Генерация",
"Good Response": "Добра отговор", "Good Response": "Добра отговор",
"h:mm a": "h:mm a", "h:mm a": "h:mm a",
...@@ -284,6 +286,8 @@ ...@@ -284,6 +286,8 @@
"New Chat": "Нов чат", "New Chat": "Нов чат",
"New Password": "Нова парола", "New Password": "Нова парола",
"No results found": "Няма намерени резултати", "No results found": "Няма намерени резултати",
"No search query generated": "",
"No search results found": "",
"No source available": "Няма наличен източник", "No source available": "Няма наличен източник",
"Not factually correct": "Не е фактологически правилно", "Not factually correct": "Не е фактологически правилно",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Забележка: Ако зададете минимален резултат, търсенето ще върне само документи с резултат, по-голям или равен на минималния резултат.", "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Забележка: Ако зададете минимален резултат, търсенето ще върне само документи с резултат, по-голям или равен на минималния резултат.",
...@@ -367,6 +371,8 @@ ...@@ -367,6 +371,8 @@
"Search Documents": "Търси Документи", "Search Documents": "Търси Документи",
"Search Models": "", "Search Models": "",
"Search Prompts": "Търси Промптове", "Search Prompts": "Търси Промптове",
"Search Results": "",
"Searching the web for '{{searchQuery}}'": "",
"See readme.md for instructions": "Виж readme.md за инструкции", "See readme.md for instructions": "Виж readme.md за инструкции",
"See what's new": "Виж какво е новото", "See what's new": "Виж какво е новото",
"Seed": "Seed", "Seed": "Seed",
...@@ -388,7 +394,7 @@ ...@@ -388,7 +394,7 @@
"Set Model": "Задай Модел", "Set Model": "Задай Модел",
"Set reranking model (e.g. {{model}})": "Задай reranking model (e.g. {{model}})", "Set reranking model (e.g. {{model}})": "Задай reranking model (e.g. {{model}})",
"Set Steps": "Задай Стъпки", "Set Steps": "Задай Стъпки",
"Set Title Auto-Generation Model": "Задай Модел за Автоматично Генериране на Заглавие", "Set Task Model": "",
"Set Voice": "Задай Глас", "Set Voice": "Задай Глас",
"Settings": "Настройки", "Settings": "Настройки",
"Settings saved successfully!": "Настройките са запазени успешно!", "Settings saved successfully!": "Настройките са запазени успешно!",
...@@ -473,6 +479,8 @@ ...@@ -473,6 +479,8 @@
"Web": "Уеб", "Web": "Уеб",
"Web Loader Settings": "Настройки за зареждане на уеб", "Web Loader Settings": "Настройки за зареждане на уеб",
"Web Params": "Параметри за уеб", "Web Params": "Параметри за уеб",
"Web Search Disabled": "",
"Web Search Enabled": "",
"Webhook URL": "Уебхук URL", "Webhook URL": "Уебхук URL",
"WebUI Add-ons": "WebUI Добавки", "WebUI Add-ons": "WebUI Добавки",
"WebUI Settings": "WebUI Настройки", "WebUI Settings": "WebUI Настройки",
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
"{{modelName}} is thinking...": "{{modelName}} চিন্তা করছে...", "{{modelName}} is thinking...": "{{modelName}} চিন্তা করছে...",
"{{user}}'s Chats": "{{user}}র চ্যাটস", "{{user}}'s Chats": "{{user}}র চ্যাটস",
"{{webUIName}} Backend Required": "{{webUIName}} ব্যাকএন্ড আবশ্যক", "{{webUIName}} Backend Required": "{{webUIName}} ব্যাকএন্ড আবশ্যক",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "",
"a user": "একজন ব্যাবহারকারী", "a user": "একজন ব্যাবহারকারী",
"About": "সম্পর্কে", "About": "সম্পর্কে",
"Account": "একাউন্ট", "Account": "একাউন্ট",
...@@ -210,6 +211,7 @@ ...@@ -210,6 +211,7 @@
"Full Screen Mode": "ফুলস্ক্রিন মোড", "Full Screen Mode": "ফুলস্ক্রিন মোড",
"General": "সাধারণ", "General": "সাধারণ",
"General Settings": "সাধারণ সেটিংসমূহ", "General Settings": "সাধারণ সেটিংসমূহ",
"Generating search query": "",
"Generation Info": "জেনারেশন ইনফো", "Generation Info": "জেনারেশন ইনফো",
"Good Response": "ভালো সাড়া", "Good Response": "ভালো সাড়া",
"h:mm a": "h:mm a", "h:mm a": "h:mm a",
...@@ -284,6 +286,8 @@ ...@@ -284,6 +286,8 @@
"New Chat": "নতুন চ্যাট", "New Chat": "নতুন চ্যাট",
"New Password": "নতুন পাসওয়ার্ড", "New Password": "নতুন পাসওয়ার্ড",
"No results found": "কোন ফলাফল পাওয়া যায়নি", "No results found": "কোন ফলাফল পাওয়া যায়নি",
"No search query generated": "",
"No search results found": "",
"No source available": "কোন উৎস পাওয়া যায়নি", "No source available": "কোন উৎস পাওয়া যায়নি",
"Not factually correct": "তথ্যগত দিক থেকে সঠিক নয়", "Not factually correct": "তথ্যগত দিক থেকে সঠিক নয়",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "দ্রষ্টব্য: আপনি যদি ন্যূনতম স্কোর সেট করেন তবে অনুসন্ধানটি কেবলমাত্র ন্যূনতম স্কোরের চেয়ে বেশি বা সমান স্কোর সহ নথিগুলি ফেরত দেবে।", "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "দ্রষ্টব্য: আপনি যদি ন্যূনতম স্কোর সেট করেন তবে অনুসন্ধানটি কেবলমাত্র ন্যূনতম স্কোরের চেয়ে বেশি বা সমান স্কোর সহ নথিগুলি ফেরত দেবে।",
...@@ -367,6 +371,8 @@ ...@@ -367,6 +371,8 @@
"Search Documents": "ডকুমেন্টসমূহ অনুসন্ধান করুন", "Search Documents": "ডকুমেন্টসমূহ অনুসন্ধান করুন",
"Search Models": "", "Search Models": "",
"Search Prompts": "প্রম্পটসমূহ অনুসন্ধান করুন", "Search Prompts": "প্রম্পটসমূহ অনুসন্ধান করুন",
"Search Results": "",
"Searching the web for '{{searchQuery}}'": "",
"See readme.md for instructions": "নির্দেশিকার জন্য readme.md দেখুন", "See readme.md for instructions": "নির্দেশিকার জন্য readme.md দেখুন",
"See what's new": "নতুন কী আছে দেখুন", "See what's new": "নতুন কী আছে দেখুন",
"Seed": "সীড", "Seed": "সীড",
...@@ -388,7 +394,7 @@ ...@@ -388,7 +394,7 @@
"Set Model": "মডেল নির্ধারণ করুন", "Set Model": "মডেল নির্ধারণ করুন",
"Set reranking model (e.g. {{model}})": "রি-র্যাংকিং মডেল নির্ধারণ করুন (উদাহরণ {{model}})", "Set reranking model (e.g. {{model}})": "রি-র্যাংকিং মডেল নির্ধারণ করুন (উদাহরণ {{model}})",
"Set Steps": "পরবর্তী ধাপসমূহ", "Set Steps": "পরবর্তী ধাপসমূহ",
"Set Title Auto-Generation Model": "শিরোনাম অটোজেনারেশন মডেন নির্ধারণ করুন", "Set Task Model": "",
"Set Voice": "কন্ঠস্বর নির্ধারণ করুন", "Set Voice": "কন্ঠস্বর নির্ধারণ করুন",
"Settings": "সেটিংসমূহ", "Settings": "সেটিংসমূহ",
"Settings saved successfully!": "সেটিংগুলো সফলভাবে সংরক্ষিত হয়েছে", "Settings saved successfully!": "সেটিংগুলো সফলভাবে সংরক্ষিত হয়েছে",
...@@ -473,6 +479,8 @@ ...@@ -473,6 +479,8 @@
"Web": "ওয়েব", "Web": "ওয়েব",
"Web Loader Settings": "ওয়েব লোডার সেটিংস", "Web Loader Settings": "ওয়েব লোডার সেটিংস",
"Web Params": "ওয়েব প্যারামিটারসমূহ", "Web Params": "ওয়েব প্যারামিটারসমূহ",
"Web Search Disabled": "",
"Web Search Enabled": "",
"Webhook URL": "ওয়েবহুক URL", "Webhook URL": "ওয়েবহুক URL",
"WebUI Add-ons": "WebUI এড-অনসমূহ", "WebUI Add-ons": "WebUI এড-অনসমূহ",
"WebUI Settings": "WebUI সেটিংসমূহ", "WebUI Settings": "WebUI সেটিংসমূহ",
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
"{{modelName}} is thinking...": "{{modelName}} està pensant...", "{{modelName}} is thinking...": "{{modelName}} està pensant...",
"{{user}}'s Chats": "{{user}}'s Chats", "{{user}}'s Chats": "{{user}}'s Chats",
"{{webUIName}} Backend Required": "Es requereix Backend de {{webUIName}}", "{{webUIName}} Backend Required": "Es requereix Backend de {{webUIName}}",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "",
"a user": "un usuari", "a user": "un usuari",
"About": "Sobre", "About": "Sobre",
"Account": "Compte", "Account": "Compte",
...@@ -210,6 +211,7 @@ ...@@ -210,6 +211,7 @@
"Full Screen Mode": "Mode de Pantalla Completa", "Full Screen Mode": "Mode de Pantalla Completa",
"General": "General", "General": "General",
"General Settings": "Configuració General", "General Settings": "Configuració General",
"Generating search query": "",
"Generation Info": "Informació de Generació", "Generation Info": "Informació de Generació",
"Good Response": "Resposta bona", "Good Response": "Resposta bona",
"h:mm a": "h:mm a", "h:mm a": "h:mm a",
...@@ -284,6 +286,8 @@ ...@@ -284,6 +286,8 @@
"New Chat": "Xat Nou", "New Chat": "Xat Nou",
"New Password": "Nova Contrasenya", "New Password": "Nova Contrasenya",
"No results found": "No s'han trobat resultats", "No results found": "No s'han trobat resultats",
"No search query generated": "",
"No search results found": "",
"No source available": "Sense font disponible", "No source available": "Sense font disponible",
"Not factually correct": "No està clarament correcte", "Not factually correct": "No està clarament correcte",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: Si establiscs una puntuació mínima, la cerca només retornarà documents amb una puntuació major o igual a la puntuació mínima.", "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: Si establiscs una puntuació mínima, la cerca només retornarà documents amb una puntuació major o igual a la puntuació mínima.",
...@@ -367,6 +371,8 @@ ...@@ -367,6 +371,8 @@
"Search Documents": "Cerca Documents", "Search Documents": "Cerca Documents",
"Search Models": "", "Search Models": "",
"Search Prompts": "Cerca Prompts", "Search Prompts": "Cerca Prompts",
"Search Results": "",
"Searching the web for '{{searchQuery}}'": "",
"See readme.md for instructions": "Consulta el readme.md per a instruccions", "See readme.md for instructions": "Consulta el readme.md per a instruccions",
"See what's new": "Veure novetats", "See what's new": "Veure novetats",
"Seed": "Llavor", "Seed": "Llavor",
...@@ -388,7 +394,7 @@ ...@@ -388,7 +394,7 @@
"Set Model": "Estableix Model", "Set Model": "Estableix Model",
"Set reranking model (e.g. {{model}})": "Estableix el model de reranking (p.ex. {{model}})", "Set reranking model (e.g. {{model}})": "Estableix el model de reranking (p.ex. {{model}})",
"Set Steps": "Estableix Passos", "Set Steps": "Estableix Passos",
"Set Title Auto-Generation Model": "Estableix Model d'Auto-Generació de Títol", "Set Task Model": "",
"Set Voice": "Estableix Veu", "Set Voice": "Estableix Veu",
"Settings": "Configuracions", "Settings": "Configuracions",
"Settings saved successfully!": "Configuracions guardades amb èxit!", "Settings saved successfully!": "Configuracions guardades amb èxit!",
...@@ -473,6 +479,8 @@ ...@@ -473,6 +479,8 @@
"Web": "Web", "Web": "Web",
"Web Loader Settings": "Configuració del carregador web", "Web Loader Settings": "Configuració del carregador web",
"Web Params": "Paràmetres web", "Web Params": "Paràmetres web",
"Web Search Disabled": "",
"Web Search Enabled": "",
"Webhook URL": "URL del webhook", "Webhook URL": "URL del webhook",
"WebUI Add-ons": "Complements de WebUI", "WebUI Add-ons": "Complements de WebUI",
"WebUI Settings": "Configuració de WebUI", "WebUI Settings": "Configuració de WebUI",
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
"{{modelName}} is thinking...": "{{modelName}} hunahunaa...", "{{modelName}} is thinking...": "{{modelName}} hunahunaa...",
"{{user}}'s Chats": "", "{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "Backend {{webUIName}} gikinahanglan", "{{webUIName}} Backend Required": "Backend {{webUIName}} gikinahanglan",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "",
"a user": "usa ka user", "a user": "usa ka user",
"About": "Mahitungod sa", "About": "Mahitungod sa",
"Account": "Account", "Account": "Account",
...@@ -210,6 +211,7 @@ ...@@ -210,6 +211,7 @@
"Full Screen Mode": "Full screen mode", "Full Screen Mode": "Full screen mode",
"General": "Heneral", "General": "Heneral",
"General Settings": "kinatibuk-ang mga setting", "General Settings": "kinatibuk-ang mga setting",
"Generating search query": "",
"Generation Info": "", "Generation Info": "",
"Good Response": "", "Good Response": "",
"h:mm a": "", "h:mm a": "",
...@@ -284,6 +286,8 @@ ...@@ -284,6 +286,8 @@
"New Chat": "Bag-ong diskusyon", "New Chat": "Bag-ong diskusyon",
"New Password": "Bag-ong Password", "New Password": "Bag-ong Password",
"No results found": "", "No results found": "",
"No search query generated": "",
"No search results found": "",
"No source available": "Walay tinubdan nga anaa", "No source available": "Walay tinubdan nga anaa",
"Not factually correct": "", "Not factually correct": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "", "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "",
...@@ -367,6 +371,8 @@ ...@@ -367,6 +371,8 @@
"Search Documents": "Pangitaa ang mga dokumento", "Search Documents": "Pangitaa ang mga dokumento",
"Search Models": "", "Search Models": "",
"Search Prompts": "Pangitaa ang mga prompt", "Search Prompts": "Pangitaa ang mga prompt",
"Search Results": "",
"Searching the web for '{{searchQuery}}'": "",
"See readme.md for instructions": "Tan-awa ang readme.md alang sa mga panudlo", "See readme.md for instructions": "Tan-awa ang readme.md alang sa mga panudlo",
"See what's new": "Tan-awa unsay bag-o", "See what's new": "Tan-awa unsay bag-o",
"Seed": "Binhi", "Seed": "Binhi",
...@@ -388,7 +394,7 @@ ...@@ -388,7 +394,7 @@
"Set Model": "I-configure ang template", "Set Model": "I-configure ang template",
"Set reranking model (e.g. {{model}})": "", "Set reranking model (e.g. {{model}})": "",
"Set Steps": "Ipasabot ang mga lakang", "Set Steps": "Ipasabot ang mga lakang",
"Set Title Auto-Generation Model": "Itakda ang awtomatik nga template sa paghimo sa titulo", "Set Task Model": "",
"Set Voice": "Ibutang ang tingog", "Set Voice": "Ibutang ang tingog",
"Settings": "Mga setting", "Settings": "Mga setting",
"Settings saved successfully!": "Malampuson nga na-save ang mga setting!", "Settings saved successfully!": "Malampuson nga na-save ang mga setting!",
...@@ -473,6 +479,8 @@ ...@@ -473,6 +479,8 @@
"Web": "Web", "Web": "Web",
"Web Loader Settings": "", "Web Loader Settings": "",
"Web Params": "", "Web Params": "",
"Web Search Disabled": "",
"Web Search Enabled": "",
"Webhook URL": "", "Webhook URL": "",
"WebUI Add-ons": "Mga add-on sa WebUI", "WebUI Add-ons": "Mga add-on sa WebUI",
"WebUI Settings": "Mga Setting sa WebUI", "WebUI Settings": "Mga Setting sa WebUI",
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
"{{modelName}} is thinking...": "{{modelName}} denkt nach...", "{{modelName}} is thinking...": "{{modelName}} denkt nach...",
"{{user}}'s Chats": "{{user}}s Chats", "{{user}}'s Chats": "{{user}}s Chats",
"{{webUIName}} Backend Required": "{{webUIName}}-Backend erforderlich", "{{webUIName}} Backend Required": "{{webUIName}}-Backend erforderlich",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "",
"a user": "ein Benutzer", "a user": "ein Benutzer",
"About": "Über", "About": "Über",
"Account": "Account", "Account": "Account",
...@@ -210,6 +211,7 @@ ...@@ -210,6 +211,7 @@
"Full Screen Mode": "Vollbildmodus", "Full Screen Mode": "Vollbildmodus",
"General": "Allgemein", "General": "Allgemein",
"General Settings": "Allgemeine Einstellungen", "General Settings": "Allgemeine Einstellungen",
"Generating search query": "",
"Generation Info": "Generierungsinformationen", "Generation Info": "Generierungsinformationen",
"Good Response": "Gute Antwort", "Good Response": "Gute Antwort",
"h:mm a": "h:mm a", "h:mm a": "h:mm a",
...@@ -284,6 +286,8 @@ ...@@ -284,6 +286,8 @@
"New Chat": "Neuer Chat", "New Chat": "Neuer Chat",
"New Password": "Neues Passwort", "New Password": "Neues Passwort",
"No results found": "Keine Ergebnisse gefunden", "No results found": "Keine Ergebnisse gefunden",
"No search query generated": "",
"No search results found": "",
"No source available": "Keine Quelle verfügbar.", "No source available": "Keine Quelle verfügbar.",
"Not factually correct": "Nicht sachlich korrekt.", "Not factually correct": "Nicht sachlich korrekt.",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Hinweis: Wenn du einen Mindestscore festlegst, wird die Suche nur Dokumente zurückgeben, deren Score größer oder gleich dem Mindestscore ist.", "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Hinweis: Wenn du einen Mindestscore festlegst, wird die Suche nur Dokumente zurückgeben, deren Score größer oder gleich dem Mindestscore ist.",
...@@ -367,6 +371,8 @@ ...@@ -367,6 +371,8 @@
"Search Documents": "Dokumente suchen", "Search Documents": "Dokumente suchen",
"Search Models": "", "Search Models": "",
"Search Prompts": "Prompts suchen", "Search Prompts": "Prompts suchen",
"Search Results": "",
"Searching the web for '{{searchQuery}}'": "",
"See readme.md for instructions": "Anleitung in readme.md anzeigen", "See readme.md for instructions": "Anleitung in readme.md anzeigen",
"See what's new": "Was gibt's Neues", "See what's new": "Was gibt's Neues",
"Seed": "Seed", "Seed": "Seed",
...@@ -388,7 +394,7 @@ ...@@ -388,7 +394,7 @@
"Set Model": "Modell festlegen", "Set Model": "Modell festlegen",
"Set reranking model (e.g. {{model}})": "Rerankingmodell festlegen (z.B. {{model}})", "Set reranking model (e.g. {{model}})": "Rerankingmodell festlegen (z.B. {{model}})",
"Set Steps": "Schritte festlegen", "Set Steps": "Schritte festlegen",
"Set Title Auto-Generation Model": "Modell für automatische Titelgenerierung festlegen", "Set Task Model": "",
"Set Voice": "Stimme festlegen", "Set Voice": "Stimme festlegen",
"Settings": "Einstellungen", "Settings": "Einstellungen",
"Settings saved successfully!": "Einstellungen erfolgreich gespeichert!", "Settings saved successfully!": "Einstellungen erfolgreich gespeichert!",
...@@ -473,6 +479,8 @@ ...@@ -473,6 +479,8 @@
"Web": "Web", "Web": "Web",
"Web Loader Settings": "Web Loader Einstellungen", "Web Loader Settings": "Web Loader Einstellungen",
"Web Params": "Web Parameter", "Web Params": "Web Parameter",
"Web Search Disabled": "",
"Web Search Enabled": "",
"Webhook URL": "Webhook URL", "Webhook URL": "Webhook URL",
"WebUI Add-ons": "WebUI-Add-Ons", "WebUI Add-ons": "WebUI-Add-Ons",
"WebUI Settings": "WebUI-Einstellungen", "WebUI Settings": "WebUI-Einstellungen",
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
"{{modelName}} is thinking...": "{{modelName}} is thinkin'...", "{{modelName}} is thinking...": "{{modelName}} is thinkin'...",
"{{user}}'s Chats": "", "{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "{{webUIName}} Backend Much Required", "{{webUIName}} Backend Required": "{{webUIName}} Backend Much Required",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "",
"a user": "such user", "a user": "such user",
"About": "Much About", "About": "Much About",
"Account": "Account", "Account": "Account",
...@@ -210,6 +211,7 @@ ...@@ -210,6 +211,7 @@
"Full Screen Mode": "Much Full Bark Mode", "Full Screen Mode": "Much Full Bark Mode",
"General": "Woweral", "General": "Woweral",
"General Settings": "General Doge Settings", "General Settings": "General Doge Settings",
"Generating search query": "",
"Generation Info": "", "Generation Info": "",
"Good Response": "", "Good Response": "",
"h:mm a": "", "h:mm a": "",
...@@ -284,6 +286,8 @@ ...@@ -284,6 +286,8 @@
"New Chat": "New Bark", "New Chat": "New Bark",
"New Password": "New Barkword", "New Password": "New Barkword",
"No results found": "", "No results found": "",
"No search query generated": "",
"No search results found": "",
"No source available": "No source available", "No source available": "No source available",
"Not factually correct": "", "Not factually correct": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "", "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "",
...@@ -367,6 +371,8 @@ ...@@ -367,6 +371,8 @@
"Search Documents": "Search Documents much find", "Search Documents": "Search Documents much find",
"Search Models": "", "Search Models": "",
"Search Prompts": "Search Prompts much wow", "Search Prompts": "Search Prompts much wow",
"Search Results": "",
"Searching the web for '{{searchQuery}}'": "",
"See readme.md for instructions": "See readme.md for instructions wow", "See readme.md for instructions": "See readme.md for instructions wow",
"See what's new": "See what's new so amaze", "See what's new": "See what's new so amaze",
"Seed": "Seed very plant", "Seed": "Seed very plant",
...@@ -388,7 +394,7 @@ ...@@ -388,7 +394,7 @@
"Set Model": "Set Model so speak", "Set Model": "Set Model so speak",
"Set reranking model (e.g. {{model}})": "", "Set reranking model (e.g. {{model}})": "",
"Set Steps": "Set Steps so many steps", "Set Steps": "Set Steps so many steps",
"Set Title Auto-Generation Model": "Set Title Auto-Generation Model very auto-generate", "Set Task Model": "",
"Set Voice": "Set Voice so speak", "Set Voice": "Set Voice so speak",
"Settings": "Settings much settings", "Settings": "Settings much settings",
"Settings saved successfully!": "Settings saved successfully! Very success!", "Settings saved successfully!": "Settings saved successfully! Very success!",
...@@ -473,6 +479,8 @@ ...@@ -473,6 +479,8 @@
"Web": "Web very web", "Web": "Web very web",
"Web Loader Settings": "", "Web Loader Settings": "",
"Web Params": "", "Web Params": "",
"Web Search Disabled": "",
"Web Search Enabled": "",
"Webhook URL": "", "Webhook URL": "",
"WebUI Add-ons": "WebUI Add-ons very add-ons", "WebUI Add-ons": "WebUI Add-ons very add-ons",
"WebUI Settings": "WebUI Settings much settings", "WebUI Settings": "WebUI Settings much settings",
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
"{{modelName}} is thinking...": "", "{{modelName}} is thinking...": "",
"{{user}}'s Chats": "", "{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "", "{{webUIName}} Backend Required": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "",
"a user": "", "a user": "",
"About": "", "About": "",
"Account": "", "Account": "",
...@@ -210,6 +211,7 @@ ...@@ -210,6 +211,7 @@
"Full Screen Mode": "", "Full Screen Mode": "",
"General": "", "General": "",
"General Settings": "", "General Settings": "",
"Generating search query": "",
"Generation Info": "", "Generation Info": "",
"Good Response": "", "Good Response": "",
"h:mm a": "", "h:mm a": "",
...@@ -284,6 +286,8 @@ ...@@ -284,6 +286,8 @@
"New Chat": "", "New Chat": "",
"New Password": "", "New Password": "",
"No results found": "", "No results found": "",
"No search query generated": "",
"No search results found": "",
"No source available": "", "No source available": "",
"Not factually correct": "", "Not factually correct": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "", "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "",
...@@ -367,6 +371,8 @@ ...@@ -367,6 +371,8 @@
"Search Documents": "", "Search Documents": "",
"Search Models": "", "Search Models": "",
"Search Prompts": "", "Search Prompts": "",
"Search Results": "",
"Searching the web for '{{searchQuery}}'": "",
"See readme.md for instructions": "", "See readme.md for instructions": "",
"See what's new": "", "See what's new": "",
"Seed": "", "Seed": "",
...@@ -388,7 +394,7 @@ ...@@ -388,7 +394,7 @@
"Set Model": "", "Set Model": "",
"Set reranking model (e.g. {{model}})": "", "Set reranking model (e.g. {{model}})": "",
"Set Steps": "", "Set Steps": "",
"Set Title Auto-Generation Model": "", "Set Task Model": "",
"Set Voice": "", "Set Voice": "",
"Settings": "", "Settings": "",
"Settings saved successfully!": "", "Settings saved successfully!": "",
...@@ -473,6 +479,8 @@ ...@@ -473,6 +479,8 @@
"Web": "", "Web": "",
"Web Loader Settings": "", "Web Loader Settings": "",
"Web Params": "", "Web Params": "",
"Web Search Disabled": "",
"Web Search Enabled": "",
"Webhook URL": "", "Webhook URL": "",
"WebUI Add-ons": "", "WebUI Add-ons": "",
"WebUI Settings": "", "WebUI Settings": "",
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
"{{modelName}} is thinking...": "", "{{modelName}} is thinking...": "",
"{{user}}'s Chats": "", "{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "", "{{webUIName}} Backend Required": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "",
"a user": "", "a user": "",
"About": "", "About": "",
"Account": "", "Account": "",
...@@ -210,6 +211,7 @@ ...@@ -210,6 +211,7 @@
"Full Screen Mode": "", "Full Screen Mode": "",
"General": "", "General": "",
"General Settings": "", "General Settings": "",
"Generating search query": "",
"Generation Info": "", "Generation Info": "",
"Good Response": "", "Good Response": "",
"h:mm a": "", "h:mm a": "",
...@@ -284,6 +286,8 @@ ...@@ -284,6 +286,8 @@
"New Chat": "", "New Chat": "",
"New Password": "", "New Password": "",
"No results found": "", "No results found": "",
"No search query generated": "",
"No search results found": "",
"No source available": "", "No source available": "",
"Not factually correct": "", "Not factually correct": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "", "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "",
...@@ -367,6 +371,8 @@ ...@@ -367,6 +371,8 @@
"Search Documents": "", "Search Documents": "",
"Search Models": "", "Search Models": "",
"Search Prompts": "", "Search Prompts": "",
"Search Results": "",
"Searching the web for '{{searchQuery}}'": "",
"See readme.md for instructions": "", "See readme.md for instructions": "",
"See what's new": "", "See what's new": "",
"Seed": "", "Seed": "",
...@@ -388,7 +394,7 @@ ...@@ -388,7 +394,7 @@
"Set Model": "", "Set Model": "",
"Set reranking model (e.g. {{model}})": "", "Set reranking model (e.g. {{model}})": "",
"Set Steps": "", "Set Steps": "",
"Set Title Auto-Generation Model": "", "Set Task Model": "",
"Set Voice": "", "Set Voice": "",
"Settings": "", "Settings": "",
"Settings saved successfully!": "", "Settings saved successfully!": "",
...@@ -473,6 +479,8 @@ ...@@ -473,6 +479,8 @@
"Web": "", "Web": "",
"Web Loader Settings": "", "Web Loader Settings": "",
"Web Params": "", "Web Params": "",
"Web Search Disabled": "",
"Web Search Enabled": "",
"Webhook URL": "", "Webhook URL": "",
"WebUI Add-ons": "", "WebUI Add-ons": "",
"WebUI Settings": "", "WebUI Settings": "",
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
"{{modelName}} is thinking...": "{{modelName}} está pensando...", "{{modelName}} is thinking...": "{{modelName}} está pensando...",
"{{user}}'s Chats": "{{user}}'s Chats", "{{user}}'s Chats": "{{user}}'s Chats",
"{{webUIName}} Backend Required": "{{webUIName}} Servidor Requerido", "{{webUIName}} Backend Required": "{{webUIName}} Servidor Requerido",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "",
"a user": "un usuario", "a user": "un usuario",
"About": "Sobre nosotros", "About": "Sobre nosotros",
"Account": "Cuenta", "Account": "Cuenta",
...@@ -210,6 +211,7 @@ ...@@ -210,6 +211,7 @@
"Full Screen Mode": "Modo de Pantalla Completa", "Full Screen Mode": "Modo de Pantalla Completa",
"General": "General", "General": "General",
"General Settings": "Opciones Generales", "General Settings": "Opciones Generales",
"Generating search query": "",
"Generation Info": "Información de Generación", "Generation Info": "Información de Generación",
"Good Response": "Buena Respuesta", "Good Response": "Buena Respuesta",
"h:mm a": "h:mm a", "h:mm a": "h:mm a",
...@@ -284,6 +286,8 @@ ...@@ -284,6 +286,8 @@
"New Chat": "Nuevo Chat", "New Chat": "Nuevo Chat",
"New Password": "Nueva Contraseña", "New Password": "Nueva Contraseña",
"No results found": "No se han encontrado resultados", "No results found": "No se han encontrado resultados",
"No search query generated": "",
"No search results found": "",
"No source available": "No hay fuente disponible", "No source available": "No hay fuente disponible",
"Not factually correct": "No es correcto en todos los aspectos", "Not factually correct": "No es correcto en todos los aspectos",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: Si estableces una puntuación mínima, la búsqueda sólo devolverá documentos con una puntuación mayor o igual a la puntuación mínima.", "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: Si estableces una puntuación mínima, la búsqueda sólo devolverá documentos con una puntuación mayor o igual a la puntuación mínima.",
...@@ -367,6 +371,8 @@ ...@@ -367,6 +371,8 @@
"Search Documents": "Buscar Documentos", "Search Documents": "Buscar Documentos",
"Search Models": "", "Search Models": "",
"Search Prompts": "Buscar Prompts", "Search Prompts": "Buscar Prompts",
"Search Results": "",
"Searching the web for '{{searchQuery}}'": "",
"See readme.md for instructions": "Vea el readme.md para instrucciones", "See readme.md for instructions": "Vea el readme.md para instrucciones",
"See what's new": "Ver las novedades", "See what's new": "Ver las novedades",
"Seed": "Seed", "Seed": "Seed",
...@@ -388,7 +394,7 @@ ...@@ -388,7 +394,7 @@
"Set Model": "Establecer el modelo", "Set Model": "Establecer el modelo",
"Set reranking model (e.g. {{model}})": "Establecer modelo de reranking (ej. {{model}})", "Set reranking model (e.g. {{model}})": "Establecer modelo de reranking (ej. {{model}})",
"Set Steps": "Establecer Pasos", "Set Steps": "Establecer Pasos",
"Set Title Auto-Generation Model": "Establecer modelo de generación automática de títulos", "Set Task Model": "",
"Set Voice": "Establecer la voz", "Set Voice": "Establecer la voz",
"Settings": "Configuración", "Settings": "Configuración",
"Settings saved successfully!": "¡Configuración guardada exitosamente!", "Settings saved successfully!": "¡Configuración guardada exitosamente!",
...@@ -473,6 +479,8 @@ ...@@ -473,6 +479,8 @@
"Web": "Web", "Web": "Web",
"Web Loader Settings": "Web Loader Settings", "Web Loader Settings": "Web Loader Settings",
"Web Params": "Web Params", "Web Params": "Web Params",
"Web Search Disabled": "",
"Web Search Enabled": "",
"Webhook URL": "Webhook URL", "Webhook URL": "Webhook URL",
"WebUI Add-ons": "WebUI Add-ons", "WebUI Add-ons": "WebUI Add-ons",
"WebUI Settings": "Configuración del WebUI", "WebUI Settings": "Configuración del WebUI",
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
"{{modelName}} is thinking...": "{{modelName}} در حال فکر کردن است...", "{{modelName}} is thinking...": "{{modelName}} در حال فکر کردن است...",
"{{user}}'s Chats": "{{user}} چت ها", "{{user}}'s Chats": "{{user}} چت ها",
"{{webUIName}} Backend Required": "بکند {{webUIName}} نیاز است.", "{{webUIName}} Backend Required": "بکند {{webUIName}} نیاز است.",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "",
"a user": "یک کاربر", "a user": "یک کاربر",
"About": "درباره", "About": "درباره",
"Account": "حساب کاربری", "Account": "حساب کاربری",
...@@ -210,6 +211,7 @@ ...@@ -210,6 +211,7 @@
"Full Screen Mode": "حالت تمام صفحه", "Full Screen Mode": "حالت تمام صفحه",
"General": "عمومی", "General": "عمومی",
"General Settings": "تنظیمات عمومی", "General Settings": "تنظیمات عمومی",
"Generating search query": "",
"Generation Info": "اطلاعات تولید", "Generation Info": "اطلاعات تولید",
"Good Response": "پاسخ خوب", "Good Response": "پاسخ خوب",
"h:mm a": "h:mm a", "h:mm a": "h:mm a",
...@@ -284,6 +286,8 @@ ...@@ -284,6 +286,8 @@
"New Chat": "گپ جدید", "New Chat": "گپ جدید",
"New Password": "رمز عبور جدید", "New Password": "رمز عبور جدید",
"No results found": "نتیجه\u200cای یافت نشد", "No results found": "نتیجه\u200cای یافت نشد",
"No search query generated": "",
"No search results found": "",
"No source available": "منبعی در دسترس نیست", "No source available": "منبعی در دسترس نیست",
"Not factually correct": "اشتباهی فکری نیست", "Not factually correct": "اشتباهی فکری نیست",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "", "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "",
...@@ -367,6 +371,8 @@ ...@@ -367,6 +371,8 @@
"Search Documents": "جستجوی اسناد", "Search Documents": "جستجوی اسناد",
"Search Models": "", "Search Models": "",
"Search Prompts": "جستجوی پرامپت\u200cها", "Search Prompts": "جستجوی پرامپت\u200cها",
"Search Results": "",
"Searching the web for '{{searchQuery}}'": "",
"See readme.md for instructions": "برای مشاهده دستورالعمل\u200cها به readme.md مراجعه کنید", "See readme.md for instructions": "برای مشاهده دستورالعمل\u200cها به readme.md مراجعه کنید",
"See what's new": "ببینید موارد جدید چه بوده", "See what's new": "ببینید موارد جدید چه بوده",
"Seed": "Seed", "Seed": "Seed",
...@@ -388,7 +394,7 @@ ...@@ -388,7 +394,7 @@
"Set Model": "تنظیم مدل", "Set Model": "تنظیم مدل",
"Set reranking model (e.g. {{model}})": "تنظیم مدل ری\u200cراینگ (برای مثال {{model}})", "Set reranking model (e.g. {{model}})": "تنظیم مدل ری\u200cراینگ (برای مثال {{model}})",
"Set Steps": "تنظیم گام\u200cها", "Set Steps": "تنظیم گام\u200cها",
"Set Title Auto-Generation Model": "تنظیم مدل تولید خودکار عنوان", "Set Task Model": "",
"Set Voice": "تنظیم صدا", "Set Voice": "تنظیم صدا",
"Settings": "تنظیمات", "Settings": "تنظیمات",
"Settings saved successfully!": "تنظیمات با موفقیت ذخیره شد!", "Settings saved successfully!": "تنظیمات با موفقیت ذخیره شد!",
...@@ -473,6 +479,8 @@ ...@@ -473,6 +479,8 @@
"Web": "وب", "Web": "وب",
"Web Loader Settings": "تنظیمات لودر وب", "Web Loader Settings": "تنظیمات لودر وب",
"Web Params": "پارامترهای وب", "Web Params": "پارامترهای وب",
"Web Search Disabled": "",
"Web Search Enabled": "",
"Webhook URL": "URL وبهوک", "Webhook URL": "URL وبهوک",
"WebUI Add-ons": "WebUI افزونه\u200cهای", "WebUI Add-ons": "WebUI افزونه\u200cهای",
"WebUI Settings": "تنظیمات WebUI", "WebUI Settings": "تنظیمات WebUI",
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
"{{modelName}} is thinking...": "{{modelName}} miettii...", "{{modelName}} is thinking...": "{{modelName}} miettii...",
"{{user}}'s Chats": "{{user}}:n keskustelut", "{{user}}'s Chats": "{{user}}:n keskustelut",
"{{webUIName}} Backend Required": "{{webUIName}} backend vaaditaan", "{{webUIName}} Backend Required": "{{webUIName}} backend vaaditaan",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "",
"a user": "käyttäjä", "a user": "käyttäjä",
"About": "Tietoja", "About": "Tietoja",
"Account": "Tili", "Account": "Tili",
...@@ -210,6 +211,7 @@ ...@@ -210,6 +211,7 @@
"Full Screen Mode": "Koko näytön tila", "Full Screen Mode": "Koko näytön tila",
"General": "Yleinen", "General": "Yleinen",
"General Settings": "Yleisasetukset", "General Settings": "Yleisasetukset",
"Generating search query": "",
"Generation Info": "Generointitiedot", "Generation Info": "Generointitiedot",
"Good Response": "Hyvä vastaus", "Good Response": "Hyvä vastaus",
"h:mm a": "h:mm a", "h:mm a": "h:mm a",
...@@ -284,6 +286,8 @@ ...@@ -284,6 +286,8 @@
"New Chat": "Uusi keskustelu", "New Chat": "Uusi keskustelu",
"New Password": "Uusi salasana", "New Password": "Uusi salasana",
"No results found": "Ei tuloksia", "No results found": "Ei tuloksia",
"No search query generated": "",
"No search results found": "",
"No source available": "Ei lähdettä saatavilla", "No source available": "Ei lähdettä saatavilla",
"Not factually correct": "Ei faktisesti oikein", "Not factually correct": "Ei faktisesti oikein",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Huom: Jos asetat vähimmäispisteet, haku palauttaa vain asiakirjat, joiden pisteet ovat suurempia tai yhtä suuria kuin vähimmäispistemäärä.", "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Huom: Jos asetat vähimmäispisteet, haku palauttaa vain asiakirjat, joiden pisteet ovat suurempia tai yhtä suuria kuin vähimmäispistemäärä.",
...@@ -367,6 +371,8 @@ ...@@ -367,6 +371,8 @@
"Search Documents": "Hae asiakirjoja", "Search Documents": "Hae asiakirjoja",
"Search Models": "", "Search Models": "",
"Search Prompts": "Hae kehotteita", "Search Prompts": "Hae kehotteita",
"Search Results": "",
"Searching the web for '{{searchQuery}}'": "",
"See readme.md for instructions": "Katso lisää ohjeita readme.md:stä", "See readme.md for instructions": "Katso lisää ohjeita readme.md:stä",
"See what's new": "Katso, mitä uutta", "See what's new": "Katso, mitä uutta",
"Seed": "Siemen", "Seed": "Siemen",
...@@ -388,7 +394,7 @@ ...@@ -388,7 +394,7 @@
"Set Model": "Aseta malli", "Set Model": "Aseta malli",
"Set reranking model (e.g. {{model}})": "Aseta uudelleenpisteytysmalli (esim. {{model}})", "Set reranking model (e.g. {{model}})": "Aseta uudelleenpisteytysmalli (esim. {{model}})",
"Set Steps": "Aseta askelmäärä", "Set Steps": "Aseta askelmäärä",
"Set Title Auto-Generation Model": "Aseta otsikon automaattisen luonnin malli", "Set Task Model": "",
"Set Voice": "Aseta puheääni", "Set Voice": "Aseta puheääni",
"Settings": "Asetukset", "Settings": "Asetukset",
"Settings saved successfully!": "Asetukset tallennettu onnistuneesti!", "Settings saved successfully!": "Asetukset tallennettu onnistuneesti!",
...@@ -473,6 +479,8 @@ ...@@ -473,6 +479,8 @@
"Web": "Web", "Web": "Web",
"Web Loader Settings": "Web Loader asetukset", "Web Loader Settings": "Web Loader asetukset",
"Web Params": "Web-parametrit", "Web Params": "Web-parametrit",
"Web Search Disabled": "",
"Web Search Enabled": "",
"Webhook URL": "Webhook-URL", "Webhook URL": "Webhook-URL",
"WebUI Add-ons": "WebUI-lisäosat", "WebUI Add-ons": "WebUI-lisäosat",
"WebUI Settings": "WebUI-asetukset", "WebUI Settings": "WebUI-asetukset",
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
"{{modelName}} is thinking...": "{{modelName}} réfléchit...", "{{modelName}} is thinking...": "{{modelName}} réfléchit...",
"{{user}}'s Chats": "{{user}}'s Chats", "{{user}}'s Chats": "{{user}}'s Chats",
"{{webUIName}} Backend Required": "Backend {{webUIName}} requis", "{{webUIName}} Backend Required": "Backend {{webUIName}} requis",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "",
"a user": "un utilisateur", "a user": "un utilisateur",
"About": "À propos", "About": "À propos",
"Account": "Compte", "Account": "Compte",
...@@ -210,6 +211,7 @@ ...@@ -210,6 +211,7 @@
"Full Screen Mode": "Mode plein écran", "Full Screen Mode": "Mode plein écran",
"General": "Général", "General": "Général",
"General Settings": "Paramètres généraux", "General Settings": "Paramètres généraux",
"Generating search query": "",
"Generation Info": "Informations de génération", "Generation Info": "Informations de génération",
"Good Response": "Bonne réponse", "Good Response": "Bonne réponse",
"h:mm a": "h:mm a", "h:mm a": "h:mm a",
...@@ -284,6 +286,8 @@ ...@@ -284,6 +286,8 @@
"New Chat": "Nouvelle discussion", "New Chat": "Nouvelle discussion",
"New Password": "Nouveau mot de passe", "New Password": "Nouveau mot de passe",
"No results found": "Aucun résultat trouvé", "No results found": "Aucun résultat trouvé",
"No search query generated": "",
"No search results found": "",
"No source available": "Aucune source disponible", "No source available": "Aucune source disponible",
"Not factually correct": "Non, pas exactement correct", "Not factually correct": "Non, pas exactement correct",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Note: Si vous définissez un score minimum, la recherche ne retournera que les documents avec un score supérieur ou égal au score minimum.", "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Note: Si vous définissez un score minimum, la recherche ne retournera que les documents avec un score supérieur ou égal au score minimum.",
...@@ -367,6 +371,8 @@ ...@@ -367,6 +371,8 @@
"Search Documents": "Rechercher des documents", "Search Documents": "Rechercher des documents",
"Search Models": "", "Search Models": "",
"Search Prompts": "Rechercher des prompts", "Search Prompts": "Rechercher des prompts",
"Search Results": "",
"Searching the web for '{{searchQuery}}'": "",
"See readme.md for instructions": "Voir readme.md pour les instructions", "See readme.md for instructions": "Voir readme.md pour les instructions",
"See what's new": "Voir les nouveautés", "See what's new": "Voir les nouveautés",
"Seed": "Graine", "Seed": "Graine",
...@@ -388,7 +394,7 @@ ...@@ -388,7 +394,7 @@
"Set Model": "Configurer le modèle", "Set Model": "Configurer le modèle",
"Set reranking model (e.g. {{model}})": "Définir le modèle de reranking (par exemple {{model}})", "Set reranking model (e.g. {{model}})": "Définir le modèle de reranking (par exemple {{model}})",
"Set Steps": "Définir les étapes", "Set Steps": "Définir les étapes",
"Set Title Auto-Generation Model": "Définir le modèle de génération automatique de titre", "Set Task Model": "",
"Set Voice": "Définir la voix", "Set Voice": "Définir la voix",
"Settings": "Paramètres", "Settings": "Paramètres",
"Settings saved successfully!": "Paramètres enregistrés avec succès !", "Settings saved successfully!": "Paramètres enregistrés avec succès !",
...@@ -473,6 +479,8 @@ ...@@ -473,6 +479,8 @@
"Web": "Web", "Web": "Web",
"Web Loader Settings": "Paramètres du chargeur Web", "Web Loader Settings": "Paramètres du chargeur Web",
"Web Params": "Paramètres Web", "Web Params": "Paramètres Web",
"Web Search Disabled": "",
"Web Search Enabled": "",
"Webhook URL": "URL Webhook", "Webhook URL": "URL Webhook",
"WebUI Add-ons": "Add-ons WebUI", "WebUI Add-ons": "Add-ons WebUI",
"WebUI Settings": "Paramètres WebUI", "WebUI Settings": "Paramètres WebUI",
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
"{{modelName}} is thinking...": "{{modelName}} réfléchit...", "{{modelName}} is thinking...": "{{modelName}} réfléchit...",
"{{user}}'s Chats": "Chats de {{user}}", "{{user}}'s Chats": "Chats de {{user}}",
"{{webUIName}} Backend Required": "Backend {{webUIName}} requis", "{{webUIName}} Backend Required": "Backend {{webUIName}} requis",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "",
"a user": "un utilisateur", "a user": "un utilisateur",
"About": "À Propos", "About": "À Propos",
"Account": "Compte", "Account": "Compte",
...@@ -210,6 +211,7 @@ ...@@ -210,6 +211,7 @@
"Full Screen Mode": "Mode plein écran", "Full Screen Mode": "Mode plein écran",
"General": "Général", "General": "Général",
"General Settings": "Paramètres Généraux", "General Settings": "Paramètres Généraux",
"Generating search query": "",
"Generation Info": "Informations de la Génération", "Generation Info": "Informations de la Génération",
"Good Response": "Bonne Réponse", "Good Response": "Bonne Réponse",
"h:mm a": "h:mm a", "h:mm a": "h:mm a",
...@@ -284,6 +286,8 @@ ...@@ -284,6 +286,8 @@
"New Chat": "Nouveau chat", "New Chat": "Nouveau chat",
"New Password": "Nouveau mot de passe", "New Password": "Nouveau mot de passe",
"No results found": "Aucun résultat", "No results found": "Aucun résultat",
"No search query generated": "",
"No search results found": "",
"No source available": "Aucune source disponible", "No source available": "Aucune source disponible",
"Not factually correct": "Faits incorrects", "Not factually correct": "Faits incorrects",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Note : Si vous définissez un score minimum, la recherche ne renverra que les documents ayant un score supérieur ou égal au score minimum.", "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Note : Si vous définissez un score minimum, la recherche ne renverra que les documents ayant un score supérieur ou égal au score minimum.",
...@@ -367,6 +371,8 @@ ...@@ -367,6 +371,8 @@
"Search Documents": "Rechercher des Documents", "Search Documents": "Rechercher des Documents",
"Search Models": "", "Search Models": "",
"Search Prompts": "Rechercher des Prompts", "Search Prompts": "Rechercher des Prompts",
"Search Results": "",
"Searching the web for '{{searchQuery}}'": "",
"See readme.md for instructions": "Voir readme.md pour les instructions", "See readme.md for instructions": "Voir readme.md pour les instructions",
"See what's new": "Voir les nouveautés", "See what's new": "Voir les nouveautés",
"Seed": "Graine", "Seed": "Graine",
...@@ -388,7 +394,7 @@ ...@@ -388,7 +394,7 @@
"Set Model": "Définir le Modèle", "Set Model": "Définir le Modèle",
"Set reranking model (e.g. {{model}})": "Définir le modèle de reclassement (p. ex. {{model}})", "Set reranking model (e.g. {{model}})": "Définir le modèle de reclassement (p. ex. {{model}})",
"Set Steps": "Définir les Étapes", "Set Steps": "Définir les Étapes",
"Set Title Auto-Generation Model": "Définir le Modèle de Génération Automatique de Titre", "Set Task Model": "",
"Set Voice": "Définir la Voix", "Set Voice": "Définir la Voix",
"Settings": "Paramètres", "Settings": "Paramètres",
"Settings saved successfully!": "Paramètres enregistrés avec succès !", "Settings saved successfully!": "Paramètres enregistrés avec succès !",
...@@ -473,6 +479,8 @@ ...@@ -473,6 +479,8 @@
"Web": "Web", "Web": "Web",
"Web Loader Settings": "Paramètres du Chargeur Web", "Web Loader Settings": "Paramètres du Chargeur Web",
"Web Params": "Paramètres Web", "Web Params": "Paramètres Web",
"Web Search Disabled": "",
"Web Search Enabled": "",
"Webhook URL": "URL du Webhook", "Webhook URL": "URL du Webhook",
"WebUI Add-ons": "Add-ons WebUI", "WebUI Add-ons": "Add-ons WebUI",
"WebUI Settings": "Paramètres WebUI", "WebUI Settings": "Paramètres WebUI",
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
"{{modelName}} is thinking...": "{{modelName}} חושב...", "{{modelName}} is thinking...": "{{modelName}} חושב...",
"{{user}}'s Chats": "צ'אטים של {{user}}", "{{user}}'s Chats": "צ'אטים של {{user}}",
"{{webUIName}} Backend Required": "נדרש Backend של {{webUIName}}", "{{webUIName}} Backend Required": "נדרש Backend של {{webUIName}}",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "",
"a user": "משתמש", "a user": "משתמש",
"About": "אודות", "About": "אודות",
"Account": "חשבון", "Account": "חשבון",
...@@ -210,6 +211,7 @@ ...@@ -210,6 +211,7 @@
"Full Screen Mode": "מצב מסך מלא", "Full Screen Mode": "מצב מסך מלא",
"General": "כללי", "General": "כללי",
"General Settings": "הגדרות כלליות", "General Settings": "הגדרות כלליות",
"Generating search query": "",
"Generation Info": "מידע על היצירה", "Generation Info": "מידע על היצירה",
"Good Response": "תגובה טובה", "Good Response": "תגובה טובה",
"h:mm a": "h:mm a", "h:mm a": "h:mm a",
...@@ -284,6 +286,8 @@ ...@@ -284,6 +286,8 @@
"New Chat": "צ'אט חדש", "New Chat": "צ'אט חדש",
"New Password": "סיסמה חדשה", "New Password": "סיסמה חדשה",
"No results found": "לא נמצאו תוצאות", "No results found": "לא נמצאו תוצאות",
"No search query generated": "",
"No search results found": "",
"No source available": "אין מקור זמין", "No source available": "אין מקור זמין",
"Not factually correct": "לא נכון מבחינה עובדתית", "Not factually correct": "לא נכון מבחינה עובדתית",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "הערה: אם תקבע ציון מינימלי, החיפוש יחזיר רק מסמכים עם ציון שגבוה או שווה לציון המינימלי.", "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "הערה: אם תקבע ציון מינימלי, החיפוש יחזיר רק מסמכים עם ציון שגבוה או שווה לציון המינימלי.",
...@@ -367,6 +371,8 @@ ...@@ -367,6 +371,8 @@
"Search Documents": "חפש מסמכים", "Search Documents": "חפש מסמכים",
"Search Models": "", "Search Models": "",
"Search Prompts": "חפש פקודות", "Search Prompts": "חפש פקודות",
"Search Results": "",
"Searching the web for '{{searchQuery}}'": "",
"See readme.md for instructions": "ראה את readme.md להוראות", "See readme.md for instructions": "ראה את readme.md להוראות",
"See what's new": "ראה מה חדש", "See what's new": "ראה מה חדש",
"Seed": "זרע", "Seed": "זרע",
...@@ -388,7 +394,7 @@ ...@@ -388,7 +394,7 @@
"Set Model": "הגדר מודל", "Set Model": "הגדר מודל",
"Set reranking model (e.g. {{model}})": "הגדר מודל דירוג מחדש (למשל {{model}})", "Set reranking model (e.g. {{model}})": "הגדר מודל דירוג מחדש (למשל {{model}})",
"Set Steps": "הגדר שלבים", "Set Steps": "הגדר שלבים",
"Set Title Auto-Generation Model": "הגדר מודל יצירת כותרת אוטומטית", "Set Task Model": "",
"Set Voice": "הגדר קול", "Set Voice": "הגדר קול",
"Settings": "הגדרות", "Settings": "הגדרות",
"Settings saved successfully!": "ההגדרות נשמרו בהצלחה!", "Settings saved successfully!": "ההגדרות נשמרו בהצלחה!",
...@@ -473,6 +479,8 @@ ...@@ -473,6 +479,8 @@
"Web": "רשת", "Web": "רשת",
"Web Loader Settings": "הגדרות טעינת אתר", "Web Loader Settings": "הגדרות טעינת אתר",
"Web Params": "פרמטרים Web", "Web Params": "פרמטרים Web",
"Web Search Disabled": "",
"Web Search Enabled": "",
"Webhook URL": "URL Webhook", "Webhook URL": "URL Webhook",
"WebUI Add-ons": "נסיונות WebUI", "WebUI Add-ons": "נסיונות WebUI",
"WebUI Settings": "הגדרות WebUI", "WebUI Settings": "הגדרות WebUI",
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
"{{modelName}} is thinking...": "{{modelName}} सोच रहा है...", "{{modelName}} is thinking...": "{{modelName}} सोच रहा है...",
"{{user}}'s Chats": "{{user}} की चैट", "{{user}}'s Chats": "{{user}} की चैट",
"{{webUIName}} Backend Required": "{{webUIName}} बैकएंड आवश्यक", "{{webUIName}} Backend Required": "{{webUIName}} बैकएंड आवश्यक",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "",
"a user": "एक उपयोगकर्ता", "a user": "एक उपयोगकर्ता",
"About": "हमारे बारे में", "About": "हमारे बारे में",
"Account": "खाता", "Account": "खाता",
...@@ -210,6 +211,7 @@ ...@@ -210,6 +211,7 @@
"Full Screen Mode": "पूर्ण स्क्रीन मोड", "Full Screen Mode": "पूर्ण स्क्रीन मोड",
"General": "सामान्य", "General": "सामान्य",
"General Settings": "सामान्य सेटिंग्स", "General Settings": "सामान्य सेटिंग्स",
"Generating search query": "",
"Generation Info": "जनरेशन की जानकारी", "Generation Info": "जनरेशन की जानकारी",
"Good Response": "अच्छी प्रतिक्रिया", "Good Response": "अच्छी प्रतिक्रिया",
"h:mm a": "h:mm a", "h:mm a": "h:mm a",
...@@ -284,6 +286,8 @@ ...@@ -284,6 +286,8 @@
"New Chat": "नई चैट", "New Chat": "नई चैट",
"New Password": "नया पासवर्ड", "New Password": "नया पासवर्ड",
"No results found": "कोई परिणाम नहीं मिला", "No results found": "कोई परिणाम नहीं मिला",
"No search query generated": "",
"No search results found": "",
"No source available": "कोई स्रोत उपलब्ध नहीं है", "No source available": "कोई स्रोत उपलब्ध नहीं है",
"Not factually correct": "तथ्यात्मक रूप से सही नहीं है", "Not factually correct": "तथ्यात्मक रूप से सही नहीं है",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "ध्यान दें: यदि आप न्यूनतम स्कोर निर्धारित करते हैं, तो खोज केवल न्यूनतम स्कोर से अधिक या उसके बराबर स्कोर वाले दस्तावेज़ वापस लाएगी।", "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "ध्यान दें: यदि आप न्यूनतम स्कोर निर्धारित करते हैं, तो खोज केवल न्यूनतम स्कोर से अधिक या उसके बराबर स्कोर वाले दस्तावेज़ वापस लाएगी।",
...@@ -367,6 +371,8 @@ ...@@ -367,6 +371,8 @@
"Search Documents": "दस्तावेज़ खोजें", "Search Documents": "दस्तावेज़ खोजें",
"Search Models": "", "Search Models": "",
"Search Prompts": "प्रॉम्प्ट खोजें", "Search Prompts": "प्रॉम्प्ट खोजें",
"Search Results": "",
"Searching the web for '{{searchQuery}}'": "",
"See readme.md for instructions": "निर्देशों के लिए readme.md देखें", "See readme.md for instructions": "निर्देशों के लिए readme.md देखें",
"See what's new": "देखें, क्या नया है", "See what's new": "देखें, क्या नया है",
"Seed": "सीड्\u200c", "Seed": "सीड्\u200c",
...@@ -388,7 +394,7 @@ ...@@ -388,7 +394,7 @@
"Set Model": "मॉडल सेट करें", "Set Model": "मॉडल सेट करें",
"Set reranking model (e.g. {{model}})": "रीकरण मॉडल सेट करें (उदाहरण: {{model}})", "Set reranking model (e.g. {{model}})": "रीकरण मॉडल सेट करें (उदाहरण: {{model}})",
"Set Steps": "चरण निर्धारित करें", "Set Steps": "चरण निर्धारित करें",
"Set Title Auto-Generation Model": "शीर्षक ऑटो-जेनरेशन मॉडल सेट करें", "Set Task Model": "",
"Set Voice": "आवाज सेट करें", "Set Voice": "आवाज सेट करें",
"Settings": "सेटिंग्स", "Settings": "सेटिंग्स",
"Settings saved successfully!": "सेटिंग्स सफलतापूर्वक सहेजी गईं!", "Settings saved successfully!": "सेटिंग्स सफलतापूर्वक सहेजी गईं!",
...@@ -473,6 +479,8 @@ ...@@ -473,6 +479,8 @@
"Web": "वेब", "Web": "वेब",
"Web Loader Settings": "वेब लोडर सेटिंग्स", "Web Loader Settings": "वेब लोडर सेटिंग्स",
"Web Params": "वेब पैरामीटर", "Web Params": "वेब पैरामीटर",
"Web Search Disabled": "",
"Web Search Enabled": "",
"Webhook URL": "वेबहुक URL", "Webhook URL": "वेबहुक URL",
"WebUI Add-ons": "वेबयू ऐड-ons", "WebUI Add-ons": "वेबयू ऐड-ons",
"WebUI Settings": "WebUI सेटिंग्स", "WebUI Settings": "WebUI सेटिंग्स",
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
"{{modelName}} is thinking...": "{{modelName}} razmišlja...", "{{modelName}} is thinking...": "{{modelName}} razmišlja...",
"{{user}}'s Chats": "Razgovori korisnika {{user}}", "{{user}}'s Chats": "Razgovori korisnika {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Backend je potreban", "{{webUIName}} Backend Required": "{{webUIName}} Backend je potreban",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "",
"a user": "korisnik", "a user": "korisnik",
"About": "O aplikaciji", "About": "O aplikaciji",
"Account": "Račun", "Account": "Račun",
...@@ -210,6 +211,7 @@ ...@@ -210,6 +211,7 @@
"Full Screen Mode": "Način cijelog zaslona", "Full Screen Mode": "Način cijelog zaslona",
"General": "Općenito", "General": "Općenito",
"General Settings": "Opće postavke", "General Settings": "Opće postavke",
"Generating search query": "",
"Generation Info": "Informacije o generaciji", "Generation Info": "Informacije o generaciji",
"Good Response": "Dobar odgovor", "Good Response": "Dobar odgovor",
"h:mm a": "h:mm a", "h:mm a": "h:mm a",
...@@ -284,6 +286,8 @@ ...@@ -284,6 +286,8 @@
"New Chat": "Novi razgovor", "New Chat": "Novi razgovor",
"New Password": "Nova lozinka", "New Password": "Nova lozinka",
"No results found": "Nema rezultata", "No results found": "Nema rezultata",
"No search query generated": "",
"No search results found": "",
"No source available": "Nema dostupnog izvora", "No source available": "Nema dostupnog izvora",
"Not factually correct": "Nije činjenično točno", "Not factually correct": "Nije činjenično točno",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Napomena: Ako postavite minimalnu ocjenu, pretraga će vratiti samo dokumente s ocjenom većom ili jednakom minimalnoj ocjeni.", "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Napomena: Ako postavite minimalnu ocjenu, pretraga će vratiti samo dokumente s ocjenom većom ili jednakom minimalnoj ocjeni.",
...@@ -367,6 +371,8 @@ ...@@ -367,6 +371,8 @@
"Search Documents": "Pretraga dokumenata", "Search Documents": "Pretraga dokumenata",
"Search Models": "", "Search Models": "",
"Search Prompts": "Pretraga prompta", "Search Prompts": "Pretraga prompta",
"Search Results": "",
"Searching the web for '{{searchQuery}}'": "",
"See readme.md for instructions": "Pogledajte readme.md za upute", "See readme.md for instructions": "Pogledajte readme.md za upute",
"See what's new": "Pogledajte što je novo", "See what's new": "Pogledajte što je novo",
"Seed": "Sjeme", "Seed": "Sjeme",
...@@ -388,7 +394,7 @@ ...@@ -388,7 +394,7 @@
"Set Model": "Postavi model", "Set Model": "Postavi model",
"Set reranking model (e.g. {{model}})": "Postavi model za ponovno rangiranje (npr. {{model}})", "Set reranking model (e.g. {{model}})": "Postavi model za ponovno rangiranje (npr. {{model}})",
"Set Steps": "Postavi korake", "Set Steps": "Postavi korake",
"Set Title Auto-Generation Model": "Postavi model za automatsko generiranje naslova", "Set Task Model": "",
"Set Voice": "Postavi glas", "Set Voice": "Postavi glas",
"Settings": "Postavke", "Settings": "Postavke",
"Settings saved successfully!": "Postavke su uspješno spremljene!", "Settings saved successfully!": "Postavke su uspješno spremljene!",
...@@ -473,6 +479,8 @@ ...@@ -473,6 +479,8 @@
"Web": "Web", "Web": "Web",
"Web Loader Settings": "Postavke web učitavanja", "Web Loader Settings": "Postavke web učitavanja",
"Web Params": "Web parametri", "Web Params": "Web parametri",
"Web Search Disabled": "",
"Web Search Enabled": "",
"Webhook URL": "URL webkuke", "Webhook URL": "URL webkuke",
"WebUI Add-ons": "Dodaci za WebUI", "WebUI Add-ons": "Dodaci za WebUI",
"WebUI Settings": "WebUI postavke", "WebUI Settings": "WebUI postavke",
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
"{{modelName}} is thinking...": "{{modelName}} sta pensando...", "{{modelName}} is thinking...": "{{modelName}} sta pensando...",
"{{user}}'s Chats": "{{user}} Chat", "{{user}}'s Chats": "{{user}} Chat",
"{{webUIName}} Backend Required": "{{webUIName}} Backend richiesto", "{{webUIName}} Backend Required": "{{webUIName}} Backend richiesto",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "",
"a user": "un utente", "a user": "un utente",
"About": "Informazioni", "About": "Informazioni",
"Account": "Account", "Account": "Account",
...@@ -210,6 +211,7 @@ ...@@ -210,6 +211,7 @@
"Full Screen Mode": "Modalità a schermo intero", "Full Screen Mode": "Modalità a schermo intero",
"General": "Generale", "General": "Generale",
"General Settings": "Impostazioni generali", "General Settings": "Impostazioni generali",
"Generating search query": "",
"Generation Info": "Informazioni generazione", "Generation Info": "Informazioni generazione",
"Good Response": "Buona risposta", "Good Response": "Buona risposta",
"h:mm a": "h:mm a", "h:mm a": "h:mm a",
...@@ -284,6 +286,8 @@ ...@@ -284,6 +286,8 @@
"New Chat": "Nuova chat", "New Chat": "Nuova chat",
"New Password": "Nuova password", "New Password": "Nuova password",
"No results found": "Nessun risultato trovato", "No results found": "Nessun risultato trovato",
"No search query generated": "",
"No search results found": "",
"No source available": "Nessuna fonte disponibile", "No source available": "Nessuna fonte disponibile",
"Not factually correct": "Non corretto dal punto di vista fattuale", "Not factually correct": "Non corretto dal punto di vista fattuale",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: se imposti un punteggio minimo, la ricerca restituirà solo i documenti con un punteggio maggiore o uguale al punteggio minimo.", "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: se imposti un punteggio minimo, la ricerca restituirà solo i documenti con un punteggio maggiore o uguale al punteggio minimo.",
...@@ -367,6 +371,8 @@ ...@@ -367,6 +371,8 @@
"Search Documents": "Cerca documenti", "Search Documents": "Cerca documenti",
"Search Models": "", "Search Models": "",
"Search Prompts": "Cerca prompt", "Search Prompts": "Cerca prompt",
"Search Results": "",
"Searching the web for '{{searchQuery}}'": "",
"See readme.md for instructions": "Vedi readme.md per le istruzioni", "See readme.md for instructions": "Vedi readme.md per le istruzioni",
"See what's new": "Guarda le novità", "See what's new": "Guarda le novità",
"Seed": "Seme", "Seed": "Seme",
...@@ -388,7 +394,7 @@ ...@@ -388,7 +394,7 @@
"Set Model": "Imposta modello", "Set Model": "Imposta modello",
"Set reranking model (e.g. {{model}})": "Imposta modello di riclassificazione (ad esempio {{model}})", "Set reranking model (e.g. {{model}})": "Imposta modello di riclassificazione (ad esempio {{model}})",
"Set Steps": "Imposta passaggi", "Set Steps": "Imposta passaggi",
"Set Title Auto-Generation Model": "Imposta modello di generazione automatica del titolo", "Set Task Model": "",
"Set Voice": "Imposta voce", "Set Voice": "Imposta voce",
"Settings": "Impostazioni", "Settings": "Impostazioni",
"Settings saved successfully!": "Impostazioni salvate con successo!", "Settings saved successfully!": "Impostazioni salvate con successo!",
...@@ -473,6 +479,8 @@ ...@@ -473,6 +479,8 @@
"Web": "Web", "Web": "Web",
"Web Loader Settings": "Impostazioni del caricatore Web", "Web Loader Settings": "Impostazioni del caricatore Web",
"Web Params": "Parametri Web", "Web Params": "Parametri Web",
"Web Search Disabled": "",
"Web Search Enabled": "",
"Webhook URL": "URL webhook", "Webhook URL": "URL webhook",
"WebUI Add-ons": "Componenti aggiuntivi WebUI", "WebUI Add-ons": "Componenti aggiuntivi WebUI",
"WebUI Settings": "Impostazioni WebUI", "WebUI Settings": "Impostazioni WebUI",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment