Browse Source

chore: format

Timothy Jaeryang Baek 5 months ago
parent
commit
8aa2d09cee
50 changed files with 416 additions and 51 deletions
  1. 1 1
      backend/open_webui/apps/retrieval/main.py
  2. 0 1
      src/lib/apis/index.ts
  3. 1 2
      src/lib/apis/models/index.ts
  4. 0 1
      src/lib/constants.ts
  5. 9 1
      src/lib/i18n/locales/ar-BH/translation.json
  6. 9 1
      src/lib/i18n/locales/bg-BG/translation.json
  7. 9 1
      src/lib/i18n/locales/bn-BD/translation.json
  8. 9 1
      src/lib/i18n/locales/ca-ES/translation.json
  9. 9 1
      src/lib/i18n/locales/ceb-PH/translation.json
  10. 9 1
      src/lib/i18n/locales/cs-CZ/translation.json
  11. 9 1
      src/lib/i18n/locales/da-DK/translation.json
  12. 9 1
      src/lib/i18n/locales/de-DE/translation.json
  13. 9 1
      src/lib/i18n/locales/dg-DG/translation.json
  14. 9 1
      src/lib/i18n/locales/en-GB/translation.json
  15. 9 1
      src/lib/i18n/locales/en-US/translation.json
  16. 9 1
      src/lib/i18n/locales/es-ES/translation.json
  17. 9 1
      src/lib/i18n/locales/fa-IR/translation.json
  18. 9 1
      src/lib/i18n/locales/fi-FI/translation.json
  19. 9 1
      src/lib/i18n/locales/fr-CA/translation.json
  20. 9 1
      src/lib/i18n/locales/fr-FR/translation.json
  21. 9 1
      src/lib/i18n/locales/he-IL/translation.json
  22. 9 1
      src/lib/i18n/locales/hi-IN/translation.json
  23. 9 1
      src/lib/i18n/locales/hr-HR/translation.json
  24. 9 1
      src/lib/i18n/locales/hu-HU/translation.json
  25. 9 1
      src/lib/i18n/locales/id-ID/translation.json
  26. 9 1
      src/lib/i18n/locales/ie-GA/translation.json
  27. 9 1
      src/lib/i18n/locales/it-IT/translation.json
  28. 9 1
      src/lib/i18n/locales/ja-JP/translation.json
  29. 9 1
      src/lib/i18n/locales/ka-GE/translation.json
  30. 9 1
      src/lib/i18n/locales/ko-KR/translation.json
  31. 9 1
      src/lib/i18n/locales/lt-LT/translation.json
  32. 9 1
      src/lib/i18n/locales/ms-MY/translation.json
  33. 9 1
      src/lib/i18n/locales/nb-NO/translation.json
  34. 9 1
      src/lib/i18n/locales/nl-NL/translation.json
  35. 9 1
      src/lib/i18n/locales/pa-IN/translation.json
  36. 9 1
      src/lib/i18n/locales/pl-PL/translation.json
  37. 9 1
      src/lib/i18n/locales/pt-BR/translation.json
  38. 9 1
      src/lib/i18n/locales/pt-PT/translation.json
  39. 9 1
      src/lib/i18n/locales/ro-RO/translation.json
  40. 9 1
      src/lib/i18n/locales/ru-RU/translation.json
  41. 9 1
      src/lib/i18n/locales/sr-RS/translation.json
  42. 9 1
      src/lib/i18n/locales/sv-SE/translation.json
  43. 9 1
      src/lib/i18n/locales/th-TH/translation.json
  44. 9 1
      src/lib/i18n/locales/tk-TW/translation.json
  45. 9 1
      src/lib/i18n/locales/tr-TR/translation.json
  46. 9 1
      src/lib/i18n/locales/uk-UA/translation.json
  47. 9 1
      src/lib/i18n/locales/ur-PK/translation.json
  48. 9 1
      src/lib/i18n/locales/vi-VN/translation.json
  49. 9 1
      src/lib/i18n/locales/zh-CN/translation.json
  50. 9 1
      src/lib/i18n/locales/zh-TW/translation.json

+ 1 - 1
backend/open_webui/apps/retrieval/main.py

@@ -1285,7 +1285,7 @@ def process_web_search(form_data: SearchForm, user=Depends(get_verified_user)):
         loader = get_web_loader(
         loader = get_web_loader(
             urls,
             urls,
             verify_ssl=app.state.config.ENABLE_RAG_WEB_LOADER_SSL_VERIFICATION,
             verify_ssl=app.state.config.ENABLE_RAG_WEB_LOADER_SSL_VERIFICATION,
-            requests_per_second=app.state.config.RAG_WEB_SEARCH_CONCURRENT_REQUESTS
+            requests_per_second=app.state.config.RAG_WEB_SEARCH_CONCURRENT_REQUESTS,
         )
         )
         docs = loader.aload()
         docs = loader.aload()
 
 

+ 0 - 1
src/lib/apis/index.ts

@@ -387,7 +387,6 @@ export const generateQueries = async (
 		throw error;
 		throw error;
 	}
 	}
 
 
-
 	try {
 	try {
 		// Step 1: Safely extract the response string
 		// Step 1: Safely extract the response string
 		const response = res?.choices[0]?.message?.content ?? '';
 		const response = res?.choices[0]?.message?.content ?? '';

+ 1 - 2
src/lib/apis/models/index.ts

@@ -232,7 +232,6 @@ export const deleteModelById = async (token: string, id: string) => {
 	return res;
 	return res;
 };
 };
 
 
-
 export const deleteAllModels = async (token: string) => {
 export const deleteAllModels = async (token: string) => {
 	let error = null;
 	let error = null;
 
 
@@ -263,4 +262,4 @@ export const deleteAllModels = async (token: string) => {
 	}
 	}
 
 
 	return res;
 	return res;
-};
+};

+ 0 - 1
src/lib/constants.ts

@@ -95,7 +95,6 @@ export const SUPPORTED_FILE_EXTENSIONS = [
 	'msg'
 	'msg'
 ];
 ];
 
 
-
 export const PASTED_TEXT_CHARACTER_LIMIT = 1000;
 export const PASTED_TEXT_CHARACTER_LIMIT = 1000;
 
 
 // Source: https://kit.svelte.dev/docs/modules#$env-static-public
 // Source: https://kit.svelte.dev/docs/modules#$env-static-public

+ 9 - 1
src/lib/i18n/locales/ar-BH/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "المعلمات المتقدمة",
 	"Advanced Params": "المعلمات المتقدمة",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "جميع الملفات",
 	"All Documents": "جميع الملفات",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "يستطيع حذف المحادثات",
 	"Allow Chat Deletion": "يستطيع حذف المحادثات",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "حذف",
 	"Delete": "حذف",
 	"Delete a model": "حذف الموديل",
 	"Delete a model": "حذف الموديل",
 	"Delete All Chats": "حذف جميع الدردشات",
 	"Delete All Chats": "حذف جميع الدردشات",
+	"Delete All Models": "",
 	"Delete chat": "حذف المحادثه",
 	"Delete chat": "حذف المحادثه",
 	"Delete Chat": "حذف المحادثه.",
 	"Delete Chat": "حذف المحادثه.",
 	"Delete chat?": "",
 	"Delete chat?": "",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "",
 	"Display Emoji in Call": "",
 	"Display the username instead of You in the Chat": "اعرض اسم المستخدم بدلاً منك في الدردشة",
 	"Display the username instead of You in the Chat": "اعرض اسم المستخدم بدلاً منك في الدردشة",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
@@ -288,12 +291,14 @@
 	"Embedding Model": "نموذج التضمين",
 	"Embedding Model": "نموذج التضمين",
 	"Embedding Model Engine": "تضمين محرك النموذج",
 	"Embedding Model Engine": "تضمين محرك النموذج",
 	"Embedding model set to \"{{embedding_model}}\"": "تم تعيين نموذج التضمين على \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "تم تعيين نموذج التضمين على \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "تمكين مشاركة المجتمع",
 	"Enable Community Sharing": "تمكين مشاركة المجتمع",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "تفعيل عمليات التسجيل الجديدة",
 	"Enable New Sign Ups": "تفعيل عمليات التسجيل الجديدة",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "تمكين بحث الويب",
 	"Enable Web Search": "تمكين بحث الويب",
 	"Enable Web Search Query Generation": "",
 	"Enable Web Search Query Generation": "",
@@ -631,6 +636,7 @@
 	"Overview": "",
 	"Overview": "",
 	"page": "",
 	"page": "",
 	"Password": "الباسورد",
 	"Password": "الباسورد",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "PDF ملف (.pdf)",
 	"PDF document (.pdf)": "PDF ملف (.pdf)",
 	"PDF Extract Images (OCR)": "PDF أستخرج الصور (OCR)",
 	"PDF Extract Images (OCR)": "PDF أستخرج الصور (OCR)",
 	"pending": "قيد الانتظار",
 	"pending": "قيد الانتظار",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com \"{{searchValue}}\" أسحب من ",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com \"{{searchValue}}\" أسحب من ",
 	"Pull a model from Ollama.com": "Ollama.com سحب الموديل من ",
 	"Pull a model from Ollama.com": "Ollama.com سحب الموديل من ",
+	"Query Generation Prompt": "",
 	"Query Params": "Query Params",
 	"Query Params": "Query Params",
 	"RAG Template": "RAG تنمبلت",
 	"RAG Template": "RAG تنمبلت",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "نماذج البحث",
 	"Search Models": "نماذج البحث",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "أبحث حث",
 	"Search Prompts": "أبحث حث",
-	"Search Query Generation Prompt": "",
 	"Search Result Count": "عدد نتائج البحث",
 	"Search Result Count": "عدد نتائج البحث",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "",
 	"Search Tools": "",
@@ -857,6 +863,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
 	"This will delete": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "شرح شامل",
 	"Thorough explanation": "شرح شامل",
 	"Tika": "",
 	"Tika": "",

+ 9 - 1
src/lib/i18n/locales/bg-BG/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Разширени параметри",
 	"Advanced Params": "Разширени параметри",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "Всички Документи",
 	"All Documents": "Всички Документи",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Позволи Изтриване на Чат",
 	"Allow Chat Deletion": "Позволи Изтриване на Чат",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "Изтриване",
 	"Delete": "Изтриване",
 	"Delete a model": "Изтриване на модел",
 	"Delete a model": "Изтриване на модел",
 	"Delete All Chats": "Изтриване на всички чатове",
 	"Delete All Chats": "Изтриване на всички чатове",
+	"Delete All Models": "",
 	"Delete chat": "Изтриване на чат",
 	"Delete chat": "Изтриване на чат",
 	"Delete Chat": "Изтриване на Чат",
 	"Delete Chat": "Изтриване на Чат",
 	"Delete chat?": "",
 	"Delete chat?": "",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "",
 	"Display Emoji in Call": "",
 	"Display the username instead of You in the Chat": "Показване на потребителското име вместо Вие в чата",
 	"Display the username instead of You in the Chat": "Показване на потребителското име вместо Вие в чата",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Модел за вграждане",
 	"Embedding Model": "Модел за вграждане",
 	"Embedding Model Engine": "Модел за вграждане",
 	"Embedding Model Engine": "Модел за вграждане",
 	"Embedding model set to \"{{embedding_model}}\"": "Модел за вграждане е настроен на \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Модел за вграждане е настроен на \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Разрешаване на споделяне в общност",
 	"Enable Community Sharing": "Разрешаване на споделяне в общност",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Вклюване на Нови Потребители",
 	"Enable New Sign Ups": "Вклюване на Нови Потребители",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "Разрешаване на търсене в уеб",
 	"Enable Web Search": "Разрешаване на търсене в уеб",
 	"Enable Web Search Query Generation": "",
 	"Enable Web Search Query Generation": "",
@@ -631,6 +636,7 @@
 	"Overview": "",
 	"Overview": "",
 	"page": "",
 	"page": "",
 	"Password": "Парола",
 	"Password": "Парола",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "PDF документ (.pdf)",
 	"PDF document (.pdf)": "PDF документ (.pdf)",
 	"PDF Extract Images (OCR)": "PDF Extract Images (OCR)",
 	"PDF Extract Images (OCR)": "PDF Extract Images (OCR)",
 	"pending": "в очакване",
 	"pending": "в очакване",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Извади \"{{searchValue}}\" от Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Извади \"{{searchValue}}\" от Ollama.com",
 	"Pull a model from Ollama.com": "Издърпайте модел от Ollama.com",
 	"Pull a model from Ollama.com": "Издърпайте модел от Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "Query Параметри",
 	"Query Params": "Query Параметри",
 	"RAG Template": "RAG Шаблон",
 	"RAG Template": "RAG Шаблон",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "Търсене на модели",
 	"Search Models": "Търсене на модели",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "Търси Промптове",
 	"Search Prompts": "Търси Промптове",
-	"Search Query Generation Prompt": "",
 	"Search Result Count": "Брой резултати от търсенето",
 	"Search Result Count": "Брой резултати от търсенето",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "",
 	"Search Tools": "",
@@ -853,6 +859,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
 	"This will delete": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Това е подробно описание.",
 	"Thorough explanation": "Това е подробно описание.",
 	"Tika": "",
 	"Tika": "",

+ 9 - 1
src/lib/i18n/locales/bn-BD/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "অ্যাডভান্সড প্যারাম",
 	"Advanced Params": "অ্যাডভান্সড প্যারাম",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "সব ডকুমেন্ট",
 	"All Documents": "সব ডকুমেন্ট",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "চ্যাট ডিলিট করতে দিন",
 	"Allow Chat Deletion": "চ্যাট ডিলিট করতে দিন",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "মুছে ফেলুন",
 	"Delete": "মুছে ফেলুন",
 	"Delete a model": "একটি মডেল মুছে ফেলুন",
 	"Delete a model": "একটি মডেল মুছে ফেলুন",
 	"Delete All Chats": "সব চ্যাট মুছে ফেলুন",
 	"Delete All Chats": "সব চ্যাট মুছে ফেলুন",
+	"Delete All Models": "",
 	"Delete chat": "চ্যাট মুছে ফেলুন",
 	"Delete chat": "চ্যাট মুছে ফেলুন",
 	"Delete Chat": "চ্যাট মুছে ফেলুন",
 	"Delete Chat": "চ্যাট মুছে ফেলুন",
 	"Delete chat?": "",
 	"Delete chat?": "",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "",
 	"Display Emoji in Call": "",
 	"Display the username instead of You in the Chat": "চ্যাটে 'আপনি'-র পরবর্তে ইউজারনেম দেখান",
 	"Display the username instead of You in the Chat": "চ্যাটে 'আপনি'-র পরবর্তে ইউজারনেম দেখান",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
@@ -288,12 +291,14 @@
 	"Embedding Model": "ইমেজ ইমেবডিং মডেল",
 	"Embedding Model": "ইমেজ ইমেবডিং মডেল",
 	"Embedding Model Engine": "ইমেজ ইমেবডিং মডেল ইঞ্জিন",
 	"Embedding Model Engine": "ইমেজ ইমেবডিং মডেল ইঞ্জিন",
 	"Embedding model set to \"{{embedding_model}}\"": "ইমেজ ইমেবডিং মডেল সেট করা হয়েছে - \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "ইমেজ ইমেবডিং মডেল সেট করা হয়েছে - \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "সম্প্রদায় শেয়ারকরণ সক্ষম করুন",
 	"Enable Community Sharing": "সম্প্রদায় শেয়ারকরণ সক্ষম করুন",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "নতুন সাইনআপ চালু করুন",
 	"Enable New Sign Ups": "নতুন সাইনআপ চালু করুন",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "ওয়েব অনুসন্ধান সক্ষম করুন",
 	"Enable Web Search": "ওয়েব অনুসন্ধান সক্ষম করুন",
 	"Enable Web Search Query Generation": "",
 	"Enable Web Search Query Generation": "",
@@ -631,6 +636,7 @@
 	"Overview": "",
 	"Overview": "",
 	"page": "",
 	"page": "",
 	"Password": "পাসওয়ার্ড",
 	"Password": "পাসওয়ার্ড",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "PDF ডকুমেন্ট (.pdf)",
 	"PDF document (.pdf)": "PDF ডকুমেন্ট (.pdf)",
 	"PDF Extract Images (OCR)": "পিডিএফ এর ছবি থেকে লেখা বের করুন (OCR)",
 	"PDF Extract Images (OCR)": "পিডিএফ এর ছবি থেকে লেখা বের করুন (OCR)",
 	"pending": "অপেক্ষমান",
 	"pending": "অপেক্ষমান",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com থেকে \"{{searchValue}}\" টানুন",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com থেকে \"{{searchValue}}\" টানুন",
 	"Pull a model from Ollama.com": "Ollama.com থেকে একটি টেনে আনুন আনুন",
 	"Pull a model from Ollama.com": "Ollama.com থেকে একটি টেনে আনুন আনুন",
+	"Query Generation Prompt": "",
 	"Query Params": "Query প্যারামিটারসমূহ",
 	"Query Params": "Query প্যারামিটারসমূহ",
 	"RAG Template": "RAG টেম্পলেট",
 	"RAG Template": "RAG টেম্পলেট",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "অনুসন্ধান মডেল",
 	"Search Models": "অনুসন্ধান মডেল",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "প্রম্পটসমূহ অনুসন্ধান করুন",
 	"Search Prompts": "প্রম্পটসমূহ অনুসন্ধান করুন",
-	"Search Query Generation Prompt": "",
 	"Search Result Count": "অনুসন্ধানের ফলাফল গণনা",
 	"Search Result Count": "অনুসন্ধানের ফলাফল গণনা",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "",
 	"Search Tools": "",
@@ -853,6 +859,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
 	"This will delete": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "পুঙ্খানুপুঙ্খ ব্যাখ্যা",
 	"Thorough explanation": "পুঙ্খানুপুঙ্খ ব্যাখ্যা",
 	"Tika": "",
 	"Tika": "",

+ 9 - 1
src/lib/i18n/locales/ca-ES/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Paràmetres avançats",
 	"Advanced Params": "Paràmetres avançats",
 	"All chats": "Tots els xats",
 	"All chats": "Tots els xats",
 	"All Documents": "Tots els documents",
 	"All Documents": "Tots els documents",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Permetre la supressió del xat",
 	"Allow Chat Deletion": "Permetre la supressió del xat",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "Eliminar",
 	"Delete": "Eliminar",
 	"Delete a model": "Eliminar un model",
 	"Delete a model": "Eliminar un model",
 	"Delete All Chats": "Eliminar tots els xats",
 	"Delete All Chats": "Eliminar tots els xats",
+	"Delete All Models": "",
 	"Delete chat": "Eliminar xat",
 	"Delete chat": "Eliminar xat",
 	"Delete Chat": "Eliminar xat",
 	"Delete Chat": "Eliminar xat",
 	"Delete chat?": "Eliminar el xat?",
 	"Delete chat?": "Eliminar el xat?",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "Mostrar emojis a la trucada",
 	"Display Emoji in Call": "Mostrar emojis a la trucada",
 	"Display the username instead of You in the Chat": "Mostrar el nom d'usuari en lloc de 'Tu' al xat",
 	"Display the username instead of You in the Chat": "Mostrar el nom d'usuari en lloc de 'Tu' al xat",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "Aprofundir en el coneixement",
 	"Dive into knowledge": "Aprofundir en el coneixement",
 	"Do not install functions from sources you do not fully trust.": "No instal·lis funcions de fonts en què no confiïs plenament.",
 	"Do not install functions from sources you do not fully trust.": "No instal·lis funcions de fonts en què no confiïs plenament.",
 	"Do not install tools from sources you do not fully trust.": "No instal·lis eines de fonts en què no confiïs plenament.",
 	"Do not install tools from sources you do not fully trust.": "No instal·lis eines de fonts en què no confiïs plenament.",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Model d'incrustació",
 	"Embedding Model": "Model d'incrustació",
 	"Embedding Model Engine": "Motor de model d'incrustació",
 	"Embedding Model Engine": "Motor de model d'incrustació",
 	"Embedding model set to \"{{embedding_model}}\"": "Model d'incrustació configurat a \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Model d'incrustació configurat a \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Activar l'ús compartit amb la comunitat",
 	"Enable Community Sharing": "Activar l'ús compartit amb la comunitat",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Activar el bloqueig de memòria (mlock) per evitar que les dades del model s'intercanviïn fora de la memòria RAM. Aquesta opció bloqueja el conjunt de pàgines de treball del model a la memòria RAM, assegurant-se que no s'intercanviaran al disc. Això pot ajudar a mantenir el rendiment evitant errors de pàgina i garantint un accés ràpid a les dades.",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Activar el bloqueig de memòria (mlock) per evitar que les dades del model s'intercanviïn fora de la memòria RAM. Aquesta opció bloqueja el conjunt de pàgines de treball del model a la memòria RAM, assegurant-se que no s'intercanviaran al disc. Això pot ajudar a mantenir el rendiment evitant errors de pàgina i garantint un accés ràpid a les dades.",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "Activar l'assignació de memòria (mmap) per carregar les dades del model. Aquesta opció permet que el sistema utilitzi l'emmagatzematge en disc com a extensió de la memòria RAM tractant els fitxers de disc com si estiguessin a la memòria RAM. Això pot millorar el rendiment del model permetent un accés més ràpid a les dades. Tanmateix, és possible que no funcioni correctament amb tots els sistemes i pot consumir una quantitat important d'espai en disc.",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "Activar l'assignació de memòria (mmap) per carregar les dades del model. Aquesta opció permet que el sistema utilitzi l'emmagatzematge en disc com a extensió de la memòria RAM tractant els fitxers de disc com si estiguessin a la memòria RAM. Això pot millorar el rendiment del model permetent un accés més ràpid a les dades. Tanmateix, és possible que no funcioni correctament amb tots els sistemes i pot consumir una quantitat important d'espai en disc.",
 	"Enable Message Rating": "Permetre la qualificació de missatges",
 	"Enable Message Rating": "Permetre la qualificació de missatges",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Activar el mostreig de Mirostat per controlar la perplexitat. (Per defecte: 0, 0 = Inhabilitat, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Activar el mostreig de Mirostat per controlar la perplexitat. (Per defecte: 0, 0 = Inhabilitat, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable New Sign Ups": "Permetre nous registres",
 	"Enable New Sign Ups": "Permetre nous registres",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "Activar la generació d'etiquetes",
 	"Enable Tags Generation": "Activar la generació d'etiquetes",
 	"Enable Web Search": "Activar la cerca web",
 	"Enable Web Search": "Activar la cerca web",
 	"Enable Web Search Query Generation": "Activa la generació de consultes de cerca web",
 	"Enable Web Search Query Generation": "Activa la generació de consultes de cerca web",
@@ -631,6 +636,7 @@
 	"Overview": "Vista general",
 	"Overview": "Vista general",
 	"page": "pàgina",
 	"page": "pàgina",
 	"Password": "Contrasenya",
 	"Password": "Contrasenya",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "Document PDF (.pdf)",
 	"PDF document (.pdf)": "Document PDF (.pdf)",
 	"PDF Extract Images (OCR)": "Extreu imatges del PDF (OCR)",
 	"PDF Extract Images (OCR)": "Extreu imatges del PDF (OCR)",
 	"pending": "pendent",
 	"pending": "pendent",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Obtenir \"{{searchValue}}\" de Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Obtenir \"{{searchValue}}\" de Ollama.com",
 	"Pull a model from Ollama.com": "Obtenir un model d'Ollama.com",
 	"Pull a model from Ollama.com": "Obtenir un model d'Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "Paràmetres de consulta",
 	"Query Params": "Paràmetres de consulta",
 	"RAG Template": "Plantilla RAG",
 	"RAG Template": "Plantilla RAG",
 	"Rating": "Valoració",
 	"Rating": "Valoració",
@@ -725,7 +732,6 @@
 	"Search Models": "Cercar models",
 	"Search Models": "Cercar models",
 	"Search options": "Opcions de cerca",
 	"Search options": "Opcions de cerca",
 	"Search Prompts": "Cercar indicacions",
 	"Search Prompts": "Cercar indicacions",
-	"Search Query Generation Prompt": "Indicació de cerca de generació de consultes",
 	"Search Result Count": "Recompte de resultats de cerca",
 	"Search Result Count": "Recompte de resultats de cerca",
 	"Search the web": "Cercar la web",
 	"Search the web": "Cercar la web",
 	"Search Tools": "Cercar eines",
 	"Search Tools": "Cercar eines",
@@ -854,6 +860,8 @@
 	"This response was generated by \"{{model}}\"": "Aquesta resposta l'ha generat el model \"{{model}}\"",
 	"This response was generated by \"{{model}}\"": "Aquesta resposta l'ha generat el model \"{{model}}\"",
 	"This will delete": "Això eliminarà",
 	"This will delete": "Això eliminarà",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Això eliminarà <strong>{{NAME}}</strong> i <strong>tots els continguts</strong>.",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Això eliminarà <strong>{{NAME}}</strong> i <strong>tots els continguts</strong>.",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Això restablirà la base de coneixement i sincronitzarà tots els fitxers. Vols continuar?",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Això restablirà la base de coneixement i sincronitzarà tots els fitxers. Vols continuar?",
 	"Thorough explanation": "Explicació en detall",
 	"Thorough explanation": "Explicació en detall",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 9 - 1
src/lib/i18n/locales/ceb-PH/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "",
 	"Advanced Params": "",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "",
 	"All Documents": "",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Tugoti nga mapapas ang mga chat",
 	"Allow Chat Deletion": "Tugoti nga mapapas ang mga chat",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "",
 	"Delete": "",
 	"Delete a model": "Pagtangtang sa usa ka template",
 	"Delete a model": "Pagtangtang sa usa ka template",
 	"Delete All Chats": "",
 	"Delete All Chats": "",
+	"Delete All Models": "",
 	"Delete chat": "Pagtangtang sa panaghisgot",
 	"Delete chat": "Pagtangtang sa panaghisgot",
 	"Delete Chat": "",
 	"Delete Chat": "",
 	"Delete chat?": "",
 	"Delete chat?": "",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "",
 	"Display Emoji in Call": "",
 	"Display the username instead of You in the Chat": "Ipakita ang username imbes nga 'Ikaw' sa Panaghisgutan",
 	"Display the username instead of You in the Chat": "Ipakita ang username imbes nga 'Ikaw' sa Panaghisgutan",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
@@ -288,12 +291,14 @@
 	"Embedding Model": "",
 	"Embedding Model": "",
 	"Embedding Model Engine": "",
 	"Embedding Model Engine": "",
 	"Embedding model set to \"{{embedding_model}}\"": "",
 	"Embedding model set to \"{{embedding_model}}\"": "",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "",
 	"Enable Community Sharing": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "I-enable ang bag-ong mga rehistro",
 	"Enable New Sign Ups": "I-enable ang bag-ong mga rehistro",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "",
 	"Enable Web Search": "",
 	"Enable Web Search Query Generation": "",
 	"Enable Web Search Query Generation": "",
@@ -631,6 +636,7 @@
 	"Overview": "",
 	"Overview": "",
 	"page": "",
 	"page": "",
 	"Password": "Password",
 	"Password": "Password",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "",
 	"PDF document (.pdf)": "",
 	"PDF Extract Images (OCR)": "PDF Image Extraction (OCR)",
 	"PDF Extract Images (OCR)": "PDF Image Extraction (OCR)",
 	"pending": "gipugngan",
 	"pending": "gipugngan",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "Pagkuha ug template gikan sa Ollama.com",
 	"Pull a model from Ollama.com": "Pagkuha ug template gikan sa Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "Mga parameter sa pangutana",
 	"Query Params": "Mga parameter sa pangutana",
 	"RAG Template": "RAG nga modelo",
 	"RAG Template": "RAG nga modelo",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "",
 	"Search Models": "",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "Pangitaa ang mga prompt",
 	"Search Prompts": "Pangitaa ang mga prompt",
-	"Search Query Generation Prompt": "",
 	"Search Result Count": "",
 	"Search Result Count": "",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "",
 	"Search Tools": "",
@@ -853,6 +859,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
 	"This will delete": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "",
 	"Thorough explanation": "",
 	"Tika": "",
 	"Tika": "",

+ 9 - 1
src/lib/i18n/locales/cs-CZ/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Pokročilé parametry",
 	"Advanced Params": "Pokročilé parametry",
 	"All chats": "Všechny chaty",
 	"All chats": "Všechny chaty",
 	"All Documents": "Všechny dokumenty",
 	"All Documents": "Všechny dokumenty",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Povolit odstranění chatu",
 	"Allow Chat Deletion": "Povolit odstranění chatu",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "Smazat",
 	"Delete": "Smazat",
 	"Delete a model": "Odstranit model.",
 	"Delete a model": "Odstranit model.",
 	"Delete All Chats": "Odstranit všechny konverzace",
 	"Delete All Chats": "Odstranit všechny konverzace",
+	"Delete All Models": "",
 	"Delete chat": "Smazat chat",
 	"Delete chat": "Smazat chat",
 	"Delete Chat": "Smazat chat",
 	"Delete Chat": "Smazat chat",
 	"Delete chat?": "Smazat konverzaci?",
 	"Delete chat?": "Smazat konverzaci?",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "Zobrazení emoji během hovoru",
 	"Display Emoji in Call": "Zobrazení emoji během hovoru",
 	"Display the username instead of You in the Chat": "Zobrazit uživatelské jméno místo \"Vás\" v chatu",
 	"Display the username instead of You in the Chat": "Zobrazit uživatelské jméno místo \"Vás\" v chatu",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "Neinstalujte funkce ze zdrojů, kterým plně nedůvěřujete.",
 	"Do not install functions from sources you do not fully trust.": "Neinstalujte funkce ze zdrojů, kterým plně nedůvěřujete.",
 	"Do not install tools from sources you do not fully trust.": "Neinstalujte nástroje ze zdrojů, kterým plně nedůvěřujete.",
 	"Do not install tools from sources you do not fully trust.": "Neinstalujte nástroje ze zdrojů, kterým plně nedůvěřujete.",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Vkládací model (Embedding Model)",
 	"Embedding Model": "Vkládací model (Embedding Model)",
 	"Embedding Model Engine": "Model zabudovaný motor",
 	"Embedding Model Engine": "Model zabudovaný motor",
 	"Embedding model set to \"{{embedding_model}}\"": "Model vkládání nastaven na \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Model vkládání nastaven na \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Povolit sdílení komunity",
 	"Enable Community Sharing": "Povolit sdílení komunity",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "Povolit hodnocení zpráv",
 	"Enable Message Rating": "Povolit hodnocení zpráv",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Povolit nové registrace",
 	"Enable New Sign Ups": "Povolit nové registrace",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "Povolit webové vyhledávání",
 	"Enable Web Search": "Povolit webové vyhledávání",
 	"Enable Web Search Query Generation": "Povolit generování dotazů pro webové vyhledávání",
 	"Enable Web Search Query Generation": "Povolit generování dotazů pro webové vyhledávání",
@@ -631,6 +636,7 @@
 	"Overview": "Přehled",
 	"Overview": "Přehled",
 	"page": "stránka",
 	"page": "stránka",
 	"Password": "Heslo",
 	"Password": "Heslo",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "PDF dokument (.pdf)",
 	"PDF document (.pdf)": "PDF dokument (.pdf)",
 	"PDF Extract Images (OCR)": "Extrahování obrázků z PDF (OCR)",
 	"PDF Extract Images (OCR)": "Extrahování obrázků z PDF (OCR)",
 	"pending": "čeká na vyřízení",
 	"pending": "čeká na vyřízení",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Stáhněte \"{{searchValue}}\" z Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Stáhněte \"{{searchValue}}\" z Ollama.com",
 	"Pull a model from Ollama.com": "Stáhněte model z Ollama.com",
 	"Pull a model from Ollama.com": "Stáhněte model z Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "Parametry dotazu",
 	"Query Params": "Parametry dotazu",
 	"RAG Template": "Šablona RAG",
 	"RAG Template": "Šablona RAG",
 	"Rating": "Hodnocení",
 	"Rating": "Hodnocení",
@@ -725,7 +732,6 @@
 	"Search Models": "Vyhledávací modely",
 	"Search Models": "Vyhledávací modely",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "Vyhledávací dotazy",
 	"Search Prompts": "Vyhledávací dotazy",
-	"Search Query Generation Prompt": "Generování dotazu na vyhledávání",
 	"Search Result Count": "Počet výsledků hledání",
 	"Search Result Count": "Počet výsledků hledání",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "Nástroje pro vyhledávání",
 	"Search Tools": "Nástroje pro vyhledávání",
@@ -855,6 +861,8 @@
 	"This response was generated by \"{{model}}\"": "Tato odpověď byla vygenerována pomocí \"{{model}}\"",
 	"This response was generated by \"{{model}}\"": "Tato odpověď byla vygenerována pomocí \"{{model}}\"",
 	"This will delete": "Tím se odstraní",
 	"This will delete": "Tím se odstraní",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Tímto dojde k odstranění <strong>{{NAME}}</strong> a <strong>všech jeho obsahů</strong>.",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Tímto dojde k odstranění <strong>{{NAME}}</strong> a <strong>všech jeho obsahů</strong>.",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Toto obnoví znalostní databázi a synchronizuje všechny soubory. Přejete si pokračovat?",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Toto obnoví znalostní databázi a synchronizuje všechny soubory. Přejete si pokračovat?",
 	"Thorough explanation": "Obsáhlé vysvětlení",
 	"Thorough explanation": "Obsáhlé vysvětlení",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 9 - 1
src/lib/i18n/locales/da-DK/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Advancerede indstillinger",
 	"Advanced Params": "Advancerede indstillinger",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "Alle dokumenter",
 	"All Documents": "Alle dokumenter",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Tillad sletning af chats",
 	"Allow Chat Deletion": "Tillad sletning af chats",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "Slet",
 	"Delete": "Slet",
 	"Delete a model": "Slet en model",
 	"Delete a model": "Slet en model",
 	"Delete All Chats": "Slet alle chats",
 	"Delete All Chats": "Slet alle chats",
+	"Delete All Models": "",
 	"Delete chat": "Slet chat",
 	"Delete chat": "Slet chat",
 	"Delete Chat": "Slet chat",
 	"Delete Chat": "Slet chat",
 	"Delete chat?": "Slet chat?",
 	"Delete chat?": "Slet chat?",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "Vis emoji i chat",
 	"Display Emoji in Call": "Vis emoji i chat",
 	"Display the username instead of You in the Chat": "Vis brugernavn i stedet for Dig i chatten",
 	"Display the username instead of You in the Chat": "Vis brugernavn i stedet for Dig i chatten",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "Lad være med at installere funktioner fra kilder, som du ikke stoler på.",
 	"Do not install functions from sources you do not fully trust.": "Lad være med at installere funktioner fra kilder, som du ikke stoler på.",
 	"Do not install tools from sources you do not fully trust.": "Lad være med at installere værktøjer fra kilder, som du ikke stoler på.",
 	"Do not install tools from sources you do not fully trust.": "Lad være med at installere værktøjer fra kilder, som du ikke stoler på.",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Embedding Model",
 	"Embedding Model": "Embedding Model",
 	"Embedding Model Engine": "Embedding Model engine",
 	"Embedding Model Engine": "Embedding Model engine",
 	"Embedding model set to \"{{embedding_model}}\"": "Embedding model sat til \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Embedding model sat til \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Aktiver deling til Community",
 	"Enable Community Sharing": "Aktiver deling til Community",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "Aktiver rating af besked",
 	"Enable Message Rating": "Aktiver rating af besked",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Aktiver nye signups",
 	"Enable New Sign Ups": "Aktiver nye signups",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "Aktiver websøgning",
 	"Enable Web Search": "Aktiver websøgning",
 	"Enable Web Search Query Generation": "Aktiver query generation med websøgning",
 	"Enable Web Search Query Generation": "Aktiver query generation med websøgning",
@@ -631,6 +636,7 @@
 	"Overview": "Oversigt",
 	"Overview": "Oversigt",
 	"page": "side",
 	"page": "side",
 	"Password": "Adgangskode",
 	"Password": "Adgangskode",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "PDF-dokument (.pdf)",
 	"PDF document (.pdf)": "PDF-dokument (.pdf)",
 	"PDF Extract Images (OCR)": "Udtræk billeder fra PDF (OCR)",
 	"PDF Extract Images (OCR)": "Udtræk billeder fra PDF (OCR)",
 	"pending": "afventer",
 	"pending": "afventer",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Hent \"{{searchValue}}\" fra Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Hent \"{{searchValue}}\" fra Ollama.com",
 	"Pull a model from Ollama.com": "Hent en model fra Ollama.com",
 	"Pull a model from Ollama.com": "Hent en model fra Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "Forespørgselsparametre",
 	"Query Params": "Forespørgselsparametre",
 	"RAG Template": "RAG-skabelon",
 	"RAG Template": "RAG-skabelon",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "Søg i modeller",
 	"Search Models": "Søg i modeller",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "Søg i prompts",
 	"Search Prompts": "Søg i prompts",
-	"Search Query Generation Prompt": "Prompt til generering af søgeforespørgsel",
 	"Search Result Count": "Antal søgeresultater",
 	"Search Result Count": "Antal søgeresultater",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "Søg i værktøjer",
 	"Search Tools": "Søg i værktøjer",
@@ -853,6 +859,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "Dette vil slette",
 	"This will delete": "Dette vil slette",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Dette vil nulstille vidensbasen og synkronisere alle filer. Vil du fortsætte?",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Dette vil nulstille vidensbasen og synkronisere alle filer. Vil du fortsætte?",
 	"Thorough explanation": "Grundig forklaring",
 	"Thorough explanation": "Grundig forklaring",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 9 - 1
src/lib/i18n/locales/de-DE/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Erweiterte Parameter",
 	"Advanced Params": "Erweiterte Parameter",
 	"All chats": "Alle Unterhaltungen",
 	"All chats": "Alle Unterhaltungen",
 	"All Documents": "Alle Dokumente",
 	"All Documents": "Alle Dokumente",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Löschen von Unterhaltungen erlauben",
 	"Allow Chat Deletion": "Löschen von Unterhaltungen erlauben",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "Löschen",
 	"Delete": "Löschen",
 	"Delete a model": "Ein Modell löschen",
 	"Delete a model": "Ein Modell löschen",
 	"Delete All Chats": "Alle Unterhaltungen löschen",
 	"Delete All Chats": "Alle Unterhaltungen löschen",
+	"Delete All Models": "",
 	"Delete chat": "Unterhaltung löschen",
 	"Delete chat": "Unterhaltung löschen",
 	"Delete Chat": "Unterhaltung löschen",
 	"Delete Chat": "Unterhaltung löschen",
 	"Delete chat?": "Unterhaltung löschen?",
 	"Delete chat?": "Unterhaltung löschen?",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "Emojis im Anruf anzeigen",
 	"Display Emoji in Call": "Emojis im Anruf anzeigen",
 	"Display the username instead of You in the Chat": "Soll \"Sie\" durch Ihren Benutzernamen ersetzt werden?",
 	"Display the username instead of You in the Chat": "Soll \"Sie\" durch Ihren Benutzernamen ersetzt werden?",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "Installieren Sie keine Funktionen aus Quellen, denen Sie nicht vollständig vertrauen.",
 	"Do not install functions from sources you do not fully trust.": "Installieren Sie keine Funktionen aus Quellen, denen Sie nicht vollständig vertrauen.",
 	"Do not install tools from sources you do not fully trust.": "Installieren Sie keine Werkzeuge aus Quellen, denen Sie nicht vollständig vertrauen.",
 	"Do not install tools from sources you do not fully trust.": "Installieren Sie keine Werkzeuge aus Quellen, denen Sie nicht vollständig vertrauen.",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Embedding-Modell",
 	"Embedding Model": "Embedding-Modell",
 	"Embedding Model Engine": "Embedding-Modell-Engine",
 	"Embedding Model Engine": "Embedding-Modell-Engine",
 	"Embedding model set to \"{{embedding_model}}\"": "Embedding-Modell auf \"{{embedding_model}}\" gesetzt",
 	"Embedding model set to \"{{embedding_model}}\"": "Embedding-Modell auf \"{{embedding_model}}\" gesetzt",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Community-Freigabe aktivieren",
 	"Enable Community Sharing": "Community-Freigabe aktivieren",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "Nachrichtenbewertung aktivieren",
 	"Enable Message Rating": "Nachrichtenbewertung aktivieren",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Registrierung erlauben",
 	"Enable New Sign Ups": "Registrierung erlauben",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "Websuche aktivieren",
 	"Enable Web Search": "Websuche aktivieren",
 	"Enable Web Search Query Generation": "Websuchanfragen-Generierung aktivieren",
 	"Enable Web Search Query Generation": "Websuchanfragen-Generierung aktivieren",
@@ -631,6 +636,7 @@
 	"Overview": "Übersicht",
 	"Overview": "Übersicht",
 	"page": "Seite",
 	"page": "Seite",
 	"Password": "Passwort",
 	"Password": "Passwort",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "PDF-Dokument (.pdf)",
 	"PDF document (.pdf)": "PDF-Dokument (.pdf)",
 	"PDF Extract Images (OCR)": "Text von Bildern aus PDFs extrahieren (OCR)",
 	"PDF Extract Images (OCR)": "Text von Bildern aus PDFs extrahieren (OCR)",
 	"pending": "ausstehend",
 	"pending": "ausstehend",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\" von Ollama.com beziehen",
 	"Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\" von Ollama.com beziehen",
 	"Pull a model from Ollama.com": "Modell von Ollama.com beziehen",
 	"Pull a model from Ollama.com": "Modell von Ollama.com beziehen",
+	"Query Generation Prompt": "",
 	"Query Params": "Abfrageparameter",
 	"Query Params": "Abfrageparameter",
 	"RAG Template": "RAG-Vorlage",
 	"RAG Template": "RAG-Vorlage",
 	"Rating": "Bewertung",
 	"Rating": "Bewertung",
@@ -725,7 +732,6 @@
 	"Search Models": "Modelle durchsuchen...",
 	"Search Models": "Modelle durchsuchen...",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "Prompts durchsuchen...",
 	"Search Prompts": "Prompts durchsuchen...",
-	"Search Query Generation Prompt": "Suchanfragengenerierungsvorlage",
 	"Search Result Count": "Anzahl der Suchergebnisse",
 	"Search Result Count": "Anzahl der Suchergebnisse",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "Werkzeuge durchsuchen...",
 	"Search Tools": "Werkzeuge durchsuchen...",
@@ -853,6 +859,8 @@
 	"This response was generated by \"{{model}}\"": "Diese Antwort wurde von \"{{model}}\" generiert",
 	"This response was generated by \"{{model}}\"": "Diese Antwort wurde von \"{{model}}\" generiert",
 	"This will delete": "Dies löscht",
 	"This will delete": "Dies löscht",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Dies löscht <strong>{{NAME}}</strong> und <strong>alle Inhalte</strong>.",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Dies löscht <strong>{{NAME}}</strong> und <strong>alle Inhalte</strong>.",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Dadurch wird die Wissensdatenbank zurückgesetzt und alle Dateien synchronisiert. Möchten Sie fortfahren?",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Dadurch wird die Wissensdatenbank zurückgesetzt und alle Dateien synchronisiert. Möchten Sie fortfahren?",
 	"Thorough explanation": "Ausführliche Erklärung",
 	"Thorough explanation": "Ausführliche Erklärung",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 9 - 1
src/lib/i18n/locales/dg-DG/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "",
 	"Advanced Params": "",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "",
 	"All Documents": "",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Allow Delete Chats",
 	"Allow Chat Deletion": "Allow Delete Chats",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "",
 	"Delete": "",
 	"Delete a model": "Delete a model",
 	"Delete a model": "Delete a model",
 	"Delete All Chats": "",
 	"Delete All Chats": "",
+	"Delete All Models": "",
 	"Delete chat": "Delete chat",
 	"Delete chat": "Delete chat",
 	"Delete Chat": "",
 	"Delete Chat": "",
 	"Delete chat?": "",
 	"Delete chat?": "",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "",
 	"Display Emoji in Call": "",
 	"Display the username instead of You in the Chat": "Display username instead of You in Chat",
 	"Display the username instead of You in the Chat": "Display username instead of You in Chat",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
@@ -288,12 +291,14 @@
 	"Embedding Model": "",
 	"Embedding Model": "",
 	"Embedding Model Engine": "",
 	"Embedding Model Engine": "",
 	"Embedding model set to \"{{embedding_model}}\"": "",
 	"Embedding model set to \"{{embedding_model}}\"": "",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "",
 	"Enable Community Sharing": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Enable New Bark Ups",
 	"Enable New Sign Ups": "Enable New Bark Ups",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "",
 	"Enable Web Search": "",
 	"Enable Web Search Query Generation": "",
 	"Enable Web Search Query Generation": "",
@@ -631,6 +636,7 @@
 	"Overview": "",
 	"Overview": "",
 	"page": "",
 	"page": "",
 	"Password": "Barkword",
 	"Password": "Barkword",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "",
 	"PDF document (.pdf)": "",
 	"PDF Extract Images (OCR)": "PDF Extract Wowmages (OCR)",
 	"PDF Extract Images (OCR)": "PDF Extract Wowmages (OCR)",
 	"pending": "pending",
 	"pending": "pending",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "Pull a wowdel from Ollama.com",
 	"Pull a model from Ollama.com": "Pull a wowdel from Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "Query Bark",
 	"Query Params": "Query Bark",
 	"RAG Template": "RAG Template",
 	"RAG Template": "RAG Template",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "",
 	"Search Models": "",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "Search Prompts much wow",
 	"Search Prompts": "Search Prompts much wow",
-	"Search Query Generation Prompt": "",
 	"Search Result Count": "",
 	"Search Result Count": "",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "",
 	"Search Tools": "",
@@ -855,6 +861,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
 	"This will delete": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "",
 	"Thorough explanation": "",
 	"Tika": "",
 	"Tika": "",

+ 9 - 1
src/lib/i18n/locales/en-GB/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "",
 	"Advanced Params": "",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "",
 	"All Documents": "",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "",
 	"Allow Chat Deletion": "",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "",
 	"Delete": "",
 	"Delete a model": "",
 	"Delete a model": "",
 	"Delete All Chats": "",
 	"Delete All Chats": "",
+	"Delete All Models": "",
 	"Delete chat": "",
 	"Delete chat": "",
 	"Delete Chat": "",
 	"Delete Chat": "",
 	"Delete chat?": "",
 	"Delete chat?": "",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "",
 	"Display Emoji in Call": "",
 	"Display the username instead of You in the Chat": "",
 	"Display the username instead of You in the Chat": "",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
@@ -288,12 +291,14 @@
 	"Embedding Model": "",
 	"Embedding Model": "",
 	"Embedding Model Engine": "",
 	"Embedding Model Engine": "",
 	"Embedding model set to \"{{embedding_model}}\"": "",
 	"Embedding model set to \"{{embedding_model}}\"": "",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "",
 	"Enable Community Sharing": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "",
 	"Enable New Sign Ups": "",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "",
 	"Enable Web Search": "",
 	"Enable Web Search Query Generation": "",
 	"Enable Web Search Query Generation": "",
@@ -631,6 +636,7 @@
 	"Overview": "",
 	"Overview": "",
 	"page": "",
 	"page": "",
 	"Password": "",
 	"Password": "",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "",
 	"PDF document (.pdf)": "",
 	"PDF Extract Images (OCR)": "",
 	"PDF Extract Images (OCR)": "",
 	"pending": "",
 	"pending": "",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "",
 	"Pull a model from Ollama.com": "",
+	"Query Generation Prompt": "",
 	"Query Params": "",
 	"Query Params": "",
 	"RAG Template": "",
 	"RAG Template": "",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "",
 	"Search Models": "",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "",
 	"Search Prompts": "",
-	"Search Query Generation Prompt": "",
 	"Search Result Count": "",
 	"Search Result Count": "",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "",
 	"Search Tools": "",
@@ -853,6 +859,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
 	"This will delete": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "",
 	"Thorough explanation": "",
 	"Tika": "",
 	"Tika": "",

+ 9 - 1
src/lib/i18n/locales/en-US/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "",
 	"Advanced Params": "",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "",
 	"All Documents": "",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "",
 	"Allow Chat Deletion": "",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "",
 	"Delete": "",
 	"Delete a model": "",
 	"Delete a model": "",
 	"Delete All Chats": "",
 	"Delete All Chats": "",
+	"Delete All Models": "",
 	"Delete chat": "",
 	"Delete chat": "",
 	"Delete Chat": "",
 	"Delete Chat": "",
 	"Delete chat?": "",
 	"Delete chat?": "",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "",
 	"Display Emoji in Call": "",
 	"Display the username instead of You in the Chat": "",
 	"Display the username instead of You in the Chat": "",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
@@ -288,12 +291,14 @@
 	"Embedding Model": "",
 	"Embedding Model": "",
 	"Embedding Model Engine": "",
 	"Embedding Model Engine": "",
 	"Embedding model set to \"{{embedding_model}}\"": "",
 	"Embedding model set to \"{{embedding_model}}\"": "",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "",
 	"Enable Community Sharing": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "",
 	"Enable New Sign Ups": "",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "",
 	"Enable Web Search": "",
 	"Enable Web Search Query Generation": "",
 	"Enable Web Search Query Generation": "",
@@ -631,6 +636,7 @@
 	"Overview": "",
 	"Overview": "",
 	"page": "",
 	"page": "",
 	"Password": "",
 	"Password": "",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "",
 	"PDF document (.pdf)": "",
 	"PDF Extract Images (OCR)": "",
 	"PDF Extract Images (OCR)": "",
 	"pending": "",
 	"pending": "",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "",
 	"Pull a model from Ollama.com": "",
+	"Query Generation Prompt": "",
 	"Query Params": "",
 	"Query Params": "",
 	"RAG Template": "",
 	"RAG Template": "",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "",
 	"Search Models": "",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "",
 	"Search Prompts": "",
-	"Search Query Generation Prompt": "",
 	"Search Result Count": "",
 	"Search Result Count": "",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "",
 	"Search Tools": "",
@@ -853,6 +859,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
 	"This will delete": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "",
 	"Thorough explanation": "",
 	"Tika": "",
 	"Tika": "",

+ 9 - 1
src/lib/i18n/locales/es-ES/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Parámetros avanzados",
 	"Advanced Params": "Parámetros avanzados",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "Todos los Documentos",
 	"All Documents": "Todos los Documentos",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Permitir Borrar Chats",
 	"Allow Chat Deletion": "Permitir Borrar Chats",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "Borrar",
 	"Delete": "Borrar",
 	"Delete a model": "Borra un modelo",
 	"Delete a model": "Borra un modelo",
 	"Delete All Chats": "Eliminar todos los chats",
 	"Delete All Chats": "Eliminar todos los chats",
+	"Delete All Models": "",
 	"Delete chat": "Borrar chat",
 	"Delete chat": "Borrar chat",
 	"Delete Chat": "Borrar Chat",
 	"Delete Chat": "Borrar Chat",
 	"Delete chat?": "Borrar el chat?",
 	"Delete chat?": "Borrar el chat?",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "Muestra Emoji en llamada",
 	"Display Emoji in Call": "Muestra Emoji en llamada",
 	"Display the username instead of You in the Chat": "Mostrar el nombre de usuario en lugar de Usted en el chat",
 	"Display the username instead of You in the Chat": "Mostrar el nombre de usuario en lugar de Usted en el chat",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "No instale funciones desde fuentes que no confíe totalmente.",
 	"Do not install functions from sources you do not fully trust.": "No instale funciones desde fuentes que no confíe totalmente.",
 	"Do not install tools from sources you do not fully trust.": "No instale herramientas desde fuentes que no confíe totalmente.",
 	"Do not install tools from sources you do not fully trust.": "No instale herramientas desde fuentes que no confíe totalmente.",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Modelo de Embedding",
 	"Embedding Model": "Modelo de Embedding",
 	"Embedding Model Engine": "Motor de Modelo de Embedding",
 	"Embedding Model Engine": "Motor de Modelo de Embedding",
 	"Embedding model set to \"{{embedding_model}}\"": "Modelo de Embedding configurado a \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Modelo de Embedding configurado a \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Habilitar el uso compartido de la comunidad",
 	"Enable Community Sharing": "Habilitar el uso compartido de la comunidad",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "Habilitar la calificación de los mensajes",
 	"Enable Message Rating": "Habilitar la calificación de los mensajes",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Habilitar Nuevos Registros",
 	"Enable New Sign Ups": "Habilitar Nuevos Registros",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "Habilitar la búsqueda web",
 	"Enable Web Search": "Habilitar la búsqueda web",
 	"Enable Web Search Query Generation": "Habilitar generación de consultas web",
 	"Enable Web Search Query Generation": "Habilitar generación de consultas web",
@@ -631,6 +636,7 @@
 	"Overview": "Vista general",
 	"Overview": "Vista general",
 	"page": "página",
 	"page": "página",
 	"Password": "Contraseña",
 	"Password": "Contraseña",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "PDF document (.pdf)",
 	"PDF document (.pdf)": "PDF document (.pdf)",
 	"PDF Extract Images (OCR)": "Extraer imágenes de PDF (OCR)",
 	"PDF Extract Images (OCR)": "Extraer imágenes de PDF (OCR)",
 	"pending": "pendiente",
 	"pending": "pendiente",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Extraer \"{{searchValue}}\" de Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Extraer \"{{searchValue}}\" de Ollama.com",
 	"Pull a model from Ollama.com": "Obtener un modelo de Ollama.com",
 	"Pull a model from Ollama.com": "Obtener un modelo de Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "Parámetros de consulta",
 	"Query Params": "Parámetros de consulta",
 	"RAG Template": "Plantilla de RAG",
 	"RAG Template": "Plantilla de RAG",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "Buscar Modelos",
 	"Search Models": "Buscar Modelos",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "Buscar Prompts",
 	"Search Prompts": "Buscar Prompts",
-	"Search Query Generation Prompt": "Búsqueda de consulta de generación de prompts",
 	"Search Result Count": "Recuento de resultados de búsqueda",
 	"Search Result Count": "Recuento de resultados de búsqueda",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "Búsqueda de herramientas",
 	"Search Tools": "Búsqueda de herramientas",
@@ -854,6 +860,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "Esto eliminará",
 	"This will delete": "Esto eliminará",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Esto reseteará la base de conocimientos y sincronizará todos los archivos. ¿Desea continuar?",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Esto reseteará la base de conocimientos y sincronizará todos los archivos. ¿Desea continuar?",
 	"Thorough explanation": "Explicación exhaustiva",
 	"Thorough explanation": "Explicación exhaustiva",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 9 - 1
src/lib/i18n/locales/fa-IR/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "پارام\u200cهای پیشرفته",
 	"Advanced Params": "پارام\u200cهای پیشرفته",
 	"All chats": "همهٔ گفتگوها",
 	"All chats": "همهٔ گفتگوها",
 	"All Documents": "همهٔ سند\u200cها",
 	"All Documents": "همهٔ سند\u200cها",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "اجازهٔ حذف گفتگو",
 	"Allow Chat Deletion": "اجازهٔ حذف گفتگو",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "حذف",
 	"Delete": "حذف",
 	"Delete a model": "حذف یک مدل",
 	"Delete a model": "حذف یک مدل",
 	"Delete All Chats": "حذف همه گفتگوها",
 	"Delete All Chats": "حذف همه گفتگوها",
+	"Delete All Models": "",
 	"Delete chat": "حذف گپ",
 	"Delete chat": "حذف گپ",
 	"Delete Chat": "حذف گپ",
 	"Delete Chat": "حذف گپ",
 	"Delete chat?": "",
 	"Delete chat?": "",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "",
 	"Display Emoji in Call": "",
 	"Display the username instead of You in the Chat": "نمایش نام کاربری به جای «شما» در چت",
 	"Display the username instead of You in the Chat": "نمایش نام کاربری به جای «شما» در چت",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
@@ -288,12 +291,14 @@
 	"Embedding Model": "مدل پیدائش",
 	"Embedding Model": "مدل پیدائش",
 	"Embedding Model Engine": "محرک مدل پیدائش",
 	"Embedding Model Engine": "محرک مدل پیدائش",
 	"Embedding model set to \"{{embedding_model}}\"": "مدل پیدائش را به \"{{embedding_model}}\" تنظیم کنید",
 	"Embedding model set to \"{{embedding_model}}\"": "مدل پیدائش را به \"{{embedding_model}}\" تنظیم کنید",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "فعالسازی اشتراک انجمن",
 	"Enable Community Sharing": "فعالسازی اشتراک انجمن",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "فعال کردن ثبت نام\u200cهای جدید",
 	"Enable New Sign Ups": "فعال کردن ثبت نام\u200cهای جدید",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "فعالسازی جستجوی وب",
 	"Enable Web Search": "فعالسازی جستجوی وب",
 	"Enable Web Search Query Generation": "",
 	"Enable Web Search Query Generation": "",
@@ -631,6 +636,7 @@
 	"Overview": "نمای کلی",
 	"Overview": "نمای کلی",
 	"page": "صفحه",
 	"page": "صفحه",
 	"Password": "رمز عبور",
 	"Password": "رمز عبور",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "PDF سند (.pdf)",
 	"PDF document (.pdf)": "PDF سند (.pdf)",
 	"PDF Extract Images (OCR)": "استخراج تصاویر از PDF (OCR)",
 	"PDF Extract Images (OCR)": "استخراج تصاویر از PDF (OCR)",
 	"pending": "در انتظار",
 	"pending": "در انتظار",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "بازگرداندن \"{{searchValue}}\" از Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "بازگرداندن \"{{searchValue}}\" از Ollama.com",
 	"Pull a model from Ollama.com": "دریافت یک مدل از Ollama.com",
 	"Pull a model from Ollama.com": "دریافت یک مدل از Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "پارامترهای پرس و جو",
 	"Query Params": "پارامترهای پرس و جو",
 	"RAG Template": "RAG الگوی",
 	"RAG Template": "RAG الگوی",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "جستجوی مدل\u200cها",
 	"Search Models": "جستجوی مدل\u200cها",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "جستجوی پرامپت\u200cها",
 	"Search Prompts": "جستجوی پرامپت\u200cها",
-	"Search Query Generation Prompt": "",
 	"Search Result Count": "تعداد نتایج جستجو",
 	"Search Result Count": "تعداد نتایج جستجو",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "ابزارهای جستجو",
 	"Search Tools": "ابزارهای جستجو",
@@ -853,6 +859,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
 	"This will delete": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "توضیح کامل",
 	"Thorough explanation": "توضیح کامل",
 	"Tika": "",
 	"Tika": "",

+ 9 - 1
src/lib/i18n/locales/fi-FI/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Edistyneet parametrit",
 	"Advanced Params": "Edistyneet parametrit",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "Kaikki asiakirjat",
 	"All Documents": "Kaikki asiakirjat",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Salli keskustelujen poisto",
 	"Allow Chat Deletion": "Salli keskustelujen poisto",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "Poista",
 	"Delete": "Poista",
 	"Delete a model": "Poista malli",
 	"Delete a model": "Poista malli",
 	"Delete All Chats": "Poista kaikki keskustelut",
 	"Delete All Chats": "Poista kaikki keskustelut",
+	"Delete All Models": "",
 	"Delete chat": "Poista keskustelu",
 	"Delete chat": "Poista keskustelu",
 	"Delete Chat": "Poista keskustelu",
 	"Delete Chat": "Poista keskustelu",
 	"Delete chat?": "",
 	"Delete chat?": "",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "",
 	"Display Emoji in Call": "",
 	"Display the username instead of You in the Chat": "Näytä käyttäjänimi keskustelussa",
 	"Display the username instead of You in the Chat": "Näytä käyttäjänimi keskustelussa",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Upotusmalli",
 	"Embedding Model": "Upotusmalli",
 	"Embedding Model Engine": "Upotusmallin moottori",
 	"Embedding Model Engine": "Upotusmallin moottori",
 	"Embedding model set to \"{{embedding_model}}\"": "\"{{embedding_model}}\" valittu upotusmalliksi",
 	"Embedding model set to \"{{embedding_model}}\"": "\"{{embedding_model}}\" valittu upotusmalliksi",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Ota yhteisön jakaminen käyttöön",
 	"Enable Community Sharing": "Ota yhteisön jakaminen käyttöön",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Salli uudet rekisteröitymiset",
 	"Enable New Sign Ups": "Salli uudet rekisteröitymiset",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "Ota verkkohaku käyttöön",
 	"Enable Web Search": "Ota verkkohaku käyttöön",
 	"Enable Web Search Query Generation": "",
 	"Enable Web Search Query Generation": "",
@@ -631,6 +636,7 @@
 	"Overview": "",
 	"Overview": "",
 	"page": "",
 	"page": "",
 	"Password": "Salasana",
 	"Password": "Salasana",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "PDF-tiedosto (.pdf)",
 	"PDF document (.pdf)": "PDF-tiedosto (.pdf)",
 	"PDF Extract Images (OCR)": "PDF-tiedoston kuvien erottelu (OCR)",
 	"PDF Extract Images (OCR)": "PDF-tiedoston kuvien erottelu (OCR)",
 	"pending": "odottaa",
 	"pending": "odottaa",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Lataa \"{{searchValue}}\" Ollama.comista",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Lataa \"{{searchValue}}\" Ollama.comista",
 	"Pull a model from Ollama.com": "Lataa malli Ollama.comista",
 	"Pull a model from Ollama.com": "Lataa malli Ollama.comista",
+	"Query Generation Prompt": "",
 	"Query Params": "Kyselyparametrit",
 	"Query Params": "Kyselyparametrit",
 	"RAG Template": "RAG-malline",
 	"RAG Template": "RAG-malline",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "Hae malleja",
 	"Search Models": "Hae malleja",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "Hae kehotteita",
 	"Search Prompts": "Hae kehotteita",
-	"Search Query Generation Prompt": "",
 	"Search Result Count": "Hakutulosten määrä",
 	"Search Result Count": "Hakutulosten määrä",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "",
 	"Search Tools": "",
@@ -853,6 +859,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
 	"This will delete": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Perusteellinen selitys",
 	"Thorough explanation": "Perusteellinen selitys",
 	"Tika": "",
 	"Tika": "",

+ 9 - 1
src/lib/i18n/locales/fr-CA/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Paramètres avancés",
 	"Advanced Params": "Paramètres avancés",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "Tous les documents",
 	"All Documents": "Tous les documents",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Autoriser la suppression de l'historique de chat",
 	"Allow Chat Deletion": "Autoriser la suppression de l'historique de chat",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "Supprimer",
 	"Delete": "Supprimer",
 	"Delete a model": "Supprimer un modèle",
 	"Delete a model": "Supprimer un modèle",
 	"Delete All Chats": "Supprimer toutes les conversations",
 	"Delete All Chats": "Supprimer toutes les conversations",
+	"Delete All Models": "",
 	"Delete chat": "Supprimer la conversation",
 	"Delete chat": "Supprimer la conversation",
 	"Delete Chat": "Supprimer la Conversation",
 	"Delete Chat": "Supprimer la Conversation",
 	"Delete chat?": "Supprimer la conversation ?",
 	"Delete chat?": "Supprimer la conversation ?",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "Afficher les emojis pendant l'appel",
 	"Display Emoji in Call": "Afficher les emojis pendant l'appel",
 	"Display the username instead of You in the Chat": "Afficher le nom d'utilisateur à la place de \"Vous\" dans le Chat",
 	"Display the username instead of You in the Chat": "Afficher le nom d'utilisateur à la place de \"Vous\" dans le Chat",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Modèle d'embedding",
 	"Embedding Model": "Modèle d'embedding",
 	"Embedding Model Engine": "Moteur de modèle d'encodage",
 	"Embedding Model Engine": "Moteur de modèle d'encodage",
 	"Embedding model set to \"{{embedding_model}}\"": "Modèle d'encodage défini sur « {{embedding_model}} »",
 	"Embedding model set to \"{{embedding_model}}\"": "Modèle d'encodage défini sur « {{embedding_model}} »",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Activer le partage communautaire",
 	"Enable Community Sharing": "Activer le partage communautaire",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Activer les nouvelles inscriptions",
 	"Enable New Sign Ups": "Activer les nouvelles inscriptions",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "Activer la recherche sur le Web",
 	"Enable Web Search": "Activer la recherche sur le Web",
 	"Enable Web Search Query Generation": "",
 	"Enable Web Search Query Generation": "",
@@ -631,6 +636,7 @@
 	"Overview": "",
 	"Overview": "",
 	"page": "",
 	"page": "",
 	"Password": "Mot de passe",
 	"Password": "Mot de passe",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "Document au format PDF  (.pdf)",
 	"PDF document (.pdf)": "Document au format PDF  (.pdf)",
 	"PDF Extract Images (OCR)": "Extraction d'images PDF (OCR)",
 	"PDF Extract Images (OCR)": "Extraction d'images PDF (OCR)",
 	"pending": "en attente",
 	"pending": "en attente",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Récupérer « {{searchValue}} » depuis Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Récupérer « {{searchValue}} » depuis Ollama.com",
 	"Pull a model from Ollama.com": "Télécharger un modèle depuis Ollama.com",
 	"Pull a model from Ollama.com": "Télécharger un modèle depuis Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "Paramètres de requête",
 	"Query Params": "Paramètres de requête",
 	"RAG Template": "Modèle RAG",
 	"RAG Template": "Modèle RAG",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "Rechercher des modèles",
 	"Search Models": "Rechercher des modèles",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "Recherche de prompts",
 	"Search Prompts": "Recherche de prompts",
-	"Search Query Generation Prompt": "Génération d'interrogation de recherche",
 	"Search Result Count": "Nombre de résultats de recherche",
 	"Search Result Count": "Nombre de résultats de recherche",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "Outils de recherche",
 	"Search Tools": "Outils de recherche",
@@ -854,6 +860,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "Cela supprimera",
 	"This will delete": "Cela supprimera",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Explication approfondie",
 	"Thorough explanation": "Explication approfondie",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 9 - 1
src/lib/i18n/locales/fr-FR/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Paramètres avancés",
 	"Advanced Params": "Paramètres avancés",
 	"All chats": "Toutes les conversations",
 	"All chats": "Toutes les conversations",
 	"All Documents": "Tous les documents",
 	"All Documents": "Tous les documents",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Autoriser la suppression de l'historique de chat",
 	"Allow Chat Deletion": "Autoriser la suppression de l'historique de chat",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "Supprimer",
 	"Delete": "Supprimer",
 	"Delete a model": "Supprimer un modèle",
 	"Delete a model": "Supprimer un modèle",
 	"Delete All Chats": "Supprimer toutes les conversations",
 	"Delete All Chats": "Supprimer toutes les conversations",
+	"Delete All Models": "",
 	"Delete chat": "Supprimer la conversation",
 	"Delete chat": "Supprimer la conversation",
 	"Delete Chat": "Supprimer la Conversation",
 	"Delete Chat": "Supprimer la Conversation",
 	"Delete chat?": "Supprimer la conversation ?",
 	"Delete chat?": "Supprimer la conversation ?",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "Afficher les emojis pendant l'appel",
 	"Display Emoji in Call": "Afficher les emojis pendant l'appel",
 	"Display the username instead of You in the Chat": "Afficher le nom d'utilisateur à la place de \"Vous\" dans le chat",
 	"Display the username instead of You in the Chat": "Afficher le nom d'utilisateur à la place de \"Vous\" dans le chat",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "N'installez pas de fonctions provenant de sources auxquelles vous ne faites pas entièrement confiance.",
 	"Do not install functions from sources you do not fully trust.": "N'installez pas de fonctions provenant de sources auxquelles vous ne faites pas entièrement confiance.",
 	"Do not install tools from sources you do not fully trust.": "N'installez pas d'outils provenant de sources auxquelles vous ne faites pas entièrement confiance.",
 	"Do not install tools from sources you do not fully trust.": "N'installez pas d'outils provenant de sources auxquelles vous ne faites pas entièrement confiance.",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Modèle d'embedding",
 	"Embedding Model": "Modèle d'embedding",
 	"Embedding Model Engine": "Moteur de modèle d'embedding",
 	"Embedding Model Engine": "Moteur de modèle d'embedding",
 	"Embedding model set to \"{{embedding_model}}\"": "Modèle d'embedding défini sur « {{embedding_model}} »",
 	"Embedding model set to \"{{embedding_model}}\"": "Modèle d'embedding défini sur « {{embedding_model}} »",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Activer le partage communautaire",
 	"Enable Community Sharing": "Activer le partage communautaire",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "Activer l'évaluation des messages",
 	"Enable Message Rating": "Activer l'évaluation des messages",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Activer les nouvelles inscriptions",
 	"Enable New Sign Ups": "Activer les nouvelles inscriptions",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "Activer la recherche Web",
 	"Enable Web Search": "Activer la recherche Web",
 	"Enable Web Search Query Generation": "Activer la génération de requêtes de recherche Web",
 	"Enable Web Search Query Generation": "Activer la génération de requêtes de recherche Web",
@@ -631,6 +636,7 @@
 	"Overview": "Aperçu",
 	"Overview": "Aperçu",
 	"page": "page",
 	"page": "page",
 	"Password": "Mot de passe",
 	"Password": "Mot de passe",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "Document au format PDF (.pdf)",
 	"PDF document (.pdf)": "Document au format PDF (.pdf)",
 	"PDF Extract Images (OCR)": "Extraction d'images PDF (OCR)",
 	"PDF Extract Images (OCR)": "Extraction d'images PDF (OCR)",
 	"pending": "en attente",
 	"pending": "en attente",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Récupérer « {{searchValue}} » depuis Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Récupérer « {{searchValue}} » depuis Ollama.com",
 	"Pull a model from Ollama.com": "Télécharger un modèle depuis Ollama.com",
 	"Pull a model from Ollama.com": "Télécharger un modèle depuis Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "Paramètres de requête",
 	"Query Params": "Paramètres de requête",
 	"RAG Template": "Modèle RAG",
 	"RAG Template": "Modèle RAG",
 	"Rating": "Note",
 	"Rating": "Note",
@@ -725,7 +732,6 @@
 	"Search Models": "Rechercher des modèles",
 	"Search Models": "Rechercher des modèles",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "Rechercher des prompts",
 	"Search Prompts": "Rechercher des prompts",
-	"Search Query Generation Prompt": "Rechercher des prompts de génération de requête",
 	"Search Result Count": "Nombre de résultats de recherche",
 	"Search Result Count": "Nombre de résultats de recherche",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "Rechercher des outils",
 	"Search Tools": "Rechercher des outils",
@@ -854,6 +860,8 @@
 	"This response was generated by \"{{model}}\"": "Cette réponse a été générée par \"{{model}}\"",
 	"This response was generated by \"{{model}}\"": "Cette réponse a été générée par \"{{model}}\"",
 	"This will delete": "Cela supprimera",
 	"This will delete": "Cela supprimera",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Cela supprimera <strong>{{NAME}}</strong> et <strong>tout son contenu</strong>.",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Cela supprimera <strong>{{NAME}}</strong> et <strong>tout son contenu</strong>.",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Cela réinitialisera la base de connaissances et synchronisera tous les fichiers. Souhaitez-vous continuer ?",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Cela réinitialisera la base de connaissances et synchronisera tous les fichiers. Souhaitez-vous continuer ?",
 	"Thorough explanation": "Explication approfondie",
 	"Thorough explanation": "Explication approfondie",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 9 - 1
src/lib/i18n/locales/he-IL/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "פרמטרים מתקדמים",
 	"Advanced Params": "פרמטרים מתקדמים",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "כל המסמכים",
 	"All Documents": "כל המסמכים",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "אפשר מחיקת צ'אט",
 	"Allow Chat Deletion": "אפשר מחיקת צ'אט",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "מחק",
 	"Delete": "מחק",
 	"Delete a model": "מחק מודל",
 	"Delete a model": "מחק מודל",
 	"Delete All Chats": "מחק את כל הצ'אטים",
 	"Delete All Chats": "מחק את כל הצ'אטים",
+	"Delete All Models": "",
 	"Delete chat": "מחק צ'אט",
 	"Delete chat": "מחק צ'אט",
 	"Delete Chat": "מחק צ'אט",
 	"Delete Chat": "מחק צ'אט",
 	"Delete chat?": "",
 	"Delete chat?": "",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "",
 	"Display Emoji in Call": "",
 	"Display the username instead of You in the Chat": "הצג את שם המשתמש במקום 'אתה' בצ'אט",
 	"Display the username instead of You in the Chat": "הצג את שם המשתמש במקום 'אתה' בצ'אט",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
@@ -288,12 +291,14 @@
 	"Embedding Model": "מודל הטמעה",
 	"Embedding Model": "מודל הטמעה",
 	"Embedding Model Engine": "מנוע מודל הטמעה",
 	"Embedding Model Engine": "מנוע מודל הטמעה",
 	"Embedding model set to \"{{embedding_model}}\"": "מודל ההטמעה הוגדר ל-\"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "מודל ההטמעה הוגדר ל-\"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "הפיכת שיתוף קהילה לזמין",
 	"Enable Community Sharing": "הפיכת שיתוף קהילה לזמין",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "אפשר הרשמות חדשות",
 	"Enable New Sign Ups": "אפשר הרשמות חדשות",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "הפיכת חיפוש באינטרנט לזמין",
 	"Enable Web Search": "הפיכת חיפוש באינטרנט לזמין",
 	"Enable Web Search Query Generation": "",
 	"Enable Web Search Query Generation": "",
@@ -631,6 +636,7 @@
 	"Overview": "",
 	"Overview": "",
 	"page": "",
 	"page": "",
 	"Password": "סיסמה",
 	"Password": "סיסמה",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "מסמך PDF (.pdf)",
 	"PDF document (.pdf)": "מסמך PDF (.pdf)",
 	"PDF Extract Images (OCR)": "חילוץ תמונות מ-PDF (OCR)",
 	"PDF Extract Images (OCR)": "חילוץ תמונות מ-PDF (OCR)",
 	"pending": "ממתין",
 	"pending": "ממתין",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "משוך \"{{searchValue}}\" מ-Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "משוך \"{{searchValue}}\" מ-Ollama.com",
 	"Pull a model from Ollama.com": "משוך מודל מ-Ollama.com",
 	"Pull a model from Ollama.com": "משוך מודל מ-Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "פרמטרי שאילתה",
 	"Query Params": "פרמטרי שאילתה",
 	"RAG Template": "תבנית RAG",
 	"RAG Template": "תבנית RAG",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "חיפוש מודלים",
 	"Search Models": "חיפוש מודלים",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "חפש פקודות",
 	"Search Prompts": "חפש פקודות",
-	"Search Query Generation Prompt": "",
 	"Search Result Count": "ספירת תוצאות חיפוש",
 	"Search Result Count": "ספירת תוצאות חיפוש",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "",
 	"Search Tools": "",
@@ -854,6 +860,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
 	"This will delete": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "תיאור מפורט",
 	"Thorough explanation": "תיאור מפורט",
 	"Tika": "",
 	"Tika": "",

+ 9 - 1
src/lib/i18n/locales/hi-IN/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "उन्नत परम",
 	"Advanced Params": "उन्नत परम",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "सभी डॉक्यूमेंट्स",
 	"All Documents": "सभी डॉक्यूमेंट्स",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "चैट हटाने की अनुमति दें",
 	"Allow Chat Deletion": "चैट हटाने की अनुमति दें",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "डिलीट",
 	"Delete": "डिलीट",
 	"Delete a model": "एक मॉडल हटाएँ",
 	"Delete a model": "एक मॉडल हटाएँ",
 	"Delete All Chats": "सभी चैट हटाएं",
 	"Delete All Chats": "सभी चैट हटाएं",
+	"Delete All Models": "",
 	"Delete chat": "चैट हटाएं",
 	"Delete chat": "चैट हटाएं",
 	"Delete Chat": "चैट हटाएं",
 	"Delete Chat": "चैट हटाएं",
 	"Delete chat?": "",
 	"Delete chat?": "",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "",
 	"Display Emoji in Call": "",
 	"Display the username instead of You in the Chat": "चैट में 'आप' के स्थान पर उपयोगकर्ता नाम प्रदर्शित करें",
 	"Display the username instead of You in the Chat": "चैट में 'आप' के स्थान पर उपयोगकर्ता नाम प्रदर्शित करें",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
@@ -288,12 +291,14 @@
 	"Embedding Model": "मॉडेल अनुकूलन",
 	"Embedding Model": "मॉडेल अनुकूलन",
 	"Embedding Model Engine": "एंबेडिंग मॉडल इंजन",
 	"Embedding Model Engine": "एंबेडिंग मॉडल इंजन",
 	"Embedding model set to \"{{embedding_model}}\"": "एम्बेडिंग मॉडल को \"{{embedding_model}}\" पर सेट किया गया",
 	"Embedding model set to \"{{embedding_model}}\"": "एम्बेडिंग मॉडल को \"{{embedding_model}}\" पर सेट किया गया",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "समुदाय साझाकरण सक्षम करें",
 	"Enable Community Sharing": "समुदाय साझाकरण सक्षम करें",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "नए साइन अप सक्रिय करें",
 	"Enable New Sign Ups": "नए साइन अप सक्रिय करें",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "वेब खोज सक्षम करें",
 	"Enable Web Search": "वेब खोज सक्षम करें",
 	"Enable Web Search Query Generation": "",
 	"Enable Web Search Query Generation": "",
@@ -631,6 +636,7 @@
 	"Overview": "",
 	"Overview": "",
 	"page": "",
 	"page": "",
 	"Password": "पासवर्ड",
 	"Password": "पासवर्ड",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "PDF दस्तावेज़ (.pdf)",
 	"PDF document (.pdf)": "PDF दस्तावेज़ (.pdf)",
 	"PDF Extract Images (OCR)": "PDF छवियाँ निकालें (OCR)",
 	"PDF Extract Images (OCR)": "PDF छवियाँ निकालें (OCR)",
 	"pending": "लंबित",
 	"pending": "लंबित",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\" को Ollama.com से खींचें",
 	"Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\" को Ollama.com से खींचें",
 	"Pull a model from Ollama.com": "Ollama.com से एक मॉडल खींचें",
 	"Pull a model from Ollama.com": "Ollama.com से एक मॉडल खींचें",
+	"Query Generation Prompt": "",
 	"Query Params": "क्वेरी पैरामीटर",
 	"Query Params": "क्वेरी पैरामीटर",
 	"RAG Template": "RAG टेम्पलेट",
 	"RAG Template": "RAG टेम्पलेट",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "मॉडल खोजें",
 	"Search Models": "मॉडल खोजें",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "प्रॉम्प्ट खोजें",
 	"Search Prompts": "प्रॉम्प्ट खोजें",
-	"Search Query Generation Prompt": "",
 	"Search Result Count": "खोज परिणामों की संख्या",
 	"Search Result Count": "खोज परिणामों की संख्या",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "",
 	"Search Tools": "",
@@ -853,6 +859,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
 	"This will delete": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "विस्तृत व्याख्या",
 	"Thorough explanation": "विस्तृत व्याख्या",
 	"Tika": "",
 	"Tika": "",

+ 9 - 1
src/lib/i18n/locales/hr-HR/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Napredni parametri",
 	"Advanced Params": "Napredni parametri",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "Svi dokumenti",
 	"All Documents": "Svi dokumenti",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Dopusti brisanje razgovora",
 	"Allow Chat Deletion": "Dopusti brisanje razgovora",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "Izbriši",
 	"Delete": "Izbriši",
 	"Delete a model": "Izbriši model",
 	"Delete a model": "Izbriši model",
 	"Delete All Chats": "Izbriši sve razgovore",
 	"Delete All Chats": "Izbriši sve razgovore",
+	"Delete All Models": "",
 	"Delete chat": "Izbriši razgovor",
 	"Delete chat": "Izbriši razgovor",
 	"Delete Chat": "Izbriši razgovor",
 	"Delete Chat": "Izbriši razgovor",
 	"Delete chat?": "",
 	"Delete chat?": "",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "",
 	"Display Emoji in Call": "",
 	"Display the username instead of You in the Chat": "Prikaži korisničko ime umjesto Vas u razgovoru",
 	"Display the username instead of You in the Chat": "Prikaži korisničko ime umjesto Vas u razgovoru",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Embedding model",
 	"Embedding Model": "Embedding model",
 	"Embedding Model Engine": "Embedding model pogon",
 	"Embedding Model Engine": "Embedding model pogon",
 	"Embedding model set to \"{{embedding_model}}\"": "Embedding model postavljen na \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Embedding model postavljen na \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Omogući zajedničko korištenje zajednice",
 	"Enable Community Sharing": "Omogući zajedničko korištenje zajednice",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Omogući nove prijave",
 	"Enable New Sign Ups": "Omogući nove prijave",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "Omogući pretraživanje weba",
 	"Enable Web Search": "Omogući pretraživanje weba",
 	"Enable Web Search Query Generation": "",
 	"Enable Web Search Query Generation": "",
@@ -631,6 +636,7 @@
 	"Overview": "",
 	"Overview": "",
 	"page": "",
 	"page": "",
 	"Password": "Lozinka",
 	"Password": "Lozinka",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "PDF dokument (.pdf)",
 	"PDF document (.pdf)": "PDF dokument (.pdf)",
 	"PDF Extract Images (OCR)": "PDF izdvajanje slika (OCR)",
 	"PDF Extract Images (OCR)": "PDF izdvajanje slika (OCR)",
 	"pending": "u tijeku",
 	"pending": "u tijeku",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Povucite \"{{searchValue}}\" s Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Povucite \"{{searchValue}}\" s Ollama.com",
 	"Pull a model from Ollama.com": "Povucite model s Ollama.com",
 	"Pull a model from Ollama.com": "Povucite model s Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "Parametri upita",
 	"Query Params": "Parametri upita",
 	"RAG Template": "RAG predložak",
 	"RAG Template": "RAG predložak",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "Pretražite modele",
 	"Search Models": "Pretražite modele",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "Pretraga prompta",
 	"Search Prompts": "Pretraga prompta",
-	"Search Query Generation Prompt": "Upit za generiranje upita za pretraživanje",
 	"Search Result Count": "Broj rezultata pretraživanja",
 	"Search Result Count": "Broj rezultata pretraživanja",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "Alati za pretraživanje",
 	"Search Tools": "Alati za pretraživanje",
@@ -854,6 +860,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
 	"This will delete": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Detaljno objašnjenje",
 	"Thorough explanation": "Detaljno objašnjenje",
 	"Tika": "",
 	"Tika": "",

+ 9 - 1
src/lib/i18n/locales/hu-HU/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Haladó paraméterek",
 	"Advanced Params": "Haladó paraméterek",
 	"All chats": "Minden beszélgetés",
 	"All chats": "Minden beszélgetés",
 	"All Documents": "Minden dokumentum",
 	"All Documents": "Minden dokumentum",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Beszélgetések törlésének engedélyezése",
 	"Allow Chat Deletion": "Beszélgetések törlésének engedélyezése",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "Törlés",
 	"Delete": "Törlés",
 	"Delete a model": "Modell törlése",
 	"Delete a model": "Modell törlése",
 	"Delete All Chats": "Minden beszélgetés törlése",
 	"Delete All Chats": "Minden beszélgetés törlése",
+	"Delete All Models": "",
 	"Delete chat": "Beszélgetés törlése",
 	"Delete chat": "Beszélgetés törlése",
 	"Delete Chat": "Beszélgetés törlése",
 	"Delete Chat": "Beszélgetés törlése",
 	"Delete chat?": "Törli a beszélgetést?",
 	"Delete chat?": "Törli a beszélgetést?",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "Emoji megjelenítése hívásban",
 	"Display Emoji in Call": "Emoji megjelenítése hívásban",
 	"Display the username instead of You in the Chat": "Felhasználónév megjelenítése a 'Te' helyett a beszélgetésben",
 	"Display the username instead of You in the Chat": "Felhasználónév megjelenítése a 'Te' helyett a beszélgetésben",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "Ne telepíts funkciókat olyan forrásokból, amelyekben nem bízol teljesen.",
 	"Do not install functions from sources you do not fully trust.": "Ne telepíts funkciókat olyan forrásokból, amelyekben nem bízol teljesen.",
 	"Do not install tools from sources you do not fully trust.": "Ne telepíts eszközöket olyan forrásokból, amelyekben nem bízol teljesen.",
 	"Do not install tools from sources you do not fully trust.": "Ne telepíts eszközöket olyan forrásokból, amelyekben nem bízol teljesen.",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Beágyazási modell",
 	"Embedding Model": "Beágyazási modell",
 	"Embedding Model Engine": "Beágyazási modell motor",
 	"Embedding Model Engine": "Beágyazási modell motor",
 	"Embedding model set to \"{{embedding_model}}\"": "Beágyazási modell beállítva: \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Beágyazási modell beállítva: \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Közösségi megosztás engedélyezése",
 	"Enable Community Sharing": "Közösségi megosztás engedélyezése",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "Üzenet értékelés engedélyezése",
 	"Enable Message Rating": "Üzenet értékelés engedélyezése",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Új regisztrációk engedélyezése",
 	"Enable New Sign Ups": "Új regisztrációk engedélyezése",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "Webes keresés engedélyezése",
 	"Enable Web Search": "Webes keresés engedélyezése",
 	"Enable Web Search Query Generation": "Webes keresési lekérdezés generálás engedélyezése",
 	"Enable Web Search Query Generation": "Webes keresési lekérdezés generálás engedélyezése",
@@ -631,6 +636,7 @@
 	"Overview": "Áttekintés",
 	"Overview": "Áttekintés",
 	"page": "oldal",
 	"page": "oldal",
 	"Password": "Jelszó",
 	"Password": "Jelszó",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "PDF dokumentum (.pdf)",
 	"PDF document (.pdf)": "PDF dokumentum (.pdf)",
 	"PDF Extract Images (OCR)": "PDF képek kinyerése (OCR)",
 	"PDF Extract Images (OCR)": "PDF képek kinyerése (OCR)",
 	"pending": "függőben",
 	"pending": "függőben",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\" letöltése az Ollama.com-ról",
 	"Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\" letöltése az Ollama.com-ról",
 	"Pull a model from Ollama.com": "Modell letöltése az Ollama.com-ról",
 	"Pull a model from Ollama.com": "Modell letöltése az Ollama.com-ról",
+	"Query Generation Prompt": "",
 	"Query Params": "Lekérdezési paraméterek",
 	"Query Params": "Lekérdezési paraméterek",
 	"RAG Template": "RAG sablon",
 	"RAG Template": "RAG sablon",
 	"Rating": "Értékelés",
 	"Rating": "Értékelés",
@@ -725,7 +732,6 @@
 	"Search Models": "Modellek keresése",
 	"Search Models": "Modellek keresése",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "Promptok keresése",
 	"Search Prompts": "Promptok keresése",
-	"Search Query Generation Prompt": "Keresési lekérdezés generálási prompt",
 	"Search Result Count": "Keresési találatok száma",
 	"Search Result Count": "Keresési találatok száma",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "Eszközök keresése",
 	"Search Tools": "Eszközök keresése",
@@ -853,6 +859,8 @@
 	"This response was generated by \"{{model}}\"": "Ezt a választ a \"{{model}}\" generálta",
 	"This response was generated by \"{{model}}\"": "Ezt a választ a \"{{model}}\" generálta",
 	"This will delete": "Ez törölni fogja",
 	"This will delete": "Ez törölni fogja",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Ez törölni fogja a <strong>{{NAME}}</strong>-t és <strong>minden tartalmát</strong>.",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Ez törölni fogja a <strong>{{NAME}}</strong>-t és <strong>minden tartalmát</strong>.",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Ez visszaállítja a tudásbázist és szinkronizálja az összes fájlt. Szeretné folytatni?",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Ez visszaállítja a tudásbázist és szinkronizálja az összes fájlt. Szeretné folytatni?",
 	"Thorough explanation": "Alapos magyarázat",
 	"Thorough explanation": "Alapos magyarázat",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 9 - 1
src/lib/i18n/locales/id-ID/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Parameter Lanjutan",
 	"Advanced Params": "Parameter Lanjutan",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "Semua Dokumen",
 	"All Documents": "Semua Dokumen",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Izinkan Penghapusan Obrolan",
 	"Allow Chat Deletion": "Izinkan Penghapusan Obrolan",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "Menghapus",
 	"Delete": "Menghapus",
 	"Delete a model": "Menghapus model",
 	"Delete a model": "Menghapus model",
 	"Delete All Chats": "Menghapus Semua Obrolan",
 	"Delete All Chats": "Menghapus Semua Obrolan",
+	"Delete All Models": "",
 	"Delete chat": "Menghapus obrolan",
 	"Delete chat": "Menghapus obrolan",
 	"Delete Chat": "Menghapus Obrolan",
 	"Delete Chat": "Menghapus Obrolan",
 	"Delete chat?": "Menghapus obrolan?",
 	"Delete chat?": "Menghapus obrolan?",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "Menampilkan Emoji dalam Panggilan",
 	"Display Emoji in Call": "Menampilkan Emoji dalam Panggilan",
 	"Display the username instead of You in the Chat": "Menampilkan nama pengguna, bukan Anda di Obrolan",
 	"Display the username instead of You in the Chat": "Menampilkan nama pengguna, bukan Anda di Obrolan",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Model Penyematan",
 	"Embedding Model": "Model Penyematan",
 	"Embedding Model Engine": "Mesin Model Penyematan",
 	"Embedding Model Engine": "Mesin Model Penyematan",
 	"Embedding model set to \"{{embedding_model}}\"": "Model penyematan diatur ke \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Model penyematan diatur ke \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Aktifkan Berbagi Komunitas",
 	"Enable Community Sharing": "Aktifkan Berbagi Komunitas",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Aktifkan Pendaftaran Baru",
 	"Enable New Sign Ups": "Aktifkan Pendaftaran Baru",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "Aktifkan Pencarian Web",
 	"Enable Web Search": "Aktifkan Pencarian Web",
 	"Enable Web Search Query Generation": "",
 	"Enable Web Search Query Generation": "",
@@ -631,6 +636,7 @@
 	"Overview": "",
 	"Overview": "",
 	"page": "",
 	"page": "",
 	"Password": "Kata sandi",
 	"Password": "Kata sandi",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "Dokumen PDF (.pdf)",
 	"PDF document (.pdf)": "Dokumen PDF (.pdf)",
 	"PDF Extract Images (OCR)": "Ekstrak Gambar PDF (OCR)",
 	"PDF Extract Images (OCR)": "Ekstrak Gambar PDF (OCR)",
 	"pending": "tertunda",
 	"pending": "tertunda",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Tarik \"{{searchValue}}\" dari Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Tarik \"{{searchValue}}\" dari Ollama.com",
 	"Pull a model from Ollama.com": "Tarik model dari Ollama.com",
 	"Pull a model from Ollama.com": "Tarik model dari Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "Parameter Kueri",
 	"Query Params": "Parameter Kueri",
 	"RAG Template": "Templat RAG",
 	"RAG Template": "Templat RAG",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "Cari Model",
 	"Search Models": "Cari Model",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "Perintah Pencarian",
 	"Search Prompts": "Perintah Pencarian",
-	"Search Query Generation Prompt": "Permintaan Pembuatan Kueri Pencarian",
 	"Search Result Count": "Jumlah Hasil Pencarian",
 	"Search Result Count": "Jumlah Hasil Pencarian",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "Alat Pencarian",
 	"Search Tools": "Alat Pencarian",
@@ -853,6 +859,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "Ini akan menghapus",
 	"This will delete": "Ini akan menghapus",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Penjelasan menyeluruh",
 	"Thorough explanation": "Penjelasan menyeluruh",
 	"Tika": "",
 	"Tika": "",

+ 9 - 1
src/lib/i18n/locales/ie-GA/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Paraiméid Casta",
 	"Advanced Params": "Paraiméid Casta",
 	"All chats": "Gach comhrá",
 	"All chats": "Gach comhrá",
 	"All Documents": "Gach Doiciméad",
 	"All Documents": "Gach Doiciméad",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Cead Scriosadh Comhrá",
 	"Allow Chat Deletion": "Cead Scriosadh Comhrá",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "Scrios",
 	"Delete": "Scrios",
 	"Delete a model": "Scrios samhail",
 	"Delete a model": "Scrios samhail",
 	"Delete All Chats": "Scrios Gach Comhrá",
 	"Delete All Chats": "Scrios Gach Comhrá",
+	"Delete All Models": "",
 	"Delete chat": "Scrios comhrá",
 	"Delete chat": "Scrios comhrá",
 	"Delete Chat": "Scrios Comhrá",
 	"Delete Chat": "Scrios Comhrá",
 	"Delete chat?": "Scrios comhrá?",
 	"Delete chat?": "Scrios comhrá?",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "Taispeáin Emoji i nGlao",
 	"Display Emoji in Call": "Taispeáin Emoji i nGlao",
 	"Display the username instead of You in the Chat": "Taispeáin an t-ainm úsáideora in ionad Tú sa Comhrá",
 	"Display the username instead of You in the Chat": "Taispeáin an t-ainm úsáideora in ionad Tú sa Comhrá",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "Ná suiteáil feidhmeanna ó fhoinsí nach bhfuil muinín iomlán agat.",
 	"Do not install functions from sources you do not fully trust.": "Ná suiteáil feidhmeanna ó fhoinsí nach bhfuil muinín iomlán agat.",
 	"Do not install tools from sources you do not fully trust.": "Ná suiteáil uirlisí ó fhoinsí nach bhfuil muinín iomlán agat.",
 	"Do not install tools from sources you do not fully trust.": "Ná suiteáil uirlisí ó fhoinsí nach bhfuil muinín iomlán agat.",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Múnla Leabháilte",
 	"Embedding Model": "Múnla Leabháilte",
 	"Embedding Model Engine": "Inneall Múnla Ionchorprú",
 	"Embedding Model Engine": "Inneall Múnla Ionchorprú",
 	"Embedding model set to \"{{embedding_model}}\"": "Samhail leabaithe atá socraithe go \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Samhail leabaithe atá socraithe go \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Cumasaigh Comhroinnt Pobail",
 	"Enable Community Sharing": "Cumasaigh Comhroinnt Pobail",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "Cumasaigh Rátáil Teachtai",
 	"Enable Message Rating": "Cumasaigh Rátáil Teachtai",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Cumasaigh Clárúcháin Nua",
 	"Enable New Sign Ups": "Cumasaigh Clárúcháin Nua",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "Cumasaigh Cuardach Gréasáin",
 	"Enable Web Search": "Cumasaigh Cuardach Gréasáin",
 	"Enable Web Search Query Generation": "Cumasaigh Giniúint Ceist Cuardaigh Gréasáin",
 	"Enable Web Search Query Generation": "Cumasaigh Giniúint Ceist Cuardaigh Gréasáin",
@@ -631,6 +636,7 @@
 	"Overview": "Forbhreathnú",
 	"Overview": "Forbhreathnú",
 	"page": "leathanach",
 	"page": "leathanach",
 	"Password": "Pasfhocal",
 	"Password": "Pasfhocal",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "Doiciméad PDF (.pdf)",
 	"PDF document (.pdf)": "Doiciméad PDF (.pdf)",
 	"PDF Extract Images (OCR)": "Íomhánna Sliocht PDF (OCR)",
 	"PDF Extract Images (OCR)": "Íomhánna Sliocht PDF (OCR)",
 	"pending": "ar feitheamh",
 	"pending": "ar feitheamh",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Tarraing \"{{searchValue}}\" ó Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Tarraing \"{{searchValue}}\" ó Ollama.com",
 	"Pull a model from Ollama.com": "Tarraing múnla ó Ollama.com",
 	"Pull a model from Ollama.com": "Tarraing múnla ó Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "Fiosrúcháin Params",
 	"Query Params": "Fiosrúcháin Params",
 	"RAG Template": "Teimpléad RAG",
 	"RAG Template": "Teimpléad RAG",
 	"Rating": "Rátáil",
 	"Rating": "Rátáil",
@@ -725,7 +732,6 @@
 	"Search Models": "Múnlaí Cuardaigh",
 	"Search Models": "Múnlaí Cuardaigh",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "Leideanna Cuardaigh",
 	"Search Prompts": "Leideanna Cuardaigh",
-	"Search Query Generation Prompt": "Pras Giniúint Ceist Cuardaigh",
 	"Search Result Count": "Líon Torthaí Cuardaigh",
 	"Search Result Count": "Líon Torthaí Cuardaigh",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "Uirlisí Cuardaigh",
 	"Search Tools": "Uirlisí Cuardaigh",
@@ -853,6 +859,8 @@
 	"This response was generated by \"{{model}}\"": "Gin an freagra seo ag \"{{model}}\"",
 	"This response was generated by \"{{model}}\"": "Gin an freagra seo ag \"{{model}}\"",
 	"This will delete": "Scriosfaidh sé seo",
 	"This will delete": "Scriosfaidh sé seo",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Scriosfaidh sé seo <strong>{{NAME}}</strong> agus <strong>a bhfuil ann go léir</strong>.",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Scriosfaidh sé seo <strong>{{NAME}}</strong> agus <strong>a bhfuil ann go léir</strong>.",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Déanfaidh sé seo an bonn eolais a athshocrú agus gach comhad a shioncronú. Ar mhaith leat leanúint ar aghaidh?",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Déanfaidh sé seo an bonn eolais a athshocrú agus gach comhad a shioncronú. Ar mhaith leat leanúint ar aghaidh?",
 	"Thorough explanation": "Míniú críochnúil",
 	"Thorough explanation": "Míniú críochnúil",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 9 - 1
src/lib/i18n/locales/it-IT/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Parametri avanzati",
 	"Advanced Params": "Parametri avanzati",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "Tutti i documenti",
 	"All Documents": "Tutti i documenti",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Consenti l'eliminazione della chat",
 	"Allow Chat Deletion": "Consenti l'eliminazione della chat",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "Elimina",
 	"Delete": "Elimina",
 	"Delete a model": "Elimina un modello",
 	"Delete a model": "Elimina un modello",
 	"Delete All Chats": "Elimina tutte le chat",
 	"Delete All Chats": "Elimina tutte le chat",
+	"Delete All Models": "",
 	"Delete chat": "Elimina chat",
 	"Delete chat": "Elimina chat",
 	"Delete Chat": "Elimina chat",
 	"Delete Chat": "Elimina chat",
 	"Delete chat?": "",
 	"Delete chat?": "",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "",
 	"Display Emoji in Call": "",
 	"Display the username instead of You in the Chat": "Visualizza il nome utente invece di Tu nella chat",
 	"Display the username instead of You in the Chat": "Visualizza il nome utente invece di Tu nella chat",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Modello di embedding",
 	"Embedding Model": "Modello di embedding",
 	"Embedding Model Engine": "Motore del modello di embedding",
 	"Embedding Model Engine": "Motore del modello di embedding",
 	"Embedding model set to \"{{embedding_model}}\"": "Modello di embedding impostato su \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Modello di embedding impostato su \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Abilita la condivisione della community",
 	"Enable Community Sharing": "Abilita la condivisione della community",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Abilita nuove iscrizioni",
 	"Enable New Sign Ups": "Abilita nuove iscrizioni",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "Abilita ricerca Web",
 	"Enable Web Search": "Abilita ricerca Web",
 	"Enable Web Search Query Generation": "",
 	"Enable Web Search Query Generation": "",
@@ -631,6 +636,7 @@
 	"Overview": "",
 	"Overview": "",
 	"page": "",
 	"page": "",
 	"Password": "Password",
 	"Password": "Password",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "Documento PDF (.pdf)",
 	"PDF document (.pdf)": "Documento PDF (.pdf)",
 	"PDF Extract Images (OCR)": "Estrazione immagini PDF (OCR)",
 	"PDF Extract Images (OCR)": "Estrazione immagini PDF (OCR)",
 	"pending": "in sospeso",
 	"pending": "in sospeso",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Estrai \"{{searchValue}}\" da Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Estrai \"{{searchValue}}\" da Ollama.com",
 	"Pull a model from Ollama.com": "Estrai un modello da Ollama.com",
 	"Pull a model from Ollama.com": "Estrai un modello da Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "Parametri query",
 	"Query Params": "Parametri query",
 	"RAG Template": "Modello RAG",
 	"RAG Template": "Modello RAG",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "Cerca modelli",
 	"Search Models": "Cerca modelli",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "Cerca prompt",
 	"Search Prompts": "Cerca prompt",
-	"Search Query Generation Prompt": "",
 	"Search Result Count": "Conteggio dei risultati della ricerca",
 	"Search Result Count": "Conteggio dei risultati della ricerca",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "",
 	"Search Tools": "",
@@ -854,6 +860,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
 	"This will delete": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Spiegazione dettagliata",
 	"Thorough explanation": "Spiegazione dettagliata",
 	"Tika": "",
 	"Tika": "",

+ 9 - 1
src/lib/i18n/locales/ja-JP/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "高度なパラメータ",
 	"Advanced Params": "高度なパラメータ",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "全てのドキュメント",
 	"All Documents": "全てのドキュメント",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "チャットの削除を許可",
 	"Allow Chat Deletion": "チャットの削除を許可",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "削除",
 	"Delete": "削除",
 	"Delete a model": "モデルを削除",
 	"Delete a model": "モデルを削除",
 	"Delete All Chats": "すべてのチャットを削除",
 	"Delete All Chats": "すべてのチャットを削除",
+	"Delete All Models": "",
 	"Delete chat": "チャットを削除",
 	"Delete chat": "チャットを削除",
 	"Delete Chat": "チャットを削除",
 	"Delete Chat": "チャットを削除",
 	"Delete chat?": "チャットを削除しますか?",
 	"Delete chat?": "チャットを削除しますか?",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "コールで絵文字を表示",
 	"Display Emoji in Call": "コールで絵文字を表示",
 	"Display the username instead of You in the Chat": "チャットで「あなた」の代わりにユーザー名を表示",
 	"Display the username instead of You in the Chat": "チャットで「あなた」の代わりにユーザー名を表示",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "信頼できないソースからFunctionをインストールしないでください。",
 	"Do not install functions from sources you do not fully trust.": "信頼できないソースからFunctionをインストールしないでください。",
 	"Do not install tools from sources you do not fully trust.": "信頼出来ないソースからツールをインストールしないでください。",
 	"Do not install tools from sources you do not fully trust.": "信頼出来ないソースからツールをインストールしないでください。",
@@ -288,12 +291,14 @@
 	"Embedding Model": "埋め込みモデル",
 	"Embedding Model": "埋め込みモデル",
 	"Embedding Model Engine": "埋め込みモデルエンジン",
 	"Embedding Model Engine": "埋め込みモデルエンジン",
 	"Embedding model set to \"{{embedding_model}}\"": "埋め込みモデルを\"{{embedding_model}}\"に設定しました",
 	"Embedding model set to \"{{embedding_model}}\"": "埋め込みモデルを\"{{embedding_model}}\"に設定しました",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "コミュニティ共有を有効にする",
 	"Enable Community Sharing": "コミュニティ共有を有効にする",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "メッセージ評価を有効にする",
 	"Enable Message Rating": "メッセージ評価を有効にする",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "新規登録を有効にする",
 	"Enable New Sign Ups": "新規登録を有効にする",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "ウェブ検索を有効にする",
 	"Enable Web Search": "ウェブ検索を有効にする",
 	"Enable Web Search Query Generation": "ウェブ検索クエリ生成を有効にする",
 	"Enable Web Search Query Generation": "ウェブ検索クエリ生成を有効にする",
@@ -631,6 +636,7 @@
 	"Overview": "",
 	"Overview": "",
 	"page": "",
 	"page": "",
 	"Password": "パスワード",
 	"Password": "パスワード",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "PDF ドキュメント (.pdf)",
 	"PDF document (.pdf)": "PDF ドキュメント (.pdf)",
 	"PDF Extract Images (OCR)": "PDF 画像抽出 (OCR)",
 	"PDF Extract Images (OCR)": "PDF 画像抽出 (OCR)",
 	"pending": "保留中",
 	"pending": "保留中",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com から \"{{searchValue}}\" をプル",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com から \"{{searchValue}}\" をプル",
 	"Pull a model from Ollama.com": "Ollama.com からモデルをプル",
 	"Pull a model from Ollama.com": "Ollama.com からモデルをプル",
+	"Query Generation Prompt": "",
 	"Query Params": "クエリパラメーター",
 	"Query Params": "クエリパラメーター",
 	"RAG Template": "RAG テンプレート",
 	"RAG Template": "RAG テンプレート",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "モデル検索",
 	"Search Models": "モデル検索",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "プロンプトを検索",
 	"Search Prompts": "プロンプトを検索",
-	"Search Query Generation Prompt": "検索クエリ生成プロンプト",
 	"Search Result Count": "検索結果数",
 	"Search Result Count": "検索結果数",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "ツールの検索",
 	"Search Tools": "ツールの検索",
@@ -852,6 +858,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
 	"This will delete": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "詳細な説明",
 	"Thorough explanation": "詳細な説明",
 	"Tika": "",
 	"Tika": "",

+ 9 - 1
src/lib/i18n/locales/ka-GE/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "მოწინავე პარამები",
 	"Advanced Params": "მოწინავე პარამები",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "ყველა დოკუმენტი",
 	"All Documents": "ყველა დოკუმენტი",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "მიმოწერის წაშლის დაშვება",
 	"Allow Chat Deletion": "მიმოწერის წაშლის დაშვება",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "წაშლა",
 	"Delete": "წაშლა",
 	"Delete a model": "მოდელის წაშლა",
 	"Delete a model": "მოდელის წაშლა",
 	"Delete All Chats": "ყველა ჩატის წაშლა",
 	"Delete All Chats": "ყველა ჩატის წაშლა",
+	"Delete All Models": "",
 	"Delete chat": "შეტყობინების წაშლა",
 	"Delete chat": "შეტყობინების წაშლა",
 	"Delete Chat": "შეტყობინების წაშლა",
 	"Delete Chat": "შეტყობინების წაშლა",
 	"Delete chat?": "",
 	"Delete chat?": "",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "",
 	"Display Emoji in Call": "",
 	"Display the username instead of You in the Chat": "ჩატში აჩვენე მომხმარებლის სახელი თქვენს ნაცვლად",
 	"Display the username instead of You in the Chat": "ჩატში აჩვენე მომხმარებლის სახელი თქვენს ნაცვლად",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
@@ -288,12 +291,14 @@
 	"Embedding Model": "ჩასმის ძირითადი პროგრამა",
 	"Embedding Model": "ჩასმის ძირითადი პროგრამა",
 	"Embedding Model Engine": "ჩასმის ძირითადი პროგრამა",
 	"Embedding Model Engine": "ჩასმის ძირითადი პროგრამა",
 	"Embedding model set to \"{{embedding_model}}\"": "ჩასმის ძირითადი პროგრამა ჩართულია \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "ჩასმის ძირითადი პროგრამა ჩართულია \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "საზოგადოების გაზიარების ჩართვა",
 	"Enable Community Sharing": "საზოგადოების გაზიარების ჩართვა",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "ახალი რეგისტრაციების ჩართვა",
 	"Enable New Sign Ups": "ახალი რეგისტრაციების ჩართვა",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "ვებ ძიების ჩართვა",
 	"Enable Web Search": "ვებ ძიების ჩართვა",
 	"Enable Web Search Query Generation": "",
 	"Enable Web Search Query Generation": "",
@@ -631,6 +636,7 @@
 	"Overview": "",
 	"Overview": "",
 	"page": "",
 	"page": "",
 	"Password": "პაროლი",
 	"Password": "პაროლი",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "PDF დოკუმენტი (.pdf)",
 	"PDF document (.pdf)": "PDF დოკუმენტი (.pdf)",
 	"PDF Extract Images (OCR)": "PDF იდან ამოღებული სურათები (OCR)",
 	"PDF Extract Images (OCR)": "PDF იდან ამოღებული სურათები (OCR)",
 	"pending": "ლოდინის რეჟიმშია",
 	"pending": "ლოდინის რეჟიმშია",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "ჩაიამოვეთ \"{{searchValue}}\" Ollama.com-იდან",
 	"Pull \"{{searchValue}}\" from Ollama.com": "ჩაიამოვეთ \"{{searchValue}}\" Ollama.com-იდან",
 	"Pull a model from Ollama.com": "Ollama.com იდან მოდელის გადაწერა ",
 	"Pull a model from Ollama.com": "Ollama.com იდან მოდელის გადაწერა ",
+	"Query Generation Prompt": "",
 	"Query Params": "პარამეტრების ძიება",
 	"Query Params": "პარამეტრების ძიება",
 	"RAG Template": "RAG შაბლონი",
 	"RAG Template": "RAG შაბლონი",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "საძიებო მოდელები",
 	"Search Models": "საძიებო მოდელები",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "მოთხოვნების ძიება",
 	"Search Prompts": "მოთხოვნების ძიება",
-	"Search Query Generation Prompt": "",
 	"Search Result Count": "ძიების შედეგების რაოდენობა",
 	"Search Result Count": "ძიების შედეგების რაოდენობა",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "",
 	"Search Tools": "",
@@ -853,6 +859,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
 	"This will delete": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "ვრცლად აღწერა",
 	"Thorough explanation": "ვრცლად აღწერა",
 	"Tika": "",
 	"Tika": "",

+ 9 - 1
src/lib/i18n/locales/ko-KR/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "고급 매개변수",
 	"Advanced Params": "고급 매개변수",
 	"All chats": "모든 채팅",
 	"All chats": "모든 채팅",
 	"All Documents": "모든 문서",
 	"All Documents": "모든 문서",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "채팅 삭제 허용",
 	"Allow Chat Deletion": "채팅 삭제 허용",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "삭제",
 	"Delete": "삭제",
 	"Delete a model": "모델 삭제",
 	"Delete a model": "모델 삭제",
 	"Delete All Chats": "모든 채팅 삭제",
 	"Delete All Chats": "모든 채팅 삭제",
+	"Delete All Models": "",
 	"Delete chat": "채팅 삭제",
 	"Delete chat": "채팅 삭제",
 	"Delete Chat": "채팅 삭제",
 	"Delete Chat": "채팅 삭제",
 	"Delete chat?": "채팅을 삭제하겠습니까?",
 	"Delete chat?": "채팅을 삭제하겠습니까?",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "음성기능에서 이모지 표시",
 	"Display Emoji in Call": "음성기능에서 이모지 표시",
 	"Display the username instead of You in the Chat": "채팅에서 '당신' 대신 사용자 이름 표시",
 	"Display the username instead of You in the Chat": "채팅에서 '당신' 대신 사용자 이름 표시",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "불분명한 출처를 가진 함수를 설치하지마세요",
 	"Do not install functions from sources you do not fully trust.": "불분명한 출처를 가진 함수를 설치하지마세요",
 	"Do not install tools from sources you do not fully trust.": "불분명한 출처를 가진 도구를 설치하지마세요",
 	"Do not install tools from sources you do not fully trust.": "불분명한 출처를 가진 도구를 설치하지마세요",
@@ -288,12 +291,14 @@
 	"Embedding Model": "임베딩 모델",
 	"Embedding Model": "임베딩 모델",
 	"Embedding Model Engine": "임베딩 모델 엔진",
 	"Embedding Model Engine": "임베딩 모델 엔진",
 	"Embedding model set to \"{{embedding_model}}\"": "임베딩 모델을 \"{{embedding_model}}\"로 설정함",
 	"Embedding model set to \"{{embedding_model}}\"": "임베딩 모델을 \"{{embedding_model}}\"로 설정함",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "커뮤니티 공유 활성화",
 	"Enable Community Sharing": "커뮤니티 공유 활성화",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "메시지 평가 활성화",
 	"Enable Message Rating": "메시지 평가 활성화",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "새 회원가입 활성화",
 	"Enable New Sign Ups": "새 회원가입 활성화",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "웹 검색 활성화",
 	"Enable Web Search": "웹 검색 활성화",
 	"Enable Web Search Query Generation": "웹 검색 쿼리 생성 활성화",
 	"Enable Web Search Query Generation": "웹 검색 쿼리 생성 활성화",
@@ -631,6 +636,7 @@
 	"Overview": "개요",
 	"Overview": "개요",
 	"page": "페이지",
 	"page": "페이지",
 	"Password": "비밀번호",
 	"Password": "비밀번호",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "PDF 문서(.pdf)",
 	"PDF document (.pdf)": "PDF 문서(.pdf)",
 	"PDF Extract Images (OCR)": "PDF 이미지 추출(OCR)",
 	"PDF Extract Images (OCR)": "PDF 이미지 추출(OCR)",
 	"pending": "보류 중",
 	"pending": "보류 중",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com에서 \"{{searchValue}}\" 가져오기",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com에서 \"{{searchValue}}\" 가져오기",
 	"Pull a model from Ollama.com": "Ollama.com에서 모델 가져오기(pull)",
 	"Pull a model from Ollama.com": "Ollama.com에서 모델 가져오기(pull)",
+	"Query Generation Prompt": "",
 	"Query Params": "쿼리 파라미터",
 	"Query Params": "쿼리 파라미터",
 	"RAG Template": "RAG 템플릿",
 	"RAG Template": "RAG 템플릿",
 	"Rating": "평가",
 	"Rating": "평가",
@@ -725,7 +732,6 @@
 	"Search Models": "모델 검색",
 	"Search Models": "모델 검색",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "프롬프트 검색",
 	"Search Prompts": "프롬프트 검색",
-	"Search Query Generation Prompt": "쿼리 생성 프롬프트 검색",
 	"Search Result Count": "검색 결과 수",
 	"Search Result Count": "검색 결과 수",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "검색 도구",
 	"Search Tools": "검색 도구",
@@ -853,6 +859,8 @@
 	"This response was generated by \"{{model}}\"": "\"{{model}}\"이 생성한 응답입니다",
 	"This response was generated by \"{{model}}\"": "\"{{model}}\"이 생성한 응답입니다",
 	"This will delete": "이것은 다음을 삭제합니다.",
 	"This will delete": "이것은 다음을 삭제합니다.",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "<strong>{{NAME}}</strong> 와 <strong>모든 내용</strong>을 삭제합니다.",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "<strong>{{NAME}}</strong> 와 <strong>모든 내용</strong>을 삭제합니다.",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "지식 기반과 모든 파일 연동을 초기화합니다. 계속 하시겠습니까?",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "지식 기반과 모든 파일 연동을 초기화합니다. 계속 하시겠습니까?",
 	"Thorough explanation": "완전한 설명",
 	"Thorough explanation": "완전한 설명",
 	"Tika": "티카(Tika)",
 	"Tika": "티카(Tika)",

+ 9 - 1
src/lib/i18n/locales/lt-LT/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Pažengę nustatymai",
 	"Advanced Params": "Pažengę nustatymai",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "Visi dokumentai",
 	"All Documents": "Visi dokumentai",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Leisti pokalbių ištrynimą",
 	"Allow Chat Deletion": "Leisti pokalbių ištrynimą",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "ištrinti",
 	"Delete": "ištrinti",
 	"Delete a model": "Ištrinti modėlį",
 	"Delete a model": "Ištrinti modėlį",
 	"Delete All Chats": "Ištrinti visus pokalbius",
 	"Delete All Chats": "Ištrinti visus pokalbius",
+	"Delete All Models": "",
 	"Delete chat": "Išrinti pokalbį",
 	"Delete chat": "Išrinti pokalbį",
 	"Delete Chat": "Ištrinti pokalbį",
 	"Delete Chat": "Ištrinti pokalbį",
 	"Delete chat?": "Ištrinti pokalbį?",
 	"Delete chat?": "Ištrinti pokalbį?",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "Rodyti emoji pokalbiuose",
 	"Display Emoji in Call": "Rodyti emoji pokalbiuose",
 	"Display the username instead of You in the Chat": "Rodyti naudotojo vardą vietoje žodžio Jūs pokalbyje",
 	"Display the username instead of You in the Chat": "Rodyti naudotojo vardą vietoje žodžio Jūs pokalbyje",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "Neinstaliuokite funkcijų iš nepatikimų šaltinių",
 	"Do not install functions from sources you do not fully trust.": "Neinstaliuokite funkcijų iš nepatikimų šaltinių",
 	"Do not install tools from sources you do not fully trust.": "Neinstaliuokite įrankių iš nepatikimų šaltinių",
 	"Do not install tools from sources you do not fully trust.": "Neinstaliuokite įrankių iš nepatikimų šaltinių",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Embedding modelis",
 	"Embedding Model": "Embedding modelis",
 	"Embedding Model Engine": "Embedding modelio variklis",
 	"Embedding Model Engine": "Embedding modelio variklis",
 	"Embedding model set to \"{{embedding_model}}\"": "Embedding modelis nustatytas kaip\"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Embedding modelis nustatytas kaip\"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Leisti dalinimąsi su bendruomene",
 	"Enable Community Sharing": "Leisti dalinimąsi su bendruomene",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Aktyvuoti naujas registracijas",
 	"Enable New Sign Ups": "Aktyvuoti naujas registracijas",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "Leisti paiešką internete",
 	"Enable Web Search": "Leisti paiešką internete",
 	"Enable Web Search Query Generation": "",
 	"Enable Web Search Query Generation": "",
@@ -631,6 +636,7 @@
 	"Overview": "",
 	"Overview": "",
 	"page": "",
 	"page": "",
 	"Password": "Slaptažodis",
 	"Password": "Slaptažodis",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "PDF dokumentas (.pdf)",
 	"PDF document (.pdf)": "PDF dokumentas (.pdf)",
 	"PDF Extract Images (OCR)": "PDF paveikslėlių skaitymas (OCR)",
 	"PDF Extract Images (OCR)": "PDF paveikslėlių skaitymas (OCR)",
 	"pending": "laukiama",
 	"pending": "laukiama",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Rasti \"{{searchValue}}\" iš Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Rasti \"{{searchValue}}\" iš Ollama.com",
 	"Pull a model from Ollama.com": "Gauti modelį iš Ollama.com",
 	"Pull a model from Ollama.com": "Gauti modelį iš Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "Užklausos parametrai",
 	"Query Params": "Užklausos parametrai",
 	"RAG Template": "RAG šablonas",
 	"RAG Template": "RAG šablonas",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "Ieškoti modelių",
 	"Search Models": "Ieškoti modelių",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "Ieškoti užklausų",
 	"Search Prompts": "Ieškoti užklausų",
-	"Search Query Generation Prompt": "Paieškos užklausos generavimo formuluotė",
 	"Search Result Count": "Paieškos rezultatų skaičius",
 	"Search Result Count": "Paieškos rezultatų skaičius",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "Paieškos įrankiai",
 	"Search Tools": "Paieškos įrankiai",
@@ -855,6 +861,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "Tai ištrins",
 	"This will delete": "Tai ištrins",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Platus paaiškinimas",
 	"Thorough explanation": "Platus paaiškinimas",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 9 - 1
src/lib/i18n/locales/ms-MY/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Parameter Lanjutan",
 	"Advanced Params": "Parameter Lanjutan",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "Semua Dokumen",
 	"All Documents": "Semua Dokumen",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Benarkan Penghapusan Perbualan",
 	"Allow Chat Deletion": "Benarkan Penghapusan Perbualan",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "Padam",
 	"Delete": "Padam",
 	"Delete a model": "Padam Model",
 	"Delete a model": "Padam Model",
 	"Delete All Chats": "Padam Semua Perbualan",
 	"Delete All Chats": "Padam Semua Perbualan",
+	"Delete All Models": "",
 	"Delete chat": "Padam perbualan",
 	"Delete chat": "Padam perbualan",
 	"Delete Chat": "Padam Perbualan",
 	"Delete Chat": "Padam Perbualan",
 	"Delete chat?": "Padam perbualan?",
 	"Delete chat?": "Padam perbualan?",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "Paparkan Emoji dalam Panggilan",
 	"Display Emoji in Call": "Paparkan Emoji dalam Panggilan",
 	"Display the username instead of You in the Chat": "Paparkan nama pengguna dan bukannya 'Anda' dalam Sembang",
 	"Display the username instead of You in the Chat": "Paparkan nama pengguna dan bukannya 'Anda' dalam Sembang",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "Jangan pasang fungsi daripada sumber yang anda tidak percayai sepenuhnya.",
 	"Do not install functions from sources you do not fully trust.": "Jangan pasang fungsi daripada sumber yang anda tidak percayai sepenuhnya.",
 	"Do not install tools from sources you do not fully trust.": "Jangan pasang alat daripada sumber yang anda tidak percaya sepenuhnya.",
 	"Do not install tools from sources you do not fully trust.": "Jangan pasang alat daripada sumber yang anda tidak percaya sepenuhnya.",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Model Benamkan",
 	"Embedding Model": "Model Benamkan",
 	"Embedding Model Engine": "Enjin Model Benamkan",
 	"Embedding Model Engine": "Enjin Model Benamkan",
 	"Embedding model set to \"{{embedding_model}}\"": "Model Benamkan ditetapkan kepada \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Model Benamkan ditetapkan kepada \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Benarkan Perkongsian Komuniti",
 	"Enable Community Sharing": "Benarkan Perkongsian Komuniti",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Benarkan Pendaftaran Baharu",
 	"Enable New Sign Ups": "Benarkan Pendaftaran Baharu",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "Benarkan Carian Web",
 	"Enable Web Search": "Benarkan Carian Web",
 	"Enable Web Search Query Generation": "",
 	"Enable Web Search Query Generation": "",
@@ -631,6 +636,7 @@
 	"Overview": "",
 	"Overview": "",
 	"page": "",
 	"page": "",
 	"Password": "Kata Laluan",
 	"Password": "Kata Laluan",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "Dokumen PDF (.pdf)",
 	"PDF document (.pdf)": "Dokumen PDF (.pdf)",
 	"PDF Extract Images (OCR)": "Imej Ekstrak PDF (OCR)",
 	"PDF Extract Images (OCR)": "Imej Ekstrak PDF (OCR)",
 	"pending": "tertunda",
 	"pending": "tertunda",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Tarik \"{{ searchValue }}\" daripada Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Tarik \"{{ searchValue }}\" daripada Ollama.com",
 	"Pull a model from Ollama.com": "Tarik model dari Ollama.com",
 	"Pull a model from Ollama.com": "Tarik model dari Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "'Query Params'",
 	"Query Params": "'Query Params'",
 	"RAG Template": "Templat RAG",
 	"RAG Template": "Templat RAG",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "Carian Model",
 	"Search Models": "Carian Model",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "Carian Gesaan",
 	"Search Prompts": "Carian Gesaan",
-	"Search Query Generation Prompt": "Carian Penjanaan Pertanyaan Gesaan",
 	"Search Result Count": "Kiraan Hasil Carian",
 	"Search Result Count": "Kiraan Hasil Carian",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "Alat Carian",
 	"Search Tools": "Alat Carian",
@@ -853,6 +859,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "Ini akan memadam",
 	"This will delete": "Ini akan memadam",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Penjelasan menyeluruh",
 	"Thorough explanation": "Penjelasan menyeluruh",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 9 - 1
src/lib/i18n/locales/nb-NO/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Avanserte parametere",
 	"Advanced Params": "Avanserte parametere",
 	"All chats": "Alle chatter",
 	"All chats": "Alle chatter",
 	"All Documents": "Alle dokumenter",
 	"All Documents": "Alle dokumenter",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Tillat sletting av chatter",
 	"Allow Chat Deletion": "Tillat sletting av chatter",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "Slett",
 	"Delete": "Slett",
 	"Delete a model": "Slett en modell",
 	"Delete a model": "Slett en modell",
 	"Delete All Chats": "Slett alle chatter",
 	"Delete All Chats": "Slett alle chatter",
+	"Delete All Models": "",
 	"Delete chat": "Slett chat",
 	"Delete chat": "Slett chat",
 	"Delete Chat": "Slett chat",
 	"Delete Chat": "Slett chat",
 	"Delete chat?": "Slette chat?",
 	"Delete chat?": "Slette chat?",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "Vis emoji i samtale",
 	"Display Emoji in Call": "Vis emoji i samtale",
 	"Display the username instead of You in the Chat": "Vis brukernavnet i stedet for Du i chatten",
 	"Display the username instead of You in the Chat": "Vis brukernavnet i stedet for Du i chatten",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "Bli kjent med kunnskap",
 	"Dive into knowledge": "Bli kjent med kunnskap",
 	"Do not install functions from sources you do not fully trust.": "Ikke installer funksjoner fra kilder du ikke stoler på.",
 	"Do not install functions from sources you do not fully trust.": "Ikke installer funksjoner fra kilder du ikke stoler på.",
 	"Do not install tools from sources you do not fully trust.": "Ikke installer verktøy fra kilder du ikke stoler på.",
 	"Do not install tools from sources you do not fully trust.": "Ikke installer verktøy fra kilder du ikke stoler på.",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Innbyggingsmodell",
 	"Embedding Model": "Innbyggingsmodell",
 	"Embedding Model Engine": "Motor for innbygging av modeller",
 	"Embedding Model Engine": "Motor for innbygging av modeller",
 	"Embedding model set to \"{{embedding_model}}\"": "Innbyggingsmodell angitt til \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Innbyggingsmodell angitt til \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Aktiver deling i fellesskap",
 	"Enable Community Sharing": "Aktiver deling i fellesskap",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Aktiver Memory Locking (mlock) for å forhindre at modelldata byttes ut av RAM. Dette alternativet låser modellens arbeidssett med sider i RAM-minnet, slik at de ikke byttes ut til disk. Dette kan bidra til å opprettholde ytelsen ved å unngå sidefeil og sikre rask datatilgang.",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Aktiver Memory Locking (mlock) for å forhindre at modelldata byttes ut av RAM. Dette alternativet låser modellens arbeidssett med sider i RAM-minnet, slik at de ikke byttes ut til disk. Dette kan bidra til å opprettholde ytelsen ved å unngå sidefeil og sikre rask datatilgang.",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "Aktiver Memory Mapping (mmap) for å laste inn modelldata. Med dette alternativet kan systemet bruke disklagring som en utvidelse av RAM ved å behandle diskfiler som om de befant seg i RAM. Dette kan forbedre modellens ytelse ved å gi raskere datatilgang. Det er imidlertid ikke sikkert at det fungerer som det skal på alle systemer, og det kan kreve mye diskplass.",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "Aktiver Memory Mapping (mmap) for å laste inn modelldata. Med dette alternativet kan systemet bruke disklagring som en utvidelse av RAM ved å behandle diskfiler som om de befant seg i RAM. Dette kan forbedre modellens ytelse ved å gi raskere datatilgang. Det er imidlertid ikke sikkert at det fungerer som det skal på alle systemer, og det kan kreve mye diskplass.",
 	"Enable Message Rating": "Aktivert vurdering av meldinger",
 	"Enable Message Rating": "Aktivert vurdering av meldinger",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Aktiver Mirostat-sampling for kontroll av perpleksitet. (Standard: 0, 0 = deaktivert, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Aktiver Mirostat-sampling for kontroll av perpleksitet. (Standard: 0, 0 = deaktivert, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable New Sign Ups": "Aktiver nye registreringer",
 	"Enable New Sign Ups": "Aktiver nye registreringer",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "Aktiver generering av etiketter",
 	"Enable Tags Generation": "Aktiver generering av etiketter",
 	"Enable Web Search": "Aktiver websøk",
 	"Enable Web Search": "Aktiver websøk",
 	"Enable Web Search Query Generation": "Aktiver generering av spørringer for nettsøk",
 	"Enable Web Search Query Generation": "Aktiver generering av spørringer for nettsøk",
@@ -631,6 +636,7 @@
 	"Overview": "Oversikt",
 	"Overview": "Oversikt",
 	"page": "side",
 	"page": "side",
 	"Password": "Passord",
 	"Password": "Passord",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "PDF-dokument (.pdf)",
 	"PDF document (.pdf)": "PDF-dokument (.pdf)",
 	"PDF Extract Images (OCR)": "Uthenting av PDF-bilder (OCR)",
 	"PDF Extract Images (OCR)": "Uthenting av PDF-bilder (OCR)",
 	"pending": "avventer",
 	"pending": "avventer",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Hent \"{{searchValue}}\" fra Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Hent \"{{searchValue}}\" fra Ollama.com",
 	"Pull a model from Ollama.com": "Hent en modell fra Ollama.com",
 	"Pull a model from Ollama.com": "Hent en modell fra Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "Spørringsparametere",
 	"Query Params": "Spørringsparametere",
 	"RAG Template": "RAG-mal",
 	"RAG Template": "RAG-mal",
 	"Rating": "Vurdering",
 	"Rating": "Vurdering",
@@ -725,7 +732,6 @@
 	"Search Models": "Søk etter modeller",
 	"Search Models": "Søk etter modeller",
 	"Search options": "Søk etter alternativer",
 	"Search options": "Søk etter alternativer",
 	"Search Prompts": "Søk etter ledetekster",
 	"Search Prompts": "Søk etter ledetekster",
-	"Search Query Generation Prompt": "Ledetekst for generering av søkespørringer",
 	"Search Result Count": "Antall søkeresultater",
 	"Search Result Count": "Antall søkeresultater",
 	"Search the web": "Søk på nettet",
 	"Search the web": "Søk på nettet",
 	"Search Tools": "Søkeverktøy",
 	"Search Tools": "Søkeverktøy",
@@ -853,6 +859,8 @@
 	"This response was generated by \"{{model}}\"": "Dette svaret er generert av \"{{modell}}\"",
 	"This response was generated by \"{{model}}\"": "Dette svaret er generert av \"{{modell}}\"",
 	"This will delete": "Dette sletter",
 	"This will delete": "Dette sletter",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Dette sletter <strong>{{NAME}}</strong> og <strong>alt innholdet</strong>.",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Dette sletter <strong>{{NAME}}</strong> og <strong>alt innholdet</strong>.",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Dette tilbakestiller kunnskapsbasen og synkroniserer alle filer. Vil du fortsette?",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Dette tilbakestiller kunnskapsbasen og synkroniserer alle filer. Vil du fortsette?",
 	"Thorough explanation": "Grundig forklaring",
 	"Thorough explanation": "Grundig forklaring",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 9 - 1
src/lib/i18n/locales/nl-NL/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Geavanceerde Parameters",
 	"Advanced Params": "Geavanceerde Parameters",
 	"All chats": "Alle chats",
 	"All chats": "Alle chats",
 	"All Documents": "Alle Documenten",
 	"All Documents": "Alle Documenten",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Sta Chat Verwijdering toe",
 	"Allow Chat Deletion": "Sta Chat Verwijdering toe",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "Verwijderen",
 	"Delete": "Verwijderen",
 	"Delete a model": "Verwijder een model",
 	"Delete a model": "Verwijder een model",
 	"Delete All Chats": "Verwijder alle chats",
 	"Delete All Chats": "Verwijder alle chats",
+	"Delete All Models": "",
 	"Delete chat": "Verwijder chat",
 	"Delete chat": "Verwijder chat",
 	"Delete Chat": "Verwijder Chat",
 	"Delete Chat": "Verwijder Chat",
 	"Delete chat?": "Verwijder chat?",
 	"Delete chat?": "Verwijder chat?",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "Emoji weergeven tijdens gesprek",
 	"Display Emoji in Call": "Emoji weergeven tijdens gesprek",
 	"Display the username instead of You in the Chat": "Toon de gebruikersnaam in plaats van Jij in de Chat",
 	"Display the username instead of You in the Chat": "Toon de gebruikersnaam in plaats van Jij in de Chat",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "Installeer geen functies vanuit bronnen die je niet volledig vertrouwt",
 	"Do not install functions from sources you do not fully trust.": "Installeer geen functies vanuit bronnen die je niet volledig vertrouwt",
 	"Do not install tools from sources you do not fully trust.": "Installeer geen tools vanuit bronnen die je niet volledig vertrouwt.",
 	"Do not install tools from sources you do not fully trust.": "Installeer geen tools vanuit bronnen die je niet volledig vertrouwt.",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Embedding Model",
 	"Embedding Model": "Embedding Model",
 	"Embedding Model Engine": "Embedding Model Engine",
 	"Embedding Model Engine": "Embedding Model Engine",
 	"Embedding model set to \"{{embedding_model}}\"": "Embedding model ingesteld op \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Embedding model ingesteld op \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Delen via de community inschakelen",
 	"Enable Community Sharing": "Delen via de community inschakelen",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "Schakel berichtbeoordeling in",
 	"Enable Message Rating": "Schakel berichtbeoordeling in",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Schakel Nieuwe Registraties in",
 	"Enable New Sign Ups": "Schakel Nieuwe Registraties in",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "Zoeken op het web inschakelen",
 	"Enable Web Search": "Zoeken op het web inschakelen",
 	"Enable Web Search Query Generation": "Schakel zoekopdrachtgeneratie in",
 	"Enable Web Search Query Generation": "Schakel zoekopdrachtgeneratie in",
@@ -631,6 +636,7 @@
 	"Overview": "Overzicht",
 	"Overview": "Overzicht",
 	"page": "Pagina",
 	"page": "Pagina",
 	"Password": "Wachtwoord",
 	"Password": "Wachtwoord",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "PDF document (.pdf)",
 	"PDF document (.pdf)": "PDF document (.pdf)",
 	"PDF Extract Images (OCR)": "PDF Extract Afbeeldingen (OCR)",
 	"PDF Extract Images (OCR)": "PDF Extract Afbeeldingen (OCR)",
 	"pending": "wachtend",
 	"pending": "wachtend",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Haal \"{{searchValue}}\" uit Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Haal \"{{searchValue}}\" uit Ollama.com",
 	"Pull a model from Ollama.com": "Haal een model van Ollama.com",
 	"Pull a model from Ollama.com": "Haal een model van Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "Query Params",
 	"Query Params": "Query Params",
 	"RAG Template": "RAG Template",
 	"RAG Template": "RAG Template",
 	"Rating": "Beoordeling",
 	"Rating": "Beoordeling",
@@ -725,7 +732,6 @@
 	"Search Models": "Modellen zoeken",
 	"Search Models": "Modellen zoeken",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "Zoek Prompts",
 	"Search Prompts": "Zoek Prompts",
-	"Search Query Generation Prompt": "Zoekopdracht promptgeneratie",
 	"Search Result Count": "Aantal zoekresultaten",
 	"Search Result Count": "Aantal zoekresultaten",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "Zoek gereedschappen",
 	"Search Tools": "Zoek gereedschappen",
@@ -853,6 +859,8 @@
 	"This response was generated by \"{{model}}\"": "Dit antwoord is gegenereerd door  \"{{model}}\"",
 	"This response was generated by \"{{model}}\"": "Dit antwoord is gegenereerd door  \"{{model}}\"",
 	"This will delete": "Dit zal verwijderen",
 	"This will delete": "Dit zal verwijderen",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Dit zal <strong>{{NAME}}</strong> verwijderen en <strong>al zijn inhoud</strong>.",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Dit zal <strong>{{NAME}}</strong> verwijderen en <strong>al zijn inhoud</strong>.",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Dit zal de kennisdatabase resetten en alle bestanden synchroniseren. Wilt u doorgaan?",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Dit zal de kennisdatabase resetten en alle bestanden synchroniseren. Wilt u doorgaan?",
 	"Thorough explanation": "Gevorderde uitleg",
 	"Thorough explanation": "Gevorderde uitleg",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 9 - 1
src/lib/i18n/locales/pa-IN/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "ਐਡਵਾਂਸਡ ਪਰਮਜ਼",
 	"Advanced Params": "ਐਡਵਾਂਸਡ ਪਰਮਜ਼",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "ਸਾਰੇ ਡਾਕੂਮੈਂਟ",
 	"All Documents": "ਸਾਰੇ ਡਾਕੂਮੈਂਟ",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "ਗੱਲਬਾਤ ਮਿਟਾਉਣ ਦੀ ਆਗਿਆ ਦਿਓ",
 	"Allow Chat Deletion": "ਗੱਲਬਾਤ ਮਿਟਾਉਣ ਦੀ ਆਗਿਆ ਦਿਓ",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "ਮਿਟਾਓ",
 	"Delete": "ਮਿਟਾਓ",
 	"Delete a model": "ਇੱਕ ਮਾਡਲ ਮਿਟਾਓ",
 	"Delete a model": "ਇੱਕ ਮਾਡਲ ਮਿਟਾਓ",
 	"Delete All Chats": "ਸਾਰੀਆਂ ਚੈਟਾਂ ਨੂੰ ਮਿਟਾਓ",
 	"Delete All Chats": "ਸਾਰੀਆਂ ਚੈਟਾਂ ਨੂੰ ਮਿਟਾਓ",
+	"Delete All Models": "",
 	"Delete chat": "ਗੱਲਬਾਤ ਮਿਟਾਓ",
 	"Delete chat": "ਗੱਲਬਾਤ ਮਿਟਾਓ",
 	"Delete Chat": "ਗੱਲਬਾਤ ਮਿਟਾਓ",
 	"Delete Chat": "ਗੱਲਬਾਤ ਮਿਟਾਓ",
 	"Delete chat?": "",
 	"Delete chat?": "",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "",
 	"Display Emoji in Call": "",
 	"Display the username instead of You in the Chat": "ਗੱਲਬਾਤ 'ਚ ਤੁਹਾਡੇ ਸਥਾਨ 'ਤੇ ਉਪਭੋਗਤਾ ਨਾਮ ਦਿਖਾਓ",
 	"Display the username instead of You in the Chat": "ਗੱਲਬਾਤ 'ਚ ਤੁਹਾਡੇ ਸਥਾਨ 'ਤੇ ਉਪਭੋਗਤਾ ਨਾਮ ਦਿਖਾਓ",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
@@ -288,12 +291,14 @@
 	"Embedding Model": "ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ",
 	"Embedding Model": "ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ",
 	"Embedding Model Engine": "ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ ਇੰਜਣ",
 	"Embedding Model Engine": "ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ ਇੰਜਣ",
 	"Embedding model set to \"{{embedding_model}}\"": "ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ ਨੂੰ \"{{embedding_model}}\" 'ਤੇ ਸੈੱਟ ਕੀਤਾ ਗਿਆ",
 	"Embedding model set to \"{{embedding_model}}\"": "ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ ਨੂੰ \"{{embedding_model}}\" 'ਤੇ ਸੈੱਟ ਕੀਤਾ ਗਿਆ",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "ਕਮਿਊਨਿਟੀ ਸ਼ੇਅਰਿੰਗ ਨੂੰ ਸਮਰੱਥ ਕਰੋ",
 	"Enable Community Sharing": "ਕਮਿਊਨਿਟੀ ਸ਼ੇਅਰਿੰਗ ਨੂੰ ਸਮਰੱਥ ਕਰੋ",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "ਨਵੇਂ ਸਾਈਨ ਅਪ ਯੋਗ ਕਰੋ",
 	"Enable New Sign Ups": "ਨਵੇਂ ਸਾਈਨ ਅਪ ਯੋਗ ਕਰੋ",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "ਵੈੱਬ ਖੋਜ ਨੂੰ ਸਮਰੱਥ ਕਰੋ",
 	"Enable Web Search": "ਵੈੱਬ ਖੋਜ ਨੂੰ ਸਮਰੱਥ ਕਰੋ",
 	"Enable Web Search Query Generation": "",
 	"Enable Web Search Query Generation": "",
@@ -631,6 +636,7 @@
 	"Overview": "",
 	"Overview": "",
 	"page": "",
 	"page": "",
 	"Password": "ਪਾਸਵਰਡ",
 	"Password": "ਪਾਸਵਰਡ",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "PDF ਡਾਕੂਮੈਂਟ (.pdf)",
 	"PDF document (.pdf)": "PDF ਡਾਕੂਮੈਂਟ (.pdf)",
 	"PDF Extract Images (OCR)": "PDF ਚਿੱਤਰ ਕੱਢੋ (OCR)",
 	"PDF Extract Images (OCR)": "PDF ਚਿੱਤਰ ਕੱਢੋ (OCR)",
 	"pending": "ਬਕਾਇਆ",
 	"pending": "ਬਕਾਇਆ",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "ਓਲਾਮਾ.ਕਾਮ ਤੋਂ \"{{searchValue}}\" ਖਿੱਚੋ",
 	"Pull \"{{searchValue}}\" from Ollama.com": "ਓਲਾਮਾ.ਕਾਮ ਤੋਂ \"{{searchValue}}\" ਖਿੱਚੋ",
 	"Pull a model from Ollama.com": "ਓਲਾਮਾ.ਕਾਮ ਤੋਂ ਇੱਕ ਮਾਡਲ ਖਿੱਚੋ",
 	"Pull a model from Ollama.com": "ਓਲਾਮਾ.ਕਾਮ ਤੋਂ ਇੱਕ ਮਾਡਲ ਖਿੱਚੋ",
+	"Query Generation Prompt": "",
 	"Query Params": "ਪ੍ਰਸ਼ਨ ਪੈਰਾਮੀਟਰ",
 	"Query Params": "ਪ੍ਰਸ਼ਨ ਪੈਰਾਮੀਟਰ",
 	"RAG Template": "RAG ਟੈਮਪਲੇਟ",
 	"RAG Template": "RAG ਟੈਮਪਲੇਟ",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "ਖੋਜ ਮਾਡਲ",
 	"Search Models": "ਖੋਜ ਮਾਡਲ",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "ਪ੍ਰੰਪਟ ਖੋਜੋ",
 	"Search Prompts": "ਪ੍ਰੰਪਟ ਖੋਜੋ",
-	"Search Query Generation Prompt": "",
 	"Search Result Count": "ਖੋਜ ਨਤੀਜੇ ਦੀ ਗਿਣਤੀ",
 	"Search Result Count": "ਖੋਜ ਨਤੀਜੇ ਦੀ ਗਿਣਤੀ",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "",
 	"Search Tools": "",
@@ -853,6 +859,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
 	"This will delete": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "ਵਿਸਥਾਰ ਨਾਲ ਵਿਆਖਿਆ",
 	"Thorough explanation": "ਵਿਸਥਾਰ ਨਾਲ ਵਿਆਖਿਆ",
 	"Tika": "",
 	"Tika": "",

+ 9 - 1
src/lib/i18n/locales/pl-PL/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Zaawansowane parametry",
 	"Advanced Params": "Zaawansowane parametry",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "Wszystkie dokumenty",
 	"All Documents": "Wszystkie dokumenty",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Pozwól na usuwanie czatu",
 	"Allow Chat Deletion": "Pozwól na usuwanie czatu",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "Usuń",
 	"Delete": "Usuń",
 	"Delete a model": "Usuń model",
 	"Delete a model": "Usuń model",
 	"Delete All Chats": "Usuń wszystkie czaty",
 	"Delete All Chats": "Usuń wszystkie czaty",
+	"Delete All Models": "",
 	"Delete chat": "Usuń czat",
 	"Delete chat": "Usuń czat",
 	"Delete Chat": "Usuń czat",
 	"Delete Chat": "Usuń czat",
 	"Delete chat?": "",
 	"Delete chat?": "",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "",
 	"Display Emoji in Call": "",
 	"Display the username instead of You in the Chat": "Wyświetl nazwę użytkownika zamiast Ty w czacie",
 	"Display the username instead of You in the Chat": "Wyświetl nazwę użytkownika zamiast Ty w czacie",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Model osadzania",
 	"Embedding Model": "Model osadzania",
 	"Embedding Model Engine": "Silnik modelu osadzania",
 	"Embedding Model Engine": "Silnik modelu osadzania",
 	"Embedding model set to \"{{embedding_model}}\"": "Model osadzania ustawiono na \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Model osadzania ustawiono na \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Włączanie udostępniania społecznościowego",
 	"Enable Community Sharing": "Włączanie udostępniania społecznościowego",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Włącz nowe rejestracje",
 	"Enable New Sign Ups": "Włącz nowe rejestracje",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "Włączanie wyszukiwania w Internecie",
 	"Enable Web Search": "Włączanie wyszukiwania w Internecie",
 	"Enable Web Search Query Generation": "",
 	"Enable Web Search Query Generation": "",
@@ -631,6 +636,7 @@
 	"Overview": "",
 	"Overview": "",
 	"page": "",
 	"page": "",
 	"Password": "Hasło",
 	"Password": "Hasło",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "Dokument PDF (.pdf)",
 	"PDF document (.pdf)": "Dokument PDF (.pdf)",
 	"PDF Extract Images (OCR)": "PDF Wyodrębnij obrazy (OCR)",
 	"PDF Extract Images (OCR)": "PDF Wyodrębnij obrazy (OCR)",
 	"pending": "oczekujące",
 	"pending": "oczekujące",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Pobierz \"{{searchValue}}\" z Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Pobierz \"{{searchValue}}\" z Ollama.com",
 	"Pull a model from Ollama.com": "Pobierz model z Ollama.com",
 	"Pull a model from Ollama.com": "Pobierz model z Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "Parametry zapytania",
 	"Query Params": "Parametry zapytania",
 	"RAG Template": "Szablon RAG",
 	"RAG Template": "Szablon RAG",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "Szukaj modeli",
 	"Search Models": "Szukaj modeli",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "Szukaj promptów",
 	"Search Prompts": "Szukaj promptów",
-	"Search Query Generation Prompt": "",
 	"Search Result Count": "Liczba wyników wyszukiwania",
 	"Search Result Count": "Liczba wyników wyszukiwania",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "",
 	"Search Tools": "",
@@ -855,6 +861,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
 	"This will delete": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Dokładne wyjaśnienie",
 	"Thorough explanation": "Dokładne wyjaśnienie",
 	"Tika": "",
 	"Tika": "",

+ 9 - 1
src/lib/i18n/locales/pt-BR/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Parâmetros Avançados",
 	"Advanced Params": "Parâmetros Avançados",
 	"All chats": "Todos os chats",
 	"All chats": "Todos os chats",
 	"All Documents": "Todos os Documentos",
 	"All Documents": "Todos os Documentos",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "Permitir exclusão de Chats",
 	"Allow Chat Delete": "Permitir exclusão de Chats",
 	"Allow Chat Deletion": "Permitir Exclusão de Chats",
 	"Allow Chat Deletion": "Permitir Exclusão de Chats",
 	"Allow Chat Edit": "Permitir edição de Chats",
 	"Allow Chat Edit": "Permitir edição de Chats",
@@ -221,6 +222,7 @@
 	"Delete": "Deletar",
 	"Delete": "Deletar",
 	"Delete a model": "Deletar um modelo",
 	"Delete a model": "Deletar um modelo",
 	"Delete All Chats": "Deletar Todos os Chats",
 	"Delete All Chats": "Deletar Todos os Chats",
+	"Delete All Models": "",
 	"Delete chat": "Deletar chat",
 	"Delete chat": "Deletar chat",
 	"Delete Chat": "Deletar Chat",
 	"Delete Chat": "Deletar Chat",
 	"Delete chat?": "Deletar chat?",
 	"Delete chat?": "Deletar chat?",
@@ -249,6 +251,7 @@
 	"Display": "Exibir",
 	"Display": "Exibir",
 	"Display Emoji in Call": "Exibir Emoji na Chamada",
 	"Display Emoji in Call": "Exibir Emoji na Chamada",
 	"Display the username instead of You in the Chat": "Exibir o nome de usuário em vez de Você no Chat",
 	"Display the username instead of You in the Chat": "Exibir o nome de usuário em vez de Você no Chat",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "Explorar base de conhecimento",
 	"Dive into knowledge": "Explorar base de conhecimento",
 	"Do not install functions from sources you do not fully trust.": "Não instale funções de fontes que você não confia totalmente.",
 	"Do not install functions from sources you do not fully trust.": "Não instale funções de fontes que você não confia totalmente.",
 	"Do not install tools from sources you do not fully trust.": "Não instale ferramentas de fontes que você não confia totalmente.",
 	"Do not install tools from sources you do not fully trust.": "Não instale ferramentas de fontes que você não confia totalmente.",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Modelo de Embedding",
 	"Embedding Model": "Modelo de Embedding",
 	"Embedding Model Engine": "Motor do Modelo de Embedding",
 	"Embedding Model Engine": "Motor do Modelo de Embedding",
 	"Embedding model set to \"{{embedding_model}}\"": "Modelo de embedding definido para \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Modelo de embedding definido para \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Ativar Compartilhamento com a Comunidade",
 	"Enable Community Sharing": "Ativar Compartilhamento com a Comunidade",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Habilite o bloqueio de memória (mlock) para evitar que os dados do modelo sejam transferidos da RAM para a área de troca (swap). Essa opção bloqueia o conjunto de páginas em uso pelo modelo na RAM, garantindo que elas não sejam transferidas para o disco. Isso pode ajudar a manter o desempenho, evitando falhas de página e garantindo acesso rápido aos dados.",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Habilite o bloqueio de memória (mlock) para evitar que os dados do modelo sejam transferidos da RAM para a área de troca (swap). Essa opção bloqueia o conjunto de páginas em uso pelo modelo na RAM, garantindo que elas não sejam transferidas para o disco. Isso pode ajudar a manter o desempenho, evitando falhas de página e garantindo acesso rápido aos dados.",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "Habilite o mapeamento de memória (mmap) para carregar dados do modelo. Esta opção permite que o sistema use o armazenamento em disco como uma extensão da RAM, tratando os arquivos do disco como se estivessem na RAM. Isso pode melhorar o desempenho do modelo, permitindo acesso mais rápido aos dados. No entanto, pode não funcionar corretamente com todos os sistemas e consumir uma quantidade significativa de espaço em disco.",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "Habilite o mapeamento de memória (mmap) para carregar dados do modelo. Esta opção permite que o sistema use o armazenamento em disco como uma extensão da RAM, tratando os arquivos do disco como se estivessem na RAM. Isso pode melhorar o desempenho do modelo, permitindo acesso mais rápido aos dados. No entanto, pode não funcionar corretamente com todos os sistemas e consumir uma quantidade significativa de espaço em disco.",
 	"Enable Message Rating": "Habilitar Avaliação de Mensagens",
 	"Enable Message Rating": "Habilitar Avaliação de Mensagens",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Habilite a amostragem Mirostat para controlar a perplexidade. (Padrão: 0, 0 = Desativado, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Habilite a amostragem Mirostat para controlar a perplexidade. (Padrão: 0, 0 = Desativado, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable New Sign Ups": "Ativar Novos Cadastros",
 	"Enable New Sign Ups": "Ativar Novos Cadastros",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "Habilitar geração de Tags",
 	"Enable Tags Generation": "Habilitar geração de Tags",
 	"Enable Web Search": "Ativar Pesquisa na Web",
 	"Enable Web Search": "Ativar Pesquisa na Web",
 	"Enable Web Search Query Generation": "Habilitar Geração de Consultas na Web",
 	"Enable Web Search Query Generation": "Habilitar Geração de Consultas na Web",
@@ -631,6 +636,7 @@
 	"Overview": "Visão Geral",
 	"Overview": "Visão Geral",
 	"page": "página",
 	"page": "página",
 	"Password": "Senha",
 	"Password": "Senha",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "Documento PDF (.pdf)",
 	"PDF document (.pdf)": "Documento PDF (.pdf)",
 	"PDF Extract Images (OCR)": "Extrair Imagens do PDF (OCR)",
 	"PDF Extract Images (OCR)": "Extrair Imagens do PDF (OCR)",
 	"pending": "pendente",
 	"pending": "pendente",
@@ -669,6 +675,7 @@
 	"Prompts Access": "Acessar prompts",
 	"Prompts Access": "Acessar prompts",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Obter \"{{searchValue}}\" de Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Obter \"{{searchValue}}\" de Ollama.com",
 	"Pull a model from Ollama.com": "Obter um modelo de Ollama.com",
 	"Pull a model from Ollama.com": "Obter um modelo de Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "Parâmetros de Consulta",
 	"Query Params": "Parâmetros de Consulta",
 	"RAG Template": "Modelo RAG",
 	"RAG Template": "Modelo RAG",
 	"Rating": "Avaliação",
 	"Rating": "Avaliação",
@@ -725,7 +732,6 @@
 	"Search Models": "Pesquisar Modelos",
 	"Search Models": "Pesquisar Modelos",
 	"Search options": "Opções de pesquisa",
 	"Search options": "Opções de pesquisa",
 	"Search Prompts": "Pesquisar Prompts",
 	"Search Prompts": "Pesquisar Prompts",
-	"Search Query Generation Prompt": "Prompt de Geração de Consulta de Pesquisa",
 	"Search Result Count": "Contagem de Resultados da Pesquisa",
 	"Search Result Count": "Contagem de Resultados da Pesquisa",
 	"Search the web": "Pesquisar web",
 	"Search the web": "Pesquisar web",
 	"Search Tools": "Pesquisar Ferramentas",
 	"Search Tools": "Pesquisar Ferramentas",
@@ -854,6 +860,8 @@
 	"This response was generated by \"{{model}}\"": "Esta resposta foi gerada por \"{{model}}\"",
 	"This response was generated by \"{{model}}\"": "Esta resposta foi gerada por \"{{model}}\"",
 	"This will delete": "Isso vai excluir",
 	"This will delete": "Isso vai excluir",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Esta ação deletará <strong>{{NAME}}</strong> e <strong>todos seus conteúdos</strong>.",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Esta ação deletará <strong>{{NAME}}</strong> e <strong>todos seus conteúdos</strong>.",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Esta ação resetará a base de conhecimento e sincronizará todos os arquivos. Deseja continuar?",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Esta ação resetará a base de conhecimento e sincronizará todos os arquivos. Deseja continuar?",
 	"Thorough explanation": "Explicação detalhada",
 	"Thorough explanation": "Explicação detalhada",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 9 - 1
src/lib/i18n/locales/pt-PT/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Params Avançados",
 	"Advanced Params": "Params Avançados",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "Todos os Documentos",
 	"All Documents": "Todos os Documentos",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Permitir Exclusão de Conversa",
 	"Allow Chat Deletion": "Permitir Exclusão de Conversa",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "Apagar",
 	"Delete": "Apagar",
 	"Delete a model": "Apagar um modelo",
 	"Delete a model": "Apagar um modelo",
 	"Delete All Chats": "Apagar todas as conversas",
 	"Delete All Chats": "Apagar todas as conversas",
+	"Delete All Models": "",
 	"Delete chat": "Apagar conversa",
 	"Delete chat": "Apagar conversa",
 	"Delete Chat": "Apagar Conversa",
 	"Delete Chat": "Apagar Conversa",
 	"Delete chat?": "",
 	"Delete chat?": "",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "",
 	"Display Emoji in Call": "",
 	"Display the username instead of You in the Chat": "Exibir o nome de utilizador em vez de Você na Conversa",
 	"Display the username instead of You in the Chat": "Exibir o nome de utilizador em vez de Você na Conversa",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Modelo de Embedding",
 	"Embedding Model": "Modelo de Embedding",
 	"Embedding Model Engine": "Motor de Modelo de Embedding",
 	"Embedding Model Engine": "Motor de Modelo de Embedding",
 	"Embedding model set to \"{{embedding_model}}\"": "Modelo de Embedding definido como \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Modelo de Embedding definido como \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Active a Partilha da Comunidade",
 	"Enable Community Sharing": "Active a Partilha da Comunidade",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Ativar Novas Inscrições",
 	"Enable New Sign Ups": "Ativar Novas Inscrições",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "Ativar pesquisa na Web",
 	"Enable Web Search": "Ativar pesquisa na Web",
 	"Enable Web Search Query Generation": "",
 	"Enable Web Search Query Generation": "",
@@ -631,6 +636,7 @@
 	"Overview": "",
 	"Overview": "",
 	"page": "",
 	"page": "",
 	"Password": "Senha",
 	"Password": "Senha",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "Documento PDF (.pdf)",
 	"PDF document (.pdf)": "Documento PDF (.pdf)",
 	"PDF Extract Images (OCR)": "Extrair Imagens de PDF (OCR)",
 	"PDF Extract Images (OCR)": "Extrair Imagens de PDF (OCR)",
 	"pending": "pendente",
 	"pending": "pendente",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Puxar \"{{searchValue}}\" do Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Puxar \"{{searchValue}}\" do Ollama.com",
 	"Pull a model from Ollama.com": "Puxar um modelo do Ollama.com",
 	"Pull a model from Ollama.com": "Puxar um modelo do Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "Parâmetros de Consulta",
 	"Query Params": "Parâmetros de Consulta",
 	"RAG Template": "Modelo RAG",
 	"RAG Template": "Modelo RAG",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "Modelos de pesquisa",
 	"Search Models": "Modelos de pesquisa",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "Pesquisar Prompts",
 	"Search Prompts": "Pesquisar Prompts",
-	"Search Query Generation Prompt": "Prompt de geração de consulta de pesquisa",
 	"Search Result Count": "Contagem de resultados da pesquisa",
 	"Search Result Count": "Contagem de resultados da pesquisa",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "",
 	"Search Tools": "",
@@ -854,6 +860,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
 	"This will delete": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Explicação Minuciosa",
 	"Thorough explanation": "Explicação Minuciosa",
 	"Tika": "",
 	"Tika": "",

+ 9 - 1
src/lib/i18n/locales/ro-RO/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Parametri Avansați",
 	"Advanced Params": "Parametri Avansați",
 	"All chats": "Toate conversațiile",
 	"All chats": "Toate conversațiile",
 	"All Documents": "Toate Documentele",
 	"All Documents": "Toate Documentele",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Permite Ștergerea Conversațiilor",
 	"Allow Chat Deletion": "Permite Ștergerea Conversațiilor",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "Șterge",
 	"Delete": "Șterge",
 	"Delete a model": "Șterge un model",
 	"Delete a model": "Șterge un model",
 	"Delete All Chats": "Șterge Toate Conversațiile",
 	"Delete All Chats": "Șterge Toate Conversațiile",
+	"Delete All Models": "",
 	"Delete chat": "Șterge conversația",
 	"Delete chat": "Șterge conversația",
 	"Delete Chat": "Șterge Conversația",
 	"Delete Chat": "Șterge Conversația",
 	"Delete chat?": "Șterge conversația?",
 	"Delete chat?": "Șterge conversația?",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "Afișează Emoji în Apel",
 	"Display Emoji in Call": "Afișează Emoji în Apel",
 	"Display the username instead of You in the Chat": "Afișează numele utilizatorului în loc de Tu în Conversație",
 	"Display the username instead of You in the Chat": "Afișează numele utilizatorului în loc de Tu în Conversație",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "Nu instalați funcții din surse în care nu aveți încredere completă.",
 	"Do not install functions from sources you do not fully trust.": "Nu instalați funcții din surse în care nu aveți încredere completă.",
 	"Do not install tools from sources you do not fully trust.": "Nu instalați instrumente din surse în care nu aveți încredere completă.",
 	"Do not install tools from sources you do not fully trust.": "Nu instalați instrumente din surse în care nu aveți încredere completă.",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Model de Încapsulare",
 	"Embedding Model": "Model de Încapsulare",
 	"Embedding Model Engine": "Motor de Model de Încapsulare",
 	"Embedding Model Engine": "Motor de Model de Încapsulare",
 	"Embedding model set to \"{{embedding_model}}\"": "Modelul de încapsulare setat la \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Modelul de încapsulare setat la \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Activează Partajarea Comunitară",
 	"Enable Community Sharing": "Activează Partajarea Comunitară",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "Activează Evaluarea Mesajelor",
 	"Enable Message Rating": "Activează Evaluarea Mesajelor",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Activează Înscrierile Noi",
 	"Enable New Sign Ups": "Activează Înscrierile Noi",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "Activează Căutarea pe Web",
 	"Enable Web Search": "Activează Căutarea pe Web",
 	"Enable Web Search Query Generation": "Activare Generare Cerere de Căutare Web",
 	"Enable Web Search Query Generation": "Activare Generare Cerere de Căutare Web",
@@ -631,6 +636,7 @@
 	"Overview": "Privire de ansamblu",
 	"Overview": "Privire de ansamblu",
 	"page": "pagina",
 	"page": "pagina",
 	"Password": "Parolă",
 	"Password": "Parolă",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "Document PDF (.pdf)",
 	"PDF document (.pdf)": "Document PDF (.pdf)",
 	"PDF Extract Images (OCR)": "Extrage Imagini PDF (OCR)",
 	"PDF Extract Images (OCR)": "Extrage Imagini PDF (OCR)",
 	"pending": "în așteptare",
 	"pending": "în așteptare",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Extrage \"{{searchValue}}\" de pe Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Extrage \"{{searchValue}}\" de pe Ollama.com",
 	"Pull a model from Ollama.com": "Extrage un model de pe Ollama.com",
 	"Pull a model from Ollama.com": "Extrage un model de pe Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "Parametri Interogare",
 	"Query Params": "Parametri Interogare",
 	"RAG Template": "Șablon RAG",
 	"RAG Template": "Șablon RAG",
 	"Rating": "Evaluare",
 	"Rating": "Evaluare",
@@ -725,7 +732,6 @@
 	"Search Models": "Caută Modele",
 	"Search Models": "Caută Modele",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "Caută Prompturi",
 	"Search Prompts": "Caută Prompturi",
-	"Search Query Generation Prompt": "Prompt de Generare Interogare de Căutare",
 	"Search Result Count": "Număr Rezultate Căutare",
 	"Search Result Count": "Număr Rezultate Căutare",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "Caută Instrumente",
 	"Search Tools": "Caută Instrumente",
@@ -854,6 +860,8 @@
 	"This response was generated by \"{{model}}\"": "Acest răspuns a fost generat de \"{{model}}\"",
 	"This response was generated by \"{{model}}\"": "Acest răspuns a fost generat de \"{{model}}\"",
 	"This will delete": "Aceasta va șterge",
 	"This will delete": "Aceasta va șterge",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Acest lucru va șterge <strong>{{NAME}}</strong> și <strong>toate conținuturile sale</strong>.",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Acest lucru va șterge <strong>{{NAME}}</strong> și <strong>toate conținuturile sale</strong>.",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Aceasta va reseta baza de cunoștințe și va sincroniza toate fișierele. Doriți să continuați?",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Aceasta va reseta baza de cunoștințe și va sincroniza toate fișierele. Doriți să continuați?",
 	"Thorough explanation": "Explicație detaliată",
 	"Thorough explanation": "Explicație detaliată",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 9 - 1
src/lib/i18n/locales/ru-RU/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Расширенные параметры",
 	"Advanced Params": "Расширенные параметры",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "Все документы",
 	"All Documents": "Все документы",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Разрешить удаление чата",
 	"Allow Chat Deletion": "Разрешить удаление чата",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "Удалить",
 	"Delete": "Удалить",
 	"Delete a model": "Удалить модель",
 	"Delete a model": "Удалить модель",
 	"Delete All Chats": "Удалить все чаты",
 	"Delete All Chats": "Удалить все чаты",
+	"Delete All Models": "",
 	"Delete chat": "Удалить чат",
 	"Delete chat": "Удалить чат",
 	"Delete Chat": "Удалить чат",
 	"Delete Chat": "Удалить чат",
 	"Delete chat?": "Удалить чат?",
 	"Delete chat?": "Удалить чат?",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "Отображать эмодзи в вызовах",
 	"Display Emoji in Call": "Отображать эмодзи в вызовах",
 	"Display the username instead of You in the Chat": "Отображать имя пользователя вместо 'Вы' в чате",
 	"Display the username instead of You in the Chat": "Отображать имя пользователя вместо 'Вы' в чате",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "Не устанавливайте функции из источников, которым вы не полностью доверяете.",
 	"Do not install functions from sources you do not fully trust.": "Не устанавливайте функции из источников, которым вы не полностью доверяете.",
 	"Do not install tools from sources you do not fully trust.": "Не устанавливайте инструменты из источников, которым вы не полностью доверяете.",
 	"Do not install tools from sources you do not fully trust.": "Не устанавливайте инструменты из источников, которым вы не полностью доверяете.",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Модель встраивания",
 	"Embedding Model": "Модель встраивания",
 	"Embedding Model Engine": "Движок модели встраивания",
 	"Embedding Model Engine": "Движок модели встраивания",
 	"Embedding model set to \"{{embedding_model}}\"": "Модель встраивания установлена в \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Модель встраивания установлена в \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Включить совместное использование",
 	"Enable Community Sharing": "Включить совместное использование",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "Разрешить оценку ответов",
 	"Enable Message Rating": "Разрешить оценку ответов",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Разрешить новые регистрации",
 	"Enable New Sign Ups": "Разрешить новые регистрации",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "Включить поиск в Интернете",
 	"Enable Web Search": "Включить поиск в Интернете",
 	"Enable Web Search Query Generation": "Включить генерацию веб-поисковых запросов",
 	"Enable Web Search Query Generation": "Включить генерацию веб-поисковых запросов",
@@ -631,6 +636,7 @@
 	"Overview": "Обзор",
 	"Overview": "Обзор",
 	"page": "страница",
 	"page": "страница",
 	"Password": "Пароль",
 	"Password": "Пароль",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "PDF-документ (.pdf)",
 	"PDF document (.pdf)": "PDF-документ (.pdf)",
 	"PDF Extract Images (OCR)": "Извлечение изображений из PDF (OCR)",
 	"PDF Extract Images (OCR)": "Извлечение изображений из PDF (OCR)",
 	"pending": "ожидающий",
 	"pending": "ожидающий",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Загрузить \"{{searchValue}}\" с Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Загрузить \"{{searchValue}}\" с Ollama.com",
 	"Pull a model from Ollama.com": "Загрузить модель с Ollama.com",
 	"Pull a model from Ollama.com": "Загрузить модель с Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "Параметры запроса",
 	"Query Params": "Параметры запроса",
 	"RAG Template": "Шаблон RAG",
 	"RAG Template": "Шаблон RAG",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "Поиск моделей",
 	"Search Models": "Поиск моделей",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "Поиск промптов",
 	"Search Prompts": "Поиск промптов",
-	"Search Query Generation Prompt": "Промпт для генерации поискового запроса",
 	"Search Result Count": "Количество результатов поиска",
 	"Search Result Count": "Количество результатов поиска",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "Поиск инструментов",
 	"Search Tools": "Поиск инструментов",
@@ -855,6 +861,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "Это приведет к удалению",
 	"This will delete": "Это приведет к удалению",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Подробное объяснение",
 	"Thorough explanation": "Подробное объяснение",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 9 - 1
src/lib/i18n/locales/sr-RS/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Напредни парамови",
 	"Advanced Params": "Напредни парамови",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "Сви документи",
 	"All Documents": "Сви документи",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Дозволи брисање ћаскања",
 	"Allow Chat Deletion": "Дозволи брисање ћаскања",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "Обриши",
 	"Delete": "Обриши",
 	"Delete a model": "Обриши модел",
 	"Delete a model": "Обриши модел",
 	"Delete All Chats": "Избриши сва ћаскања",
 	"Delete All Chats": "Избриши сва ћаскања",
+	"Delete All Models": "",
 	"Delete chat": "Обриши ћаскање",
 	"Delete chat": "Обриши ћаскање",
 	"Delete Chat": "Обриши ћаскање",
 	"Delete Chat": "Обриши ћаскање",
 	"Delete chat?": "",
 	"Delete chat?": "",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "",
 	"Display Emoji in Call": "",
 	"Display the username instead of You in the Chat": "Прикажи корисничко име уместо Ти у чату",
 	"Display the username instead of You in the Chat": "Прикажи корисничко име уместо Ти у чату",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Модел уградње",
 	"Embedding Model": "Модел уградње",
 	"Embedding Model Engine": "Мотор модела уградње",
 	"Embedding Model Engine": "Мотор модела уградње",
 	"Embedding model set to \"{{embedding_model}}\"": "Модел уградње подешен на \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Модел уградње подешен на \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Омогући дељење заједнице",
 	"Enable Community Sharing": "Омогући дељење заједнице",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Омогући нове пријаве",
 	"Enable New Sign Ups": "Омогући нове пријаве",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "Омогући Wеб претрагу",
 	"Enable Web Search": "Омогући Wеб претрагу",
 	"Enable Web Search Query Generation": "",
 	"Enable Web Search Query Generation": "",
@@ -631,6 +636,7 @@
 	"Overview": "",
 	"Overview": "",
 	"page": "",
 	"page": "",
 	"Password": "Лозинка",
 	"Password": "Лозинка",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "PDF документ (.pdf)",
 	"PDF document (.pdf)": "PDF документ (.pdf)",
 	"PDF Extract Images (OCR)": "Извлачење PDF слика (OCR)",
 	"PDF Extract Images (OCR)": "Извлачење PDF слика (OCR)",
 	"pending": "на чекању",
 	"pending": "на чекању",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Повуците \"{{searchValue}}\" са Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Повуците \"{{searchValue}}\" са Ollama.com",
 	"Pull a model from Ollama.com": "Повуците модел са Ollama.com",
 	"Pull a model from Ollama.com": "Повуците модел са Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "Параметри упита",
 	"Query Params": "Параметри упита",
 	"RAG Template": "RAG шаблон",
 	"RAG Template": "RAG шаблон",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "Модели претраге",
 	"Search Models": "Модели претраге",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "Претражи упите",
 	"Search Prompts": "Претражи упите",
-	"Search Query Generation Prompt": "",
 	"Search Result Count": "Број резултата претраге",
 	"Search Result Count": "Број резултата претраге",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "",
 	"Search Tools": "",
@@ -854,6 +860,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
 	"This will delete": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Детаљно објашњење",
 	"Thorough explanation": "Детаљно објашњење",
 	"Tika": "",
 	"Tika": "",

+ 9 - 1
src/lib/i18n/locales/sv-SE/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Avancerade parametrar",
 	"Advanced Params": "Avancerade parametrar",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "Alla dokument",
 	"All Documents": "Alla dokument",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Tillåt chattborttagning",
 	"Allow Chat Deletion": "Tillåt chattborttagning",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "Radera",
 	"Delete": "Radera",
 	"Delete a model": "Ta bort en modell",
 	"Delete a model": "Ta bort en modell",
 	"Delete All Chats": "Ta bort alla chattar",
 	"Delete All Chats": "Ta bort alla chattar",
+	"Delete All Models": "",
 	"Delete chat": "Radera chatt",
 	"Delete chat": "Radera chatt",
 	"Delete Chat": "Radera chatt",
 	"Delete Chat": "Radera chatt",
 	"Delete chat?": "",
 	"Delete chat?": "",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "Visa Emoji under samtal",
 	"Display Emoji in Call": "Visa Emoji under samtal",
 	"Display the username instead of You in the Chat": "Visa användarnamnet istället för du i chatten",
 	"Display the username instead of You in the Chat": "Visa användarnamnet istället för du i chatten",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Inbäddningsmodell",
 	"Embedding Model": "Inbäddningsmodell",
 	"Embedding Model Engine": "Motor för inbäddningsmodell",
 	"Embedding Model Engine": "Motor för inbäddningsmodell",
 	"Embedding model set to \"{{embedding_model}}\"": "Inbäddningsmodell inställd på \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Inbäddningsmodell inställd på \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Aktivera community-delning",
 	"Enable Community Sharing": "Aktivera community-delning",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Aktivera nya registreringar",
 	"Enable New Sign Ups": "Aktivera nya registreringar",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "Aktivera webbsökning",
 	"Enable Web Search": "Aktivera webbsökning",
 	"Enable Web Search Query Generation": "",
 	"Enable Web Search Query Generation": "",
@@ -631,6 +636,7 @@
 	"Overview": "",
 	"Overview": "",
 	"page": "",
 	"page": "",
 	"Password": "Lösenord",
 	"Password": "Lösenord",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "PDF-dokument (.pdf)",
 	"PDF document (.pdf)": "PDF-dokument (.pdf)",
 	"PDF Extract Images (OCR)": "PDF Extrahera bilder (OCR)",
 	"PDF Extract Images (OCR)": "PDF Extrahera bilder (OCR)",
 	"pending": "väntande",
 	"pending": "väntande",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ladda ner \"{{searchValue}}\" från Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ladda ner \"{{searchValue}}\" från Ollama.com",
 	"Pull a model from Ollama.com": "Ladda ner en modell från Ollama.com",
 	"Pull a model from Ollama.com": "Ladda ner en modell från Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "Inställningar för sökfråga",
 	"Query Params": "Inställningar för sökfråga",
 	"RAG Template": "RAG-mall",
 	"RAG Template": "RAG-mall",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "Sök modeller",
 	"Search Models": "Sök modeller",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "Sök instruktioner",
 	"Search Prompts": "Sök instruktioner",
-	"Search Query Generation Prompt": "Instruktion för generering av sökfrågor",
 	"Search Result Count": "Antal sökresultat",
 	"Search Result Count": "Antal sökresultat",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "Sökverktyg",
 	"Search Tools": "Sökverktyg",
@@ -853,6 +859,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
 	"This will delete": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Djupare förklaring",
 	"Thorough explanation": "Djupare förklaring",
 	"Tika": "",
 	"Tika": "",

+ 9 - 1
src/lib/i18n/locales/th-TH/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "พารามิเตอร์ขั้นสูง",
 	"Advanced Params": "พารามิเตอร์ขั้นสูง",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "เอกสารทั้งหมด",
 	"All Documents": "เอกสารทั้งหมด",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "อนุญาตการลบการสนทนา",
 	"Allow Chat Deletion": "อนุญาตการลบการสนทนา",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "ลบ",
 	"Delete": "ลบ",
 	"Delete a model": "ลบโมเดล",
 	"Delete a model": "ลบโมเดล",
 	"Delete All Chats": "ลบการสนทนาทั้งหมด",
 	"Delete All Chats": "ลบการสนทนาทั้งหมด",
+	"Delete All Models": "",
 	"Delete chat": "ลบแชท",
 	"Delete chat": "ลบแชท",
 	"Delete Chat": "ลบแชท",
 	"Delete Chat": "ลบแชท",
 	"Delete chat?": "ลบแชท?",
 	"Delete chat?": "ลบแชท?",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "แสดงอิโมจิในการโทร",
 	"Display Emoji in Call": "แสดงอิโมจิในการโทร",
 	"Display the username instead of You in the Chat": "แสดงชื่อผู้ใช้แทนคุณในการแชท",
 	"Display the username instead of You in the Chat": "แสดงชื่อผู้ใช้แทนคุณในการแชท",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "อย่าติดตั้งฟังก์ชันจากแหล่งที่คุณไม่ไว้วางใจอย่างเต็มที่",
 	"Do not install functions from sources you do not fully trust.": "อย่าติดตั้งฟังก์ชันจากแหล่งที่คุณไม่ไว้วางใจอย่างเต็มที่",
 	"Do not install tools from sources you do not fully trust.": "อย่าติดตั้งเครื่องมือจากแหล่งที่คุณไม่ไว้วางใจอย่างเต็มที่",
 	"Do not install tools from sources you do not fully trust.": "อย่าติดตั้งเครื่องมือจากแหล่งที่คุณไม่ไว้วางใจอย่างเต็มที่",
@@ -288,12 +291,14 @@
 	"Embedding Model": "โมเดลการฝัง",
 	"Embedding Model": "โมเดลการฝัง",
 	"Embedding Model Engine": "เครื่องยนต์โมเดลการฝัง",
 	"Embedding Model Engine": "เครื่องยนต์โมเดลการฝัง",
 	"Embedding model set to \"{{embedding_model}}\"": "ตั้งค่าโมเดลการฝังเป็น \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "ตั้งค่าโมเดลการฝังเป็น \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "เปิดใช้งานการแชร์ในชุมชน",
 	"Enable Community Sharing": "เปิดใช้งานการแชร์ในชุมชน",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "เปิดใช้งานการสมัครใหม่",
 	"Enable New Sign Ups": "เปิดใช้งานการสมัครใหม่",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "เปิดใช้งานการค้นหาเว็บ",
 	"Enable Web Search": "เปิดใช้งานการค้นหาเว็บ",
 	"Enable Web Search Query Generation": "",
 	"Enable Web Search Query Generation": "",
@@ -631,6 +636,7 @@
 	"Overview": "",
 	"Overview": "",
 	"page": "",
 	"page": "",
 	"Password": "รหัสผ่าน",
 	"Password": "รหัสผ่าน",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "เอกสาร PDF (.pdf)",
 	"PDF document (.pdf)": "เอกสาร PDF (.pdf)",
 	"PDF Extract Images (OCR)": "การแยกรูปภาพจาก PDF (OCR)",
 	"PDF Extract Images (OCR)": "การแยกรูปภาพจาก PDF (OCR)",
 	"pending": "รอดำเนินการ",
 	"pending": "รอดำเนินการ",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "",
 	"Pull a model from Ollama.com": "",
+	"Query Generation Prompt": "",
 	"Query Params": "พารามิเตอร์การค้นหา",
 	"Query Params": "พารามิเตอร์การค้นหา",
 	"RAG Template": "แม่แบบ RAG",
 	"RAG Template": "แม่แบบ RAG",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "ค้นหาโมเดล",
 	"Search Models": "ค้นหาโมเดล",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "ค้นหาพรอมต์",
 	"Search Prompts": "ค้นหาพรอมต์",
-	"Search Query Generation Prompt": "พรอมต์การสร้างคำค้นหา",
 	"Search Result Count": "จำนวนผลลัพธ์การค้นหา",
 	"Search Result Count": "จำนวนผลลัพธ์การค้นหา",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "เครื่องมือค้นหา",
 	"Search Tools": "เครื่องมือค้นหา",
@@ -853,6 +859,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "สิ่งนี้จะลบ",
 	"This will delete": "สิ่งนี้จะลบ",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "คำอธิบายอย่างละเอียด",
 	"Thorough explanation": "คำอธิบายอย่างละเอียด",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 9 - 1
src/lib/i18n/locales/tk-TW/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "",
 	"Advanced Params": "",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "",
 	"All Documents": "",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "",
 	"Allow Chat Deletion": "",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "",
 	"Delete": "",
 	"Delete a model": "",
 	"Delete a model": "",
 	"Delete All Chats": "",
 	"Delete All Chats": "",
+	"Delete All Models": "",
 	"Delete chat": "",
 	"Delete chat": "",
 	"Delete Chat": "",
 	"Delete Chat": "",
 	"Delete chat?": "",
 	"Delete chat?": "",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "",
 	"Display Emoji in Call": "",
 	"Display the username instead of You in the Chat": "",
 	"Display the username instead of You in the Chat": "",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install functions from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
 	"Do not install tools from sources you do not fully trust.": "",
@@ -288,12 +291,14 @@
 	"Embedding Model": "",
 	"Embedding Model": "",
 	"Embedding Model Engine": "",
 	"Embedding Model Engine": "",
 	"Embedding model set to \"{{embedding_model}}\"": "",
 	"Embedding model set to \"{{embedding_model}}\"": "",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "",
 	"Enable Community Sharing": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "",
 	"Enable New Sign Ups": "",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "",
 	"Enable Web Search": "",
 	"Enable Web Search Query Generation": "",
 	"Enable Web Search Query Generation": "",
@@ -631,6 +636,7 @@
 	"Overview": "",
 	"Overview": "",
 	"page": "",
 	"page": "",
 	"Password": "",
 	"Password": "",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "",
 	"PDF document (.pdf)": "",
 	"PDF Extract Images (OCR)": "",
 	"PDF Extract Images (OCR)": "",
 	"pending": "",
 	"pending": "",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "",
 	"Pull a model from Ollama.com": "",
+	"Query Generation Prompt": "",
 	"Query Params": "",
 	"Query Params": "",
 	"RAG Template": "",
 	"RAG Template": "",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "",
 	"Search Models": "",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "",
 	"Search Prompts": "",
-	"Search Query Generation Prompt": "",
 	"Search Result Count": "",
 	"Search Result Count": "",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "",
 	"Search Tools": "",
@@ -853,6 +859,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
 	"This will delete": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "",
 	"Thorough explanation": "",
 	"Tika": "",
 	"Tika": "",

+ 9 - 1
src/lib/i18n/locales/tr-TR/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Gelişmiş Parametreler",
 	"Advanced Params": "Gelişmiş Parametreler",
 	"All chats": "Tüm sohbetler",
 	"All chats": "Tüm sohbetler",
 	"All Documents": "Tüm Belgeler",
 	"All Documents": "Tüm Belgeler",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Sohbet Silmeye İzin Ver",
 	"Allow Chat Deletion": "Sohbet Silmeye İzin Ver",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "Sil",
 	"Delete": "Sil",
 	"Delete a model": "Bir modeli sil",
 	"Delete a model": "Bir modeli sil",
 	"Delete All Chats": "Tüm Sohbetleri Sil",
 	"Delete All Chats": "Tüm Sohbetleri Sil",
+	"Delete All Models": "",
 	"Delete chat": "Sohbeti sil",
 	"Delete chat": "Sohbeti sil",
 	"Delete Chat": "Sohbeti Sil",
 	"Delete Chat": "Sohbeti Sil",
 	"Delete chat?": "Sohbeti sil?",
 	"Delete chat?": "Sohbeti sil?",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "Aramada Emoji Göster",
 	"Display Emoji in Call": "Aramada Emoji Göster",
 	"Display the username instead of You in the Chat": "Sohbet'te Siz yerine kullanıcı adını göster",
 	"Display the username instead of You in the Chat": "Sohbet'te Siz yerine kullanıcı adını göster",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "Tamamen güvenmediğiniz kaynaklardan fonksiyonlar yüklemeyin.",
 	"Do not install functions from sources you do not fully trust.": "Tamamen güvenmediğiniz kaynaklardan fonksiyonlar yüklemeyin.",
 	"Do not install tools from sources you do not fully trust.": "Tamamen güvenmediğiniz kaynaklardan araçlar yüklemeyin.",
 	"Do not install tools from sources you do not fully trust.": "Tamamen güvenmediğiniz kaynaklardan araçlar yüklemeyin.",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Gömme Modeli",
 	"Embedding Model": "Gömme Modeli",
 	"Embedding Model Engine": "Gömme Modeli Motoru",
 	"Embedding Model Engine": "Gömme Modeli Motoru",
 	"Embedding model set to \"{{embedding_model}}\"": "Gömme modeli \"{{embedding_model}}\" olarak ayarlandı",
 	"Embedding model set to \"{{embedding_model}}\"": "Gömme modeli \"{{embedding_model}}\" olarak ayarlandı",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Topluluk Paylaşımını Etkinleştir",
 	"Enable Community Sharing": "Topluluk Paylaşımını Etkinleştir",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "Mesaj Değerlendirmeyi Etkinleştir",
 	"Enable Message Rating": "Mesaj Değerlendirmeyi Etkinleştir",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Yeni Kayıtları Etkinleştir",
 	"Enable New Sign Ups": "Yeni Kayıtları Etkinleştir",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "Web Aramasını Etkinleştir",
 	"Enable Web Search": "Web Aramasını Etkinleştir",
 	"Enable Web Search Query Generation": "Web Arama Sorgusu Oluşturmayı Etkinleştir",
 	"Enable Web Search Query Generation": "Web Arama Sorgusu Oluşturmayı Etkinleştir",
@@ -631,6 +636,7 @@
 	"Overview": "Genel Bakış",
 	"Overview": "Genel Bakış",
 	"page": "",
 	"page": "",
 	"Password": "Parola",
 	"Password": "Parola",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "PDF belgesi (.pdf)",
 	"PDF document (.pdf)": "PDF belgesi (.pdf)",
 	"PDF Extract Images (OCR)": "PDF Görüntülerini Çıkart (OCR)",
 	"PDF Extract Images (OCR)": "PDF Görüntülerini Çıkart (OCR)",
 	"pending": "beklemede",
 	"pending": "beklemede",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com'dan \"{{searchValue}}\" çekin",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com'dan \"{{searchValue}}\" çekin",
 	"Pull a model from Ollama.com": "Ollama.com'dan bir model çekin",
 	"Pull a model from Ollama.com": "Ollama.com'dan bir model çekin",
+	"Query Generation Prompt": "",
 	"Query Params": "Sorgu Parametreleri",
 	"Query Params": "Sorgu Parametreleri",
 	"RAG Template": "RAG Şablonu",
 	"RAG Template": "RAG Şablonu",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "Modelleri Ara",
 	"Search Models": "Modelleri Ara",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "Prompt Ara",
 	"Search Prompts": "Prompt Ara",
-	"Search Query Generation Prompt": "Arama Sorgusu Üretme Promptu",
 	"Search Result Count": "Arama Sonucu Sayısı",
 	"Search Result Count": "Arama Sonucu Sayısı",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "Arama Araçları",
 	"Search Tools": "Arama Araçları",
@@ -853,6 +859,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "Bu silinecek",
 	"This will delete": "Bu silinecek",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Kapsamlı açıklama",
 	"Thorough explanation": "Kapsamlı açıklama",
 	"Tika": "",
 	"Tika": "",

+ 9 - 1
src/lib/i18n/locales/uk-UA/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Розширені параметри",
 	"Advanced Params": "Розширені параметри",
 	"All chats": "Усі чати",
 	"All chats": "Усі чати",
 	"All Documents": "Усі документи",
 	"All Documents": "Усі документи",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Дозволити видалення чату",
 	"Allow Chat Deletion": "Дозволити видалення чату",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "Видалити",
 	"Delete": "Видалити",
 	"Delete a model": "Видалити модель",
 	"Delete a model": "Видалити модель",
 	"Delete All Chats": "Видалити усі чати",
 	"Delete All Chats": "Видалити усі чати",
+	"Delete All Models": "",
 	"Delete chat": "Видалити чат",
 	"Delete chat": "Видалити чат",
 	"Delete Chat": "Видалити чат",
 	"Delete Chat": "Видалити чат",
 	"Delete chat?": "Видалити чат?",
 	"Delete chat?": "Видалити чат?",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "Відображати емодзі у викликах",
 	"Display Emoji in Call": "Відображати емодзі у викликах",
 	"Display the username instead of You in the Chat": "Показувати ім'я користувача замість 'Ви' в чаті",
 	"Display the username instead of You in the Chat": "Показувати ім'я користувача замість 'Ви' в чаті",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "Зануртесь у знання",
 	"Dive into knowledge": "Зануртесь у знання",
 	"Do not install functions from sources you do not fully trust.": "Не встановлюйте функції з джерел, яким ви не повністю довіряєте.",
 	"Do not install functions from sources you do not fully trust.": "Не встановлюйте функції з джерел, яким ви не повністю довіряєте.",
 	"Do not install tools from sources you do not fully trust.": "Не встановлюйте інструменти з джерел, яким ви не повністю довіряєте.",
 	"Do not install tools from sources you do not fully trust.": "Не встановлюйте інструменти з джерел, яким ви не повністю довіряєте.",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Модель вбудовування",
 	"Embedding Model": "Модель вбудовування",
 	"Embedding Model Engine": "Рушій моделі вбудовування ",
 	"Embedding Model Engine": "Рушій моделі вбудовування ",
 	"Embedding model set to \"{{embedding_model}}\"": "Встановлена модель вбудовування \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Встановлена модель вбудовування \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Увімкнути спільний доступ",
 	"Enable Community Sharing": "Увімкнути спільний доступ",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Увімкнути блокування пам'яті (mlock), щоб запобігти виведенню даних моделі з оперативної пам'яті. Цей параметр блокує робочий набір сторінок моделі в оперативній пам'яті, гарантуючи, що вони не будуть виведені на диск. Це може допомогти підтримувати продуктивність, уникати помилок сторінок та забезпечувати швидкий доступ до даних.",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Увімкнути блокування пам'яті (mlock), щоб запобігти виведенню даних моделі з оперативної пам'яті. Цей параметр блокує робочий набір сторінок моделі в оперативній пам'яті, гарантуючи, що вони не будуть виведені на диск. Це може допомогти підтримувати продуктивність, уникати помилок сторінок та забезпечувати швидкий доступ до даних.",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "Увімкнути відображення пам'яті (mmap) для завантаження даних моделі. Цей параметр дозволяє системі використовувати дискове сховище як розширення оперативної пам'яті, трактуючи файли на диску, як ніби вони знаходяться в RAM. Це може покращити продуктивність моделі, дозволяючи швидший доступ до даних. Однак, він може не працювати коректно на всіх системах і може споживати значну кількість дискового простору.",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "Увімкнути відображення пам'яті (mmap) для завантаження даних моделі. Цей параметр дозволяє системі використовувати дискове сховище як розширення оперативної пам'яті, трактуючи файли на диску, як ніби вони знаходяться в RAM. Це може покращити продуктивність моделі, дозволяючи швидший доступ до даних. Однак, він може не працювати коректно на всіх системах і може споживати значну кількість дискового простору.",
 	"Enable Message Rating": "Увімкнути оцінку повідомлень",
 	"Enable Message Rating": "Увімкнути оцінку повідомлень",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Увімкнути вибірку Mirostat для контролю над непередбачуваністю. (За замовчуванням: 0, 0 = Вимкнено, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Увімкнути вибірку Mirostat для контролю над непередбачуваністю. (За замовчуванням: 0, 0 = Вимкнено, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable New Sign Ups": "Дозволити нові реєстрації",
 	"Enable New Sign Ups": "Дозволити нові реєстрації",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "Увімкнути генерацію тегів",
 	"Enable Tags Generation": "Увімкнути генерацію тегів",
 	"Enable Web Search": "Увімкнути веб-пошук",
 	"Enable Web Search": "Увімкнути веб-пошук",
 	"Enable Web Search Query Generation": "Увімкнути генерацію запитів для веб-пошуку",
 	"Enable Web Search Query Generation": "Увімкнути генерацію запитів для веб-пошуку",
@@ -631,6 +636,7 @@
 	"Overview": "Огляд",
 	"Overview": "Огляд",
 	"page": "сторінка",
 	"page": "сторінка",
 	"Password": "Пароль",
 	"Password": "Пароль",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "PDF документ (.pdf)",
 	"PDF document (.pdf)": "PDF документ (.pdf)",
 	"PDF Extract Images (OCR)": "Розпізнавання зображень з PDF (OCR)",
 	"PDF Extract Images (OCR)": "Розпізнавання зображень з PDF (OCR)",
 	"pending": "на розгляді",
 	"pending": "на розгляді",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Завантажити \"{{searchValue}}\" з Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Завантажити \"{{searchValue}}\" з Ollama.com",
 	"Pull a model from Ollama.com": "Завантажити модель з Ollama.com",
 	"Pull a model from Ollama.com": "Завантажити модель з Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "Параметри запиту",
 	"Query Params": "Параметри запиту",
 	"RAG Template": "Шаблон RAG",
 	"RAG Template": "Шаблон RAG",
 	"Rating": "Оцінка",
 	"Rating": "Оцінка",
@@ -725,7 +732,6 @@
 	"Search Models": "Пошук моделей",
 	"Search Models": "Пошук моделей",
 	"Search options": "Опції пошуку",
 	"Search options": "Опції пошуку",
 	"Search Prompts": "Пошук промтів",
 	"Search Prompts": "Пошук промтів",
-	"Search Query Generation Prompt": "Підказка для формування пошукового промту",
 	"Search Result Count": "Кількість результатів пошуку",
 	"Search Result Count": "Кількість результатів пошуку",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "Пошуку інструментів",
 	"Search Tools": "Пошуку інструментів",
@@ -855,6 +861,8 @@
 	"This response was generated by \"{{model}}\"": "Цю відповідь згенеровано за допомогою \"{{model}}\"",
 	"This response was generated by \"{{model}}\"": "Цю відповідь згенеровано за допомогою \"{{model}}\"",
 	"This will delete": "Це призведе до видалення",
 	"This will delete": "Це призведе до видалення",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Це видалить <strong>{{NAME}}</strong> та <strong>всі його вмісти</strong>.",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Це видалить <strong>{{NAME}}</strong> та <strong>всі його вмісти</strong>.",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Це скине базу знань і синхронізує всі файли. Ви бажаєте продовжити?",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Це скине базу знань і синхронізує всі файли. Ви бажаєте продовжити?",
 	"Thorough explanation": "Детальне пояснення",
 	"Thorough explanation": "Детальне пояснення",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 9 - 1
src/lib/i18n/locales/ur-PK/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "ترقی یافتہ پیرامیٹرز",
 	"Advanced Params": "ترقی یافتہ پیرامیٹرز",
 	"All chats": "تمام چیٹس",
 	"All chats": "تمام چیٹس",
 	"All Documents": "تمام دستاویزات",
 	"All Documents": "تمام دستاویزات",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "چیٹ کو حذف کرنے کی اجازت دیں",
 	"Allow Chat Deletion": "چیٹ کو حذف کرنے کی اجازت دیں",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "حذف کریں",
 	"Delete": "حذف کریں",
 	"Delete a model": "ایک ماڈل حذف کریں",
 	"Delete a model": "ایک ماڈل حذف کریں",
 	"Delete All Chats": "تمام چیٹس حذف کریں",
 	"Delete All Chats": "تمام چیٹس حذف کریں",
+	"Delete All Models": "",
 	"Delete chat": "چیٹ حذف کریں",
 	"Delete chat": "چیٹ حذف کریں",
 	"Delete Chat": "چیٹ حذف کریں",
 	"Delete Chat": "چیٹ حذف کریں",
 	"Delete chat?": "چیٹ حذف کریں؟",
 	"Delete chat?": "چیٹ حذف کریں؟",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "کال میں ایموجی دکھائیں",
 	"Display Emoji in Call": "کال میں ایموجی دکھائیں",
 	"Display the username instead of You in the Chat": "چیٹ میں \"آپ\" کے بجائے صارف نام دکھائیں",
 	"Display the username instead of You in the Chat": "چیٹ میں \"آپ\" کے بجائے صارف نام دکھائیں",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "ایسی جگہوں سے فنکشنز انسٹال نہ کریں جن پر آپ مکمل بھروسہ نہیں کرتے",
 	"Do not install functions from sources you do not fully trust.": "ایسی جگہوں سے فنکشنز انسٹال نہ کریں جن پر آپ مکمل بھروسہ نہیں کرتے",
 	"Do not install tools from sources you do not fully trust.": "جن ذرائع پر آپ مکمل بھروسہ نہیں کرتے، ان سے ٹولز انسٹال نہ کریں",
 	"Do not install tools from sources you do not fully trust.": "جن ذرائع پر آپ مکمل بھروسہ نہیں کرتے، ان سے ٹولز انسٹال نہ کریں",
@@ -288,12 +291,14 @@
 	"Embedding Model": "ایمبیڈنگ ماڈل",
 	"Embedding Model": "ایمبیڈنگ ماڈل",
 	"Embedding Model Engine": "ایمبیڈنگ ماڈل انجن",
 	"Embedding Model Engine": "ایمبیڈنگ ماڈل انجن",
 	"Embedding model set to \"{{embedding_model}}\"": "ایمبیڈنگ ماڈل \"{{embedding_model}}\" پر سیٹ کیا گیا ہے",
 	"Embedding model set to \"{{embedding_model}}\"": "ایمبیڈنگ ماڈل \"{{embedding_model}}\" پر سیٹ کیا گیا ہے",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "کمیونٹی شیئرنگ فعال کریں",
 	"Enable Community Sharing": "کمیونٹی شیئرنگ فعال کریں",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "پیغام کی درجہ بندی فعال کریں",
 	"Enable Message Rating": "پیغام کی درجہ بندی فعال کریں",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "نئے سائن اپس کو فعال کریں",
 	"Enable New Sign Ups": "نئے سائن اپس کو فعال کریں",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "ویب تلاش فعال کریں",
 	"Enable Web Search": "ویب تلاش فعال کریں",
 	"Enable Web Search Query Generation": "ویب تلاش کے سوالات کی تخلیق کو فعال کریں",
 	"Enable Web Search Query Generation": "ویب تلاش کے سوالات کی تخلیق کو فعال کریں",
@@ -631,6 +636,7 @@
 	"Overview": "جائزہ",
 	"Overview": "جائزہ",
 	"page": "صفحہ",
 	"page": "صفحہ",
 	"Password": "پاس ورڈ",
 	"Password": "پاس ورڈ",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "پی ڈی ایف دستاویز (.pdf)",
 	"PDF document (.pdf)": "پی ڈی ایف دستاویز (.pdf)",
 	"PDF Extract Images (OCR)": "پی ڈی ایف سے تصاویر نکالیں (او سی آر)",
 	"PDF Extract Images (OCR)": "پی ڈی ایف سے تصاویر نکالیں (او سی آر)",
 	"pending": "زیر التواء",
 	"pending": "زیر التواء",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com سے \"{{searchValue}}\" کو کھینچیں",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com سے \"{{searchValue}}\" کو کھینچیں",
 	"Pull a model from Ollama.com": "Ollama.com سے ماڈل حاصل کریں",
 	"Pull a model from Ollama.com": "Ollama.com سے ماڈل حاصل کریں",
+	"Query Generation Prompt": "",
 	"Query Params": "کوئری پیرامیٹرز",
 	"Query Params": "کوئری پیرامیٹرز",
 	"RAG Template": "آر اے جی سانچہ",
 	"RAG Template": "آر اے جی سانچہ",
 	"Rating": "درجہ بندی",
 	"Rating": "درجہ بندی",
@@ -725,7 +732,6 @@
 	"Search Models": "ماڈلز تلاش کریں",
 	"Search Models": "ماڈلز تلاش کریں",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "تلاش کے اشارے",
 	"Search Prompts": "تلاش کے اشارے",
-	"Search Query Generation Prompt": "تلاش کے استفسار کی تیاری کی ترغیب   ",
 	"Search Result Count": "تلاش کا نتیجہ شمار ",
 	"Search Result Count": "تلاش کا نتیجہ شمار ",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "تلاش کے اوزار",
 	"Search Tools": "تلاش کے اوزار",
@@ -853,6 +859,8 @@
 	"This response was generated by \"{{model}}\"": "یہ جواب \"{{model}}\" کے ذریعہ تیار کیا گیا",
 	"This response was generated by \"{{model}}\"": "یہ جواب \"{{model}}\" کے ذریعہ تیار کیا گیا",
 	"This will delete": "یہ حذف کر دے گا",
 	"This will delete": "یہ حذف کر دے گا",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "یہ <strong>{{NAME}}</strong> اور <strong>اس کے تمام مواد</strong> کو حذف کر دے گا",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "یہ <strong>{{NAME}}</strong> اور <strong>اس کے تمام مواد</strong> کو حذف کر دے گا",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "یہ علمی بنیاد کو دوبارہ ترتیب دے گا اور تمام فائلز کو متوازن کرے گا کیا آپ جاری رکھنا چاہتے ہیں؟",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "یہ علمی بنیاد کو دوبارہ ترتیب دے گا اور تمام فائلز کو متوازن کرے گا کیا آپ جاری رکھنا چاہتے ہیں؟",
 	"Thorough explanation": "مکمل وضاحت",
 	"Thorough explanation": "مکمل وضاحت",
 	"Tika": "ٹیکہ",
 	"Tika": "ٹیکہ",

+ 9 - 1
src/lib/i18n/locales/vi-VN/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "Các tham số Nâng cao",
 	"Advanced Params": "Các tham số Nâng cao",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "Tất cả tài liệu",
 	"All Documents": "Tất cả tài liệu",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Cho phép Xóa nội dung chat",
 	"Allow Chat Deletion": "Cho phép Xóa nội dung chat",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "Xóa",
 	"Delete": "Xóa",
 	"Delete a model": "Xóa mô hình",
 	"Delete a model": "Xóa mô hình",
 	"Delete All Chats": "Xóa mọi cuộc Chat",
 	"Delete All Chats": "Xóa mọi cuộc Chat",
+	"Delete All Models": "",
 	"Delete chat": "Xóa nội dung chat",
 	"Delete chat": "Xóa nội dung chat",
 	"Delete Chat": "Xóa chat",
 	"Delete Chat": "Xóa chat",
 	"Delete chat?": "Xóa chat?",
 	"Delete chat?": "Xóa chat?",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "Hiển thị Emoji trong cuộc gọi",
 	"Display Emoji in Call": "Hiển thị Emoji trong cuộc gọi",
 	"Display the username instead of You in the Chat": "Hiển thị tên người sử dụng thay vì 'Bạn' trong nội dung chat",
 	"Display the username instead of You in the Chat": "Hiển thị tên người sử dụng thay vì 'Bạn' trong nội dung chat",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "Không cài đặt các functions từ các nguồn mà bạn không hoàn toàn tin tưởng.",
 	"Do not install functions from sources you do not fully trust.": "Không cài đặt các functions từ các nguồn mà bạn không hoàn toàn tin tưởng.",
 	"Do not install tools from sources you do not fully trust.": "Không cài đặt các tools từ những nguồn mà bạn không hoàn toàn tin tưởng.",
 	"Do not install tools from sources you do not fully trust.": "Không cài đặt các tools từ những nguồn mà bạn không hoàn toàn tin tưởng.",
@@ -288,12 +291,14 @@
 	"Embedding Model": "Mô hình embedding",
 	"Embedding Model": "Mô hình embedding",
 	"Embedding Model Engine": "Trình xử lý embedding",
 	"Embedding Model Engine": "Trình xử lý embedding",
 	"Embedding model set to \"{{embedding_model}}\"": "Mô hình embedding đã được thiết lập thành \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Mô hình embedding đã được thiết lập thành \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "Cho phép Chia sẻ Cộng đồng",
 	"Enable Community Sharing": "Cho phép Chia sẻ Cộng đồng",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "Cho phép phản hồi, đánh giá",
 	"Enable Message Rating": "Cho phép phản hồi, đánh giá",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Cho phép đăng ký mới",
 	"Enable New Sign Ups": "Cho phép đăng ký mới",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "Cho phép tìm kiếm Web",
 	"Enable Web Search": "Cho phép tìm kiếm Web",
 	"Enable Web Search Query Generation": "",
 	"Enable Web Search Query Generation": "",
@@ -631,6 +636,7 @@
 	"Overview": "",
 	"Overview": "",
 	"page": "",
 	"page": "",
 	"Password": "Mật khẩu",
 	"Password": "Mật khẩu",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "Tập tin PDF (.pdf)",
 	"PDF document (.pdf)": "Tập tin PDF (.pdf)",
 	"PDF Extract Images (OCR)": "Trích xuất ảnh từ PDF (OCR)",
 	"PDF Extract Images (OCR)": "Trích xuất ảnh từ PDF (OCR)",
 	"pending": "đang chờ phê duyệt",
 	"pending": "đang chờ phê duyệt",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Tải \"{{searchValue}}\" từ Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Tải \"{{searchValue}}\" từ Ollama.com",
 	"Pull a model from Ollama.com": "Tải mô hình từ Ollama.com",
 	"Pull a model from Ollama.com": "Tải mô hình từ Ollama.com",
+	"Query Generation Prompt": "",
 	"Query Params": "Tham số Truy vấn",
 	"Query Params": "Tham số Truy vấn",
 	"RAG Template": "Mẫu prompt cho RAG",
 	"RAG Template": "Mẫu prompt cho RAG",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "Tìm model",
 	"Search Models": "Tìm model",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "Tìm prompt",
 	"Search Prompts": "Tìm prompt",
-	"Search Query Generation Prompt": "Prompt tạo câu truy vấn, tìm kiếm",
 	"Search Result Count": "Số kết quả tìm kiếm",
 	"Search Result Count": "Số kết quả tìm kiếm",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "Tìm kiếm Tools",
 	"Search Tools": "Tìm kiếm Tools",
@@ -852,6 +858,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "Chat này sẽ bị xóa",
 	"This will delete": "Chat này sẽ bị xóa",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Giải thích kỹ lưỡng",
 	"Thorough explanation": "Giải thích kỹ lưỡng",
 	"Tika": "",
 	"Tika": "",

+ 9 - 1
src/lib/i18n/locales/zh-CN/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "高级参数",
 	"Advanced Params": "高级参数",
 	"All chats": "所有对话",
 	"All chats": "所有对话",
 	"All Documents": "所有文档",
 	"All Documents": "所有文档",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "允许删除对话记录",
 	"Allow Chat Deletion": "允许删除对话记录",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "删除",
 	"Delete": "删除",
 	"Delete a model": "删除一个模型",
 	"Delete a model": "删除一个模型",
 	"Delete All Chats": "删除所有对话记录",
 	"Delete All Chats": "删除所有对话记录",
+	"Delete All Models": "",
 	"Delete chat": "删除对话记录",
 	"Delete chat": "删除对话记录",
 	"Delete Chat": "删除对话记录",
 	"Delete Chat": "删除对话记录",
 	"Delete chat?": "删除对话记录?",
 	"Delete chat?": "删除对话记录?",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "在通话中显示 Emoji 表情符号",
 	"Display Emoji in Call": "在通话中显示 Emoji 表情符号",
 	"Display the username instead of You in the Chat": "在对话中显示用户名而不是“你”",
 	"Display the username instead of You in the Chat": "在对话中显示用户名而不是“你”",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "深入知识的海洋",
 	"Dive into knowledge": "深入知识的海洋",
 	"Do not install functions from sources you do not fully trust.": "切勿安装来源不完全可信的函数。",
 	"Do not install functions from sources you do not fully trust.": "切勿安装来源不完全可信的函数。",
 	"Do not install tools from sources you do not fully trust.": "切勿安装来源不完全可信的工具。",
 	"Do not install tools from sources you do not fully trust.": "切勿安装来源不完全可信的工具。",
@@ -288,12 +291,14 @@
 	"Embedding Model": "语义向量模型",
 	"Embedding Model": "语义向量模型",
 	"Embedding Model Engine": "语义向量模型引擎",
 	"Embedding Model Engine": "语义向量模型引擎",
 	"Embedding model set to \"{{embedding_model}}\"": "语义向量模型设置为 \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "语义向量模型设置为 \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "启用分享至社区",
 	"Enable Community Sharing": "启用分享至社区",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "启用内存锁定(mlock)以防止模型数据被交换出RAM。此选项将模型的工作集页面锁定在RAM中,确保它们不会被交换到磁盘。这可以通过避免页面错误和确保快速数据访问来帮助维持性能。",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "启用内存锁定(mlock)以防止模型数据被交换出RAM。此选项将模型的工作集页面锁定在RAM中,确保它们不会被交换到磁盘。这可以通过避免页面错误和确保快速数据访问来帮助维持性能。",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "启用内存映射(mmap)以加载模型数据。此选项允许系统通过将磁盘文件视为在RAM中来使用磁盘存储作为RAM的扩展。这可以通过更快的数据访问来提高模型性能。然而,它可能无法在所有系统上正常工作,并且可能会消耗大量磁盘空间。",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "启用内存映射(mmap)以加载模型数据。此选项允许系统通过将磁盘文件视为在RAM中来使用磁盘存储作为RAM的扩展。这可以通过更快的数据访问来提高模型性能。然而,它可能无法在所有系统上正常工作,并且可能会消耗大量磁盘空间。",
 	"Enable Message Rating": "启用回复评价",
 	"Enable Message Rating": "启用回复评价",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "启用 Mirostat 采样以控制困惑度。(默认值:0,0 = 禁用,1 = Mirostat,2 = Mirostat 2.0)",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "启用 Mirostat 采样以控制困惑度。(默认值:0,0 = 禁用,1 = Mirostat,2 = Mirostat 2.0)",
 	"Enable New Sign Ups": "允许新用户注册",
 	"Enable New Sign Ups": "允许新用户注册",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "启用自动生成标签",
 	"Enable Tags Generation": "启用自动生成标签",
 	"Enable Web Search": "启用联网搜索",
 	"Enable Web Search": "启用联网搜索",
 	"Enable Web Search Query Generation": "启用生成联网搜索关键词",
 	"Enable Web Search Query Generation": "启用生成联网搜索关键词",
@@ -631,6 +636,7 @@
 	"Overview": "概述",
 	"Overview": "概述",
 	"page": "页",
 	"page": "页",
 	"Password": "密码",
 	"Password": "密码",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "PDF 文档 (.pdf)",
 	"PDF document (.pdf)": "PDF 文档 (.pdf)",
 	"PDF Extract Images (OCR)": "PDF 图像处理 (使用 OCR)",
 	"PDF Extract Images (OCR)": "PDF 图像处理 (使用 OCR)",
 	"pending": "待激活",
 	"pending": "待激活",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "从 Ollama.com 拉取 \"{{searchValue}}\"",
 	"Pull \"{{searchValue}}\" from Ollama.com": "从 Ollama.com 拉取 \"{{searchValue}}\"",
 	"Pull a model from Ollama.com": "从 Ollama.com 拉取一个模型",
 	"Pull a model from Ollama.com": "从 Ollama.com 拉取一个模型",
+	"Query Generation Prompt": "",
 	"Query Params": "查询参数",
 	"Query Params": "查询参数",
 	"RAG Template": "RAG 提示词模板",
 	"RAG Template": "RAG 提示词模板",
 	"Rating": "评价",
 	"Rating": "评价",
@@ -725,7 +732,6 @@
 	"Search Models": "搜索模型",
 	"Search Models": "搜索模型",
 	"Search options": "搜索选项",
 	"Search options": "搜索选项",
 	"Search Prompts": "搜索提示词",
 	"Search Prompts": "搜索提示词",
-	"Search Query Generation Prompt": "用于联网搜索关键词生成的提示词",
 	"Search Result Count": "搜索结果数量",
 	"Search Result Count": "搜索结果数量",
 	"Search the web": "从网络搜索",
 	"Search the web": "从网络搜索",
 	"Search Tools": "搜索工具",
 	"Search Tools": "搜索工具",
@@ -852,6 +858,8 @@
 	"This response was generated by \"{{model}}\"": "此回复由 \"{{model}}\" 生成",
 	"This response was generated by \"{{model}}\"": "此回复由 \"{{model}}\" 生成",
 	"This will delete": "这将删除",
 	"This will delete": "这将删除",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "这将删除<strong>{{NAME}}</strong>及其<strong>所有内容</strong>。",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "这将删除<strong>{{NAME}}</strong>及其<strong>所有内容</strong>。",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "这将重置知识库并替换所有文件为目录下文件。确认继续?",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "这将重置知识库并替换所有文件为目录下文件。确认继续?",
 	"Thorough explanation": "解释较为详细",
 	"Thorough explanation": "解释较为详细",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 9 - 1
src/lib/i18n/locales/zh-TW/translation.json

@@ -48,6 +48,7 @@
 	"Advanced Params": "進階參數",
 	"Advanced Params": "進階參數",
 	"All chats": "",
 	"All chats": "",
 	"All Documents": "所有文件",
 	"All Documents": "所有文件",
+	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "允許刪除對話紀錄",
 	"Allow Chat Deletion": "允許刪除對話紀錄",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -221,6 +222,7 @@
 	"Delete": "刪除",
 	"Delete": "刪除",
 	"Delete a model": "刪除模型",
 	"Delete a model": "刪除模型",
 	"Delete All Chats": "刪除所有對話紀錄",
 	"Delete All Chats": "刪除所有對話紀錄",
+	"Delete All Models": "",
 	"Delete chat": "刪除對話紀錄",
 	"Delete chat": "刪除對話紀錄",
 	"Delete Chat": "刪除對話紀錄",
 	"Delete Chat": "刪除對話紀錄",
 	"Delete chat?": "刪除對話紀錄?",
 	"Delete chat?": "刪除對話紀錄?",
@@ -249,6 +251,7 @@
 	"Display": "",
 	"Display": "",
 	"Display Emoji in Call": "在通話中顯示表情符號",
 	"Display Emoji in Call": "在通話中顯示表情符號",
 	"Display the username instead of You in the Chat": "在對話中顯示使用者名稱,而非「您」",
 	"Display the username instead of You in the Chat": "在對話中顯示使用者名稱,而非「您」",
+	"Displays citations in the response": "",
 	"Dive into knowledge": "",
 	"Dive into knowledge": "",
 	"Do not install functions from sources you do not fully trust.": "請勿從您無法完全信任的來源安裝函式。",
 	"Do not install functions from sources you do not fully trust.": "請勿從您無法完全信任的來源安裝函式。",
 	"Do not install tools from sources you do not fully trust.": "請勿從您無法完全信任的來源安裝工具。",
 	"Do not install tools from sources you do not fully trust.": "請勿從您無法完全信任的來源安裝工具。",
@@ -288,12 +291,14 @@
 	"Embedding Model": "嵌入模型",
 	"Embedding Model": "嵌入模型",
 	"Embedding Model Engine": "嵌入模型引擎",
 	"Embedding Model Engine": "嵌入模型引擎",
 	"Embedding model set to \"{{embedding_model}}\"": "嵌入模型已設定為 \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "嵌入模型已設定為 \"{{embedding_model}}\"",
+	"Enable API Key Auth": "",
 	"Enable Community Sharing": "啟用社群分享",
 	"Enable Community Sharing": "啟用社群分享",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "啟用訊息評分",
 	"Enable Message Rating": "啟用訊息評分",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "允許新使用者註冊",
 	"Enable New Sign Ups": "允許新使用者註冊",
+	"Enable Retrieval Query Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Tags Generation": "",
 	"Enable Web Search": "啟用網頁搜尋",
 	"Enable Web Search": "啟用網頁搜尋",
 	"Enable Web Search Query Generation": "啟用網頁搜尋查詢生成",
 	"Enable Web Search Query Generation": "啟用網頁搜尋查詢生成",
@@ -631,6 +636,7 @@
 	"Overview": "概覽",
 	"Overview": "概覽",
 	"page": "頁面",
 	"page": "頁面",
 	"Password": "密碼",
 	"Password": "密碼",
+	"Paste Large Text as File": "",
 	"PDF document (.pdf)": "PDF 文件 (.pdf)",
 	"PDF document (.pdf)": "PDF 文件 (.pdf)",
 	"PDF Extract Images (OCR)": "PDF 影像擷取(OCR 光學文字辨識)",
 	"PDF Extract Images (OCR)": "PDF 影像擷取(OCR 光學文字辨識)",
 	"pending": "待處理",
 	"pending": "待處理",
@@ -669,6 +675,7 @@
 	"Prompts Access": "",
 	"Prompts Access": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "從 Ollama.com 下載 \"{{searchValue}}\"",
 	"Pull \"{{searchValue}}\" from Ollama.com": "從 Ollama.com 下載 \"{{searchValue}}\"",
 	"Pull a model from Ollama.com": "從 Ollama.com 下載模型",
 	"Pull a model from Ollama.com": "從 Ollama.com 下載模型",
+	"Query Generation Prompt": "",
 	"Query Params": "查詢參數",
 	"Query Params": "查詢參數",
 	"RAG Template": "RAG 範本",
 	"RAG Template": "RAG 範本",
 	"Rating": "",
 	"Rating": "",
@@ -725,7 +732,6 @@
 	"Search Models": "搜尋模型",
 	"Search Models": "搜尋模型",
 	"Search options": "",
 	"Search options": "",
 	"Search Prompts": "搜尋提示詞",
 	"Search Prompts": "搜尋提示詞",
-	"Search Query Generation Prompt": "搜尋查詢生成提示詞",
 	"Search Result Count": "搜尋結果數量",
 	"Search Result Count": "搜尋結果數量",
 	"Search the web": "",
 	"Search the web": "",
 	"Search Tools": "搜尋工具",
 	"Search Tools": "搜尋工具",
@@ -853,6 +859,8 @@
 	"This response was generated by \"{{model}}\"": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "這將會刪除",
 	"This will delete": "這將會刪除",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
+	"This will delete all models including custom models": "",
+	"This will delete all models including custom models and cannot be undone.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "這將重設知識庫並同步所有檔案。您確定要繼續嗎?",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "這將重設知識庫並同步所有檔案。您確定要繼續嗎?",
 	"Thorough explanation": "詳細解釋",
 	"Thorough explanation": "詳細解釋",
 	"Tika": "Tika",
 	"Tika": "Tika",