Timothy Jaeryang Baek 4 miesięcy temu
rodzic
commit
51e0ed454c
51 zmienionych plików z 500 dodań i 138 usunięć
  1. 59 39
      src/lib/apis/channels/index.ts
  2. 9 2
      src/lib/i18n/locales/ar-BH/translation.json
  3. 9 2
      src/lib/i18n/locales/bg-BG/translation.json
  4. 9 2
      src/lib/i18n/locales/bn-BD/translation.json
  5. 9 2
      src/lib/i18n/locales/ca-ES/translation.json
  6. 9 2
      src/lib/i18n/locales/ceb-PH/translation.json
  7. 9 2
      src/lib/i18n/locales/cs-CZ/translation.json
  8. 9 2
      src/lib/i18n/locales/da-DK/translation.json
  9. 9 2
      src/lib/i18n/locales/de-DE/translation.json
  10. 9 2
      src/lib/i18n/locales/dg-DG/translation.json
  11. 9 2
      src/lib/i18n/locales/el-GR/translation.json
  12. 9 2
      src/lib/i18n/locales/en-GB/translation.json
  13. 9 2
      src/lib/i18n/locales/en-US/translation.json
  14. 9 2
      src/lib/i18n/locales/es-ES/translation.json
  15. 9 2
      src/lib/i18n/locales/eu-ES/translation.json
  16. 9 2
      src/lib/i18n/locales/fa-IR/translation.json
  17. 9 2
      src/lib/i18n/locales/fi-FI/translation.json
  18. 9 2
      src/lib/i18n/locales/fr-CA/translation.json
  19. 9 2
      src/lib/i18n/locales/fr-FR/translation.json
  20. 9 2
      src/lib/i18n/locales/he-IL/translation.json
  21. 9 2
      src/lib/i18n/locales/hi-IN/translation.json
  22. 9 2
      src/lib/i18n/locales/hr-HR/translation.json
  23. 9 2
      src/lib/i18n/locales/hu-HU/translation.json
  24. 9 2
      src/lib/i18n/locales/id-ID/translation.json
  25. 9 2
      src/lib/i18n/locales/ie-GA/translation.json
  26. 9 2
      src/lib/i18n/locales/it-IT/translation.json
  27. 9 2
      src/lib/i18n/locales/ja-JP/translation.json
  28. 9 2
      src/lib/i18n/locales/ka-GE/translation.json
  29. 9 2
      src/lib/i18n/locales/ko-KR/translation.json
  30. 9 2
      src/lib/i18n/locales/lt-LT/translation.json
  31. 9 2
      src/lib/i18n/locales/ms-MY/translation.json
  32. 9 2
      src/lib/i18n/locales/nb-NO/translation.json
  33. 9 2
      src/lib/i18n/locales/nl-NL/translation.json
  34. 9 2
      src/lib/i18n/locales/pa-IN/translation.json
  35. 9 2
      src/lib/i18n/locales/pl-PL/translation.json
  36. 9 2
      src/lib/i18n/locales/pt-BR/translation.json
  37. 9 2
      src/lib/i18n/locales/pt-PT/translation.json
  38. 9 2
      src/lib/i18n/locales/ro-RO/translation.json
  39. 9 2
      src/lib/i18n/locales/ru-RU/translation.json
  40. 9 2
      src/lib/i18n/locales/sk-SK/translation.json
  41. 9 2
      src/lib/i18n/locales/sr-RS/translation.json
  42. 9 2
      src/lib/i18n/locales/sv-SE/translation.json
  43. 9 2
      src/lib/i18n/locales/th-TH/translation.json
  44. 9 2
      src/lib/i18n/locales/tk-TW/translation.json
  45. 9 2
      src/lib/i18n/locales/tr-TR/translation.json
  46. 9 2
      src/lib/i18n/locales/uk-UA/translation.json
  47. 9 2
      src/lib/i18n/locales/ur-PK/translation.json
  48. 9 2
      src/lib/i18n/locales/vi-VN/translation.json
  49. 9 2
      src/lib/i18n/locales/zh-CN/translation.json
  50. 9 2
      src/lib/i18n/locales/zh-TW/translation.json
  51. 0 1
      src/lib/stores/index.ts

+ 59 - 39
src/lib/apis/channels/index.ts

@@ -5,7 +5,7 @@ type ChannelForm = {
 	data?: object;
 	data?: object;
 	meta?: object;
 	meta?: object;
 	access_control?: object;
 	access_control?: object;
-}
+};
 
 
 export const createNewChannel = async (token: string = '', channel: ChannelForm) => {
 export const createNewChannel = async (token: string = '', channel: ChannelForm) => {
 	let error = null;
 	let error = null;
@@ -70,7 +70,6 @@ export const getChannels = async (token: string = '') => {
 	return res;
 	return res;
 };
 };
 
 
-
 export const getChannelById = async (token: string = '', channel_id: string) => {
 export const getChannelById = async (token: string = '', channel_id: string) => {
 	let error = null;
 	let error = null;
 
 
@@ -100,9 +99,13 @@ export const getChannelById = async (token: string = '', channel_id: string) =>
 	}
 	}
 
 
 	return res;
 	return res;
-}
+};
 
 
-export const updateChannelById = async (token: string = '', channel_id: string, channel: ChannelForm) => {
+export const updateChannelById = async (
+	token: string = '',
+	channel_id: string,
+	channel: ChannelForm
+) => {
 	let error = null;
 	let error = null;
 
 
 	const res = await fetch(`${WEBUI_API_BASE_URL}/channels/${channel_id}/update`, {
 	const res = await fetch(`${WEBUI_API_BASE_URL}/channels/${channel_id}/update`, {
@@ -132,7 +135,7 @@ export const updateChannelById = async (token: string = '', channel_id: string,
 	}
 	}
 
 
 	return res;
 	return res;
-}
+};
 
 
 export const deleteChannelById = async (token: string = '', channel_id: string) => {
 export const deleteChannelById = async (token: string = '', channel_id: string) => {
 	let error = null;
 	let error = null;
@@ -163,20 +166,27 @@ export const deleteChannelById = async (token: string = '', channel_id: string)
 	}
 	}
 
 
 	return res;
 	return res;
-}
-
+};
 
 
-export const getChannelMessages = async (token: string = '', channel_id: string, skip: number = 0, limit: number = 50) => {
+export const getChannelMessages = async (
+	token: string = '',
+	channel_id: string,
+	skip: number = 0,
+	limit: number = 50
+) => {
 	let error = null;
 	let error = null;
 
 
-	const res = await fetch(`${WEBUI_API_BASE_URL}/channels/${channel_id}/messages?skip=${skip}&limit=${limit}`, {
-		method: 'GET',
-		headers: {
-			Accept: 'application/json',
-			'Content-Type': 'application/json',
-			authorization: `Bearer ${token}`
+	const res = await fetch(
+		`${WEBUI_API_BASE_URL}/channels/${channel_id}/messages?skip=${skip}&limit=${limit}`,
+		{
+			method: 'GET',
+			headers: {
+				Accept: 'application/json',
+				'Content-Type': 'application/json',
+				authorization: `Bearer ${token}`
+			}
 		}
 		}
-	})
+	)
 		.then(async (res) => {
 		.then(async (res) => {
 			if (!res.ok) throw await res.json();
 			if (!res.ok) throw await res.json();
 			return res.json();
 			return res.json();
@@ -195,14 +205,13 @@ export const getChannelMessages = async (token: string = '', channel_id: string,
 	}
 	}
 
 
 	return res;
 	return res;
-}
+};
 
 
 type MessageForm = {
 type MessageForm = {
 	content: string;
 	content: string;
 	data?: object;
 	data?: object;
-    meta?: object;
-
-}
+	meta?: object;
+};
 
 
 export const sendMessage = async (token: string = '', channel_id: string, message: MessageForm) => {
 export const sendMessage = async (token: string = '', channel_id: string, message: MessageForm) => {
 	let error = null;
 	let error = null;
@@ -234,20 +243,28 @@ export const sendMessage = async (token: string = '', channel_id: string, messag
 	}
 	}
 
 
 	return res;
 	return res;
-}
+};
 
 
-export const updateMessage = async (token: string = '', channel_id: string, message_id: string, message: MessageForm) => {
+export const updateMessage = async (
+	token: string = '',
+	channel_id: string,
+	message_id: string,
+	message: MessageForm
+) => {
 	let error = null;
 	let error = null;
 
 
-	const res = await fetch(`${WEBUI_API_BASE_URL}/channels/${channel_id}/messages/${message_id}/update`, {
-		method: 'POST',
-		headers: {
-			Accept: 'application/json',
-			'Content-Type': 'application/json',
-			authorization: `Bearer ${token}`
-		},
-		body: JSON.stringify({ ...message })
-	})
+	const res = await fetch(
+		`${WEBUI_API_BASE_URL}/channels/${channel_id}/messages/${message_id}/update`,
+		{
+			method: 'POST',
+			headers: {
+				Accept: 'application/json',
+				'Content-Type': 'application/json',
+				authorization: `Bearer ${token}`
+			},
+			body: JSON.stringify({ ...message })
+		}
+	)
 		.then(async (res) => {
 		.then(async (res) => {
 			if (!res.ok) throw await res.json();
 			if (!res.ok) throw await res.json();
 			return res.json();
 			return res.json();
@@ -266,19 +283,22 @@ export const updateMessage = async (token: string = '', channel_id: string, mess
 	}
 	}
 
 
 	return res;
 	return res;
-}
+};
 
 
 export const deleteMessage = async (token: string = '', channel_id: string, message_id: string) => {
 export const deleteMessage = async (token: string = '', channel_id: string, message_id: string) => {
 	let error = null;
 	let error = null;
 
 
-	const res = await fetch(`${WEBUI_API_BASE_URL}/channels/${channel_id}/messages/${message_id}/delete`, {
-		method: 'DELETE',
-		headers: {
-			Accept: 'application/json',
-			'Content-Type': 'application/json',
-			authorization: `Bearer ${token}`
+	const res = await fetch(
+		`${WEBUI_API_BASE_URL}/channels/${channel_id}/messages/${message_id}/delete`,
+		{
+			method: 'DELETE',
+			headers: {
+				Accept: 'application/json',
+				'Content-Type': 'application/json',
+				authorization: `Bearer ${token}`
+			}
 		}
 		}
-	})
+	)
 		.then(async (res) => {
 		.then(async (res) => {
 			if (!res.ok) throw await res.json();
 			if (!res.ok) throw await res.json();
 			return res.json();
 			return res.json();
@@ -297,4 +317,4 @@ export const deleteMessage = async (token: string = '', channel_id: string, mess
 	}
 	}
 
 
 	return res;
 	return res;
-}
+};

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Advanced Parameters": "التعليمات المتقدمة",
 	"Advanced Parameters": "التعليمات المتقدمة",
 	"Advanced Params": "المعلمات المتقدمة",
 	"Advanced Params": "المعلمات المتقدمة",
-	"All chats": "",
 	"All Documents": "جميع الملفات",
 	"All Documents": "جميع الملفات",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "أرشفة جميع الدردشات",
 	"Archive All Chats": "أرشفة جميع الدردشات",
 	"Archived Chats": "الأرشيف المحادثات",
 	"Archived Chats": "الأرشيف المحادثات",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "هل أنت متأكد ؟",
 	"Are you sure?": "هل أنت متأكد ؟",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "",
 	"Batch Size (num_batch)": "",
 	"before": "قبل",
 	"before": "قبل",
 	"Being lazy": "كون كسول",
 	"Being lazy": "كون كسول",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "مفتاح واجهة برمجة تطبيقات البحث الشجاع",
 	"Brave Search API Key": "مفتاح واجهة برمجة تطبيقات البحث الشجاع",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "تغير الباسورد",
 	"Change Password": "تغير الباسورد",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "إنشاء نموذج",
 	"Create a model": "إنشاء نموذج",
 	"Create Account": "إنشاء حساب",
 	"Create Account": "إنشاء حساب",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create Knowledge": "",
 	"Create new key": "عمل مفتاح جديد",
 	"Create new key": "عمل مفتاح جديد",
@@ -239,6 +244,7 @@
 	"Delete chat?": "",
 	"Delete chat?": "",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
+	"Delete Message": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "أحذف هذا الرابط",
 	"delete this link": "أحذف هذا الرابط",
 	"Delete tool?": "",
 	"Delete tool?": "",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "تعديل",
 	"Edit": "تعديل",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -595,8 +602,8 @@
 	"Name": "الأسم",
 	"Name": "الأسم",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "دردشة جديدة",
 	"New Chat": "دردشة جديدة",
-	"New folder": "",
 	"New Password": "كلمة المرور الجديدة",
 	"New Password": "كلمة المرور الجديدة",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "",
 	"No content to speak": "",
 	"No distance available": "",
 	"No distance available": "",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Advanced Parameters": "Разширени Параметри",
 	"Advanced Parameters": "Разширени Параметри",
 	"Advanced Params": "Разширени параметри",
 	"Advanced Params": "Разширени параметри",
-	"All chats": "",
 	"All Documents": "Всички Документи",
 	"All Documents": "Всички Документи",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Архив Всички чатове",
 	"Archive All Chats": "Архив Всички чатове",
 	"Archived Chats": "Архивирани Чатове",
 	"Archived Chats": "Архивирани Чатове",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "Сигурни ли сте?",
 	"Are you sure?": "Сигурни ли сте?",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "",
 	"Batch Size (num_batch)": "",
 	"before": "преди",
 	"before": "преди",
 	"Being lazy": "Да бъдеш мързелив",
 	"Being lazy": "Да бъдеш мързелив",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "Смел ключ за API за търсене",
 	"Brave Search API Key": "Смел ключ за API за търсене",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "Промяна на Парола",
 	"Change Password": "Промяна на Парола",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "Създаване на модел",
 	"Create a model": "Създаване на модел",
 	"Create Account": "Създаване на Акаунт",
 	"Create Account": "Създаване на Акаунт",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create Knowledge": "",
 	"Create new key": "Създаване на нов ключ",
 	"Create new key": "Създаване на нов ключ",
@@ -239,6 +244,7 @@
 	"Delete chat?": "",
 	"Delete chat?": "",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
+	"Delete Message": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "Изтриване на този линк",
 	"delete this link": "Изтриване на този линк",
 	"Delete tool?": "",
 	"Delete tool?": "",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "Редактиране",
 	"Edit": "Редактиране",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -595,8 +602,8 @@
 	"Name": "Име",
 	"Name": "Име",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "Нов чат",
 	"New Chat": "Нов чат",
-	"New folder": "",
 	"New Password": "Нова парола",
 	"New Password": "Нова парола",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "",
 	"No content to speak": "",
 	"No distance available": "",
 	"No distance available": "",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Advanced Parameters": "এডভান্সড প্যারামিটার্স",
 	"Advanced Parameters": "এডভান্সড প্যারামিটার্স",
 	"Advanced Params": "অ্যাডভান্সড প্যারাম",
 	"Advanced Params": "অ্যাডভান্সড প্যারাম",
-	"All chats": "",
 	"All Documents": "সব ডকুমেন্ট",
 	"All Documents": "সব ডকুমেন্ট",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "আর্কাইভ করুন সকল চ্যাট",
 	"Archive All Chats": "আর্কাইভ করুন সকল চ্যাট",
 	"Archived Chats": "চ্যাট ইতিহাস সংরক্ষণাগার",
 	"Archived Chats": "চ্যাট ইতিহাস সংরক্ষণাগার",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "আপনি নিশ্চিত?",
 	"Are you sure?": "আপনি নিশ্চিত?",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "",
 	"Batch Size (num_batch)": "",
 	"before": "পূর্ববর্তী",
 	"before": "পূর্ববর্তী",
 	"Being lazy": "অলস হওয়া",
 	"Being lazy": "অলস হওয়া",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "সাহসী অনুসন্ধান API কী",
 	"Brave Search API Key": "সাহসী অনুসন্ধান API কী",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "পাসওয়ার্ড পরিবর্তন করুন",
 	"Change Password": "পাসওয়ার্ড পরিবর্তন করুন",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "একটি মডেল তৈরি করুন",
 	"Create a model": "একটি মডেল তৈরি করুন",
 	"Create Account": "একাউন্ট তৈরি করুন",
 	"Create Account": "একাউন্ট তৈরি করুন",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create Knowledge": "",
 	"Create new key": "একটি নতুন কী তৈরি করুন",
 	"Create new key": "একটি নতুন কী তৈরি করুন",
@@ -239,6 +244,7 @@
 	"Delete chat?": "",
 	"Delete chat?": "",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
+	"Delete Message": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "এই লিংক মুছে ফেলুন",
 	"delete this link": "এই লিংক মুছে ফেলুন",
 	"Delete tool?": "",
 	"Delete tool?": "",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "এডিট করুন",
 	"Edit": "এডিট করুন",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -595,8 +602,8 @@
 	"Name": "নাম",
 	"Name": "নাম",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "নতুন চ্যাট",
 	"New Chat": "নতুন চ্যাট",
-	"New folder": "",
 	"New Password": "নতুন পাসওয়ার্ড",
 	"New Password": "নতুন পাসওয়ার্ড",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "",
 	"No content to speak": "",
 	"No distance available": "",
 	"No distance available": "",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Els administradors tenen accés a totes les eines en tot moment; els usuaris necessiten eines assignades per model a l'espai de treball.",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Els administradors tenen accés a totes les eines en tot moment; els usuaris necessiten eines assignades per model a l'espai de treball.",
 	"Advanced Parameters": "Paràmetres avançats",
 	"Advanced Parameters": "Paràmetres avançats",
 	"Advanced Params": "Paràmetres avançats",
 	"Advanced Params": "Paràmetres avançats",
-	"All chats": "Tots els xats",
 	"All Documents": "Tots els documents",
 	"All Documents": "Tots els documents",
 	"All models deleted successfully": "Tots els models s'han eliminat correctament",
 	"All models deleted successfully": "Tots els models s'han eliminat correctament",
 	"Allow Chat Delete": "Permetre eliminar el xat",
 	"Allow Chat Delete": "Permetre eliminar el xat",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Arxiva tots els xats",
 	"Archive All Chats": "Arxiva tots els xats",
 	"Archived Chats": "Xats arxivats",
 	"Archived Chats": "Xats arxivats",
 	"archived-chat-export": "archived-chat-export",
 	"archived-chat-export": "archived-chat-export",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "Estàs segur que vols desarxivar tots els xats arxivats?",
 	"Are you sure you want to unarchive all archived chats?": "Estàs segur que vols desarxivar tots els xats arxivats?",
 	"Are you sure?": "Estàs segur?",
 	"Are you sure?": "Estàs segur?",
 	"Arena Models": "Models de l'Arena",
 	"Arena Models": "Models de l'Arena",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "Mida del lot (num_batch)",
 	"Batch Size (num_batch)": "Mida del lot (num_batch)",
 	"before": "abans",
 	"before": "abans",
 	"Being lazy": "Essent mandrós",
 	"Being lazy": "Essent mandrós",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "Punt de connexió a Bing Search V7",
 	"Bing Search V7 Endpoint": "Punt de connexió a Bing Search V7",
 	"Bing Search V7 Subscription Key": "Clau de subscripció a Bing Search V7",
 	"Bing Search V7 Subscription Key": "Clau de subscripció a Bing Search V7",
 	"Brave Search API Key": "Clau API de Brave Search",
 	"Brave Search API Key": "Clau API de Brave Search",
@@ -122,6 +124,8 @@
 	"Capture": "Captura",
 	"Capture": "Captura",
 	"Certificate Path": "Camí del certificat",
 	"Certificate Path": "Camí del certificat",
 	"Change Password": "Canviar la contrasenya",
 	"Change Password": "Canviar la contrasenya",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "Personatge",
 	"Character": "Personatge",
 	"Character limit for autocomplete generation input": "Límit de caràcters per a l'entrada de generació automàtica",
 	"Character limit for autocomplete generation input": "Límit de caràcters per a l'entrada de generació automàtica",
 	"Chart new frontiers": "Traça noves fronteres",
 	"Chart new frontiers": "Traça noves fronteres",
@@ -204,6 +208,7 @@
 	"Create a model": "Crear un model",
 	"Create a model": "Crear un model",
 	"Create Account": "Crear un compte",
 	"Create Account": "Crear un compte",
 	"Create Admin Account": "Crear un compte d'Administrador",
 	"Create Admin Account": "Crear un compte d'Administrador",
+	"Create Channel": "",
 	"Create Group": "Crear grup",
 	"Create Group": "Crear grup",
 	"Create Knowledge": "Crear Coneixement",
 	"Create Knowledge": "Crear Coneixement",
 	"Create new key": "Crear una nova clau",
 	"Create new key": "Crear una nova clau",
@@ -239,6 +244,7 @@
 	"Delete chat?": "Eliminar el xat?",
 	"Delete chat?": "Eliminar el xat?",
 	"Delete folder?": "Eliminar la carpeta?",
 	"Delete folder?": "Eliminar la carpeta?",
 	"Delete function?": "Eliminar funció?",
 	"Delete function?": "Eliminar funció?",
+	"Delete Message": "",
 	"Delete prompt?": "Eliminar indicació?",
 	"Delete prompt?": "Eliminar indicació?",
 	"delete this link": "Eliminar aquest enllaç",
 	"delete this link": "Eliminar aquest enllaç",
 	"Delete tool?": "Eliminar eina?",
 	"Delete tool?": "Eliminar eina?",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "p. ex. Eines per dur a terme operacions",
 	"e.g. Tools for performing various operations": "p. ex. Eines per dur a terme operacions",
 	"Edit": "Editar",
 	"Edit": "Editar",
 	"Edit Arena Model": "Editar model de l'Arena",
 	"Edit Arena Model": "Editar model de l'Arena",
+	"Edit Channel": "",
 	"Edit Connection": "Editar la connexió",
 	"Edit Connection": "Editar la connexió",
 	"Edit Default Permissions": "Editar el permisos per defecte",
 	"Edit Default Permissions": "Editar el permisos per defecte",
 	"Edit Memory": "Editar la memòria",
 	"Edit Memory": "Editar la memòria",
@@ -595,8 +602,8 @@
 	"Name": "Nom",
 	"Name": "Nom",
 	"Name your knowledge base": "Anomena la teva base de coneixement",
 	"Name your knowledge base": "Anomena la teva base de coneixement",
 	"New Chat": "Nou xat",
 	"New Chat": "Nou xat",
-	"New folder": "Nova carpeta",
 	"New Password": "Nova contrasenya",
 	"New Password": "Nova contrasenya",
+	"new-channel": "",
 	"No content found": "No s'ha trobat contingut",
 	"No content found": "No s'ha trobat contingut",
 	"No content to speak": "No hi ha contingut per parlar",
 	"No content to speak": "No hi ha contingut per parlar",
 	"No distance available": "No hi ha distància disponible",
 	"No distance available": "No hi ha distància disponible",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Advanced Parameters": "advanced settings",
 	"Advanced Parameters": "advanced settings",
 	"Advanced Params": "",
 	"Advanced Params": "",
-	"All chats": "",
 	"All Documents": "",
 	"All Documents": "",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "",
 	"Archive All Chats": "",
 	"Archived Chats": "pagrekord sa chat",
 	"Archived Chats": "pagrekord sa chat",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "Sigurado ka ?",
 	"Are you sure?": "Sigurado ka ?",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "",
 	"Batch Size (num_batch)": "",
 	"before": "",
 	"before": "",
 	"Being lazy": "",
 	"Being lazy": "",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "",
 	"Brave Search API Key": "",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "Usba ang password",
 	"Change Password": "Usba ang password",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "",
 	"Create a model": "",
 	"Create Account": "Paghimo og account",
 	"Create Account": "Paghimo og account",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create Knowledge": "",
 	"Create new key": "",
 	"Create new key": "",
@@ -239,6 +244,7 @@
 	"Delete chat?": "",
 	"Delete chat?": "",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
+	"Delete Message": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "",
 	"delete this link": "",
 	"Delete tool?": "",
 	"Delete tool?": "",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "",
 	"Edit": "",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -595,8 +602,8 @@
 	"Name": "Ngalan",
 	"Name": "Ngalan",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "Bag-ong diskusyon",
 	"New Chat": "Bag-ong diskusyon",
-	"New folder": "",
 	"New Password": "Bag-ong Password",
 	"New Password": "Bag-ong Password",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "",
 	"No content to speak": "",
 	"No distance available": "",
 	"No distance available": "",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administrátoři mají přístup ke všem nástrojům kdykoliv; uživatelé potřebují mít nástroje přiřazené podle modelu ve workspace.",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administrátoři mají přístup ke všem nástrojům kdykoliv; uživatelé potřebují mít nástroje přiřazené podle modelu ve workspace.",
 	"Advanced Parameters": "Pokročilé parametry",
 	"Advanced Parameters": "Pokročilé parametry",
 	"Advanced Params": "Pokročilé parametry",
 	"Advanced Params": "Pokročilé parametry",
-	"All chats": "Všechny chaty",
 	"All Documents": "Všechny dokumenty",
 	"All Documents": "Všechny dokumenty",
 	"All models deleted successfully": "Všechny modely úspěšně odstráněny",
 	"All models deleted successfully": "Všechny modely úspěšně odstráněny",
 	"Allow Chat Delete": "Povolit odstranění chatu",
 	"Allow Chat Delete": "Povolit odstranění chatu",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Archivovat všechny chaty",
 	"Archive All Chats": "Archivovat všechny chaty",
 	"Archived Chats": "Archivované chaty",
 	"Archived Chats": "Archivované chaty",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "Jste si jistý?",
 	"Are you sure?": "Jste si jistý?",
 	"Arena Models": "Arena modely",
 	"Arena Models": "Arena modely",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "Batch size (num_batch)",
 	"Batch Size (num_batch)": "Batch size (num_batch)",
 	"before": "před",
 	"before": "před",
 	"Being lazy": "",
 	"Being lazy": "",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "Klíč API pro Brave Search",
 	"Brave Search API Key": "Klíč API pro Brave Search",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "Změnit heslo",
 	"Change Password": "Změnit heslo",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "Znak",
 	"Character": "Znak",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "Vytvořte model",
 	"Create a model": "Vytvořte model",
 	"Create Account": "Vytvořit účet",
 	"Create Account": "Vytvořit účet",
 	"Create Admin Account": "Vytvořit admin účet",
 	"Create Admin Account": "Vytvořit admin účet",
+	"Create Channel": "",
 	"Create Group": "Vytvořit skupinu",
 	"Create Group": "Vytvořit skupinu",
 	"Create Knowledge": "Vytvořit knowledge",
 	"Create Knowledge": "Vytvořit knowledge",
 	"Create new key": "Vytvořit nový klíč",
 	"Create new key": "Vytvořit nový klíč",
@@ -239,6 +244,7 @@
 	"Delete chat?": "Smazat konverzaci?",
 	"Delete chat?": "Smazat konverzaci?",
 	"Delete folder?": "Smazat složku?",
 	"Delete folder?": "Smazat složku?",
 	"Delete function?": "Funkce pro odstranění?",
 	"Delete function?": "Funkce pro odstranění?",
+	"Delete Message": "",
 	"Delete prompt?": "Smazat prompt?",
 	"Delete prompt?": "Smazat prompt?",
 	"delete this link": "smazat tento odkaz",
 	"delete this link": "smazat tento odkaz",
 	"Delete tool?": "Odstranit nástroj?",
 	"Delete tool?": "Odstranit nástroj?",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "Upravit",
 	"Edit": "Upravit",
 	"Edit Arena Model": "Upravit Arena Model",
 	"Edit Arena Model": "Upravit Arena Model",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "Upravit paměť",
 	"Edit Memory": "Upravit paměť",
@@ -595,8 +602,8 @@
 	"Name": "Jméno",
 	"Name": "Jméno",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "Nový chat",
 	"New Chat": "Nový chat",
-	"New folder": "Nová složka",
 	"New Password": "Nové heslo",
 	"New Password": "Nové heslo",
+	"new-channel": "",
 	"No content found": "Nebyly nalezeny žádné obsahové informace.",
 	"No content found": "Nebyly nalezeny žádné obsahové informace.",
 	"No content to speak": "Žádný obsah k diskusi.",
 	"No content to speak": "Žádný obsah k diskusi.",
 	"No distance available": "Není dostupná žádná vzdálenost",
 	"No distance available": "Není dostupná žádná vzdálenost",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratorer har adgang til alle værktøjer altid; brugere skal tilføjes værktøjer pr. model i hvert workspace.",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratorer har adgang til alle værktøjer altid; brugere skal tilføjes værktøjer pr. model i hvert workspace.",
 	"Advanced Parameters": "Advancerede indstillinger",
 	"Advanced Parameters": "Advancerede indstillinger",
 	"Advanced Params": "Advancerede indstillinger",
 	"Advanced Params": "Advancerede indstillinger",
-	"All chats": "",
 	"All Documents": "Alle dokumenter",
 	"All Documents": "Alle dokumenter",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Arkiver alle chats",
 	"Archive All Chats": "Arkiver alle chats",
 	"Archived Chats": "Arkiverede chats",
 	"Archived Chats": "Arkiverede chats",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "Er du sikker?",
 	"Are you sure?": "Er du sikker?",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "Batch størrelse (num_batch)",
 	"Batch Size (num_batch)": "Batch størrelse (num_batch)",
 	"before": "før",
 	"before": "før",
 	"Being lazy": "At være doven",
 	"Being lazy": "At være doven",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "Brave Search API nøgle",
 	"Brave Search API Key": "Brave Search API nøgle",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "Skift password",
 	"Change Password": "Skift password",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "Lav en model",
 	"Create a model": "Lav en model",
 	"Create Account": "Opret profil",
 	"Create Account": "Opret profil",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "Opret Viden",
 	"Create Knowledge": "Opret Viden",
 	"Create new key": "Opret en ny nøgle",
 	"Create new key": "Opret en ny nøgle",
@@ -239,6 +244,7 @@
 	"Delete chat?": "Slet chat?",
 	"Delete chat?": "Slet chat?",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "Slet funktion?",
 	"Delete function?": "Slet funktion?",
+	"Delete Message": "",
 	"Delete prompt?": "Slet prompt?",
 	"Delete prompt?": "Slet prompt?",
 	"delete this link": "slet dette link",
 	"delete this link": "slet dette link",
 	"Delete tool?": "Slet værktøj?",
 	"Delete tool?": "Slet værktøj?",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "Rediger",
 	"Edit": "Rediger",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "Rediger hukommelse",
 	"Edit Memory": "Rediger hukommelse",
@@ -595,8 +602,8 @@
 	"Name": "Navn",
 	"Name": "Navn",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "Ny chat",
 	"New Chat": "Ny chat",
-	"New folder": "",
 	"New Password": "Ny adgangskode",
 	"New Password": "Ny adgangskode",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "Intet indhold at tale",
 	"No content to speak": "Intet indhold at tale",
 	"No distance available": "",
 	"No distance available": "",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratoren haben jederzeit Zugriff auf alle Werkzeuge. Benutzer können im Arbeitsbereich zugewiesen.",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratoren haben jederzeit Zugriff auf alle Werkzeuge. Benutzer können im Arbeitsbereich zugewiesen.",
 	"Advanced Parameters": "Erweiterte Parameter",
 	"Advanced Parameters": "Erweiterte Parameter",
 	"Advanced Params": "Erweiterte Parameter",
 	"Advanced Params": "Erweiterte Parameter",
-	"All chats": "Alle Unterhaltungen",
 	"All Documents": "Alle Dokumente",
 	"All Documents": "Alle Dokumente",
 	"All models deleted successfully": "Alle Modelle erfolgreich gelöscht",
 	"All models deleted successfully": "Alle Modelle erfolgreich gelöscht",
 	"Allow Chat Delete": "Löschen von Unterhaltungen erlauben",
 	"Allow Chat Delete": "Löschen von Unterhaltungen erlauben",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Alle Unterhaltungen archivieren",
 	"Archive All Chats": "Alle Unterhaltungen archivieren",
 	"Archived Chats": "Archivierte Unterhaltungen",
 	"Archived Chats": "Archivierte Unterhaltungen",
 	"archived-chat-export": "archivierter-chat-export",
 	"archived-chat-export": "archivierter-chat-export",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "Sind Sie sicher, dass Sie alle archivierten Unterhaltungen wiederherstellen möchten?",
 	"Are you sure you want to unarchive all archived chats?": "Sind Sie sicher, dass Sie alle archivierten Unterhaltungen wiederherstellen möchten?",
 	"Are you sure?": "Sind Sie sicher?",
 	"Are you sure?": "Sind Sie sicher?",
 	"Arena Models": "Arena-Modelle",
 	"Arena Models": "Arena-Modelle",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "Stapelgröße (num_batch)",
 	"Batch Size (num_batch)": "Stapelgröße (num_batch)",
 	"before": "bereits geteilt",
 	"before": "bereits geteilt",
 	"Being lazy": "Faulheit",
 	"Being lazy": "Faulheit",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "Bing Search V7-Endpunkt",
 	"Bing Search V7 Endpoint": "Bing Search V7-Endpunkt",
 	"Bing Search V7 Subscription Key": "Bing Search V7-Abonnement-Schlüssel",
 	"Bing Search V7 Subscription Key": "Bing Search V7-Abonnement-Schlüssel",
 	"Brave Search API Key": "Brave Search API-Schlüssel",
 	"Brave Search API Key": "Brave Search API-Schlüssel",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "Zertifikatpfad",
 	"Certificate Path": "Zertifikatpfad",
 	"Change Password": "Passwort ändern",
 	"Change Password": "Passwort ändern",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "Zeichen",
 	"Character": "Zeichen",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "Neue Wege beschreiten",
 	"Chart new frontiers": "Neue Wege beschreiten",
@@ -204,6 +208,7 @@
 	"Create a model": "Modell erstellen",
 	"Create a model": "Modell erstellen",
 	"Create Account": "Konto erstellen",
 	"Create Account": "Konto erstellen",
 	"Create Admin Account": "Administrator-Account erstellen",
 	"Create Admin Account": "Administrator-Account erstellen",
+	"Create Channel": "",
 	"Create Group": "Gruppe erstellen",
 	"Create Group": "Gruppe erstellen",
 	"Create Knowledge": "Wissen erstellen",
 	"Create Knowledge": "Wissen erstellen",
 	"Create new key": "Neuen Schlüssel erstellen",
 	"Create new key": "Neuen Schlüssel erstellen",
@@ -239,6 +244,7 @@
 	"Delete chat?": "Unterhaltung löschen?",
 	"Delete chat?": "Unterhaltung löschen?",
 	"Delete folder?": "Ordner löschen?",
 	"Delete folder?": "Ordner löschen?",
 	"Delete function?": "Funktion löschen?",
 	"Delete function?": "Funktion löschen?",
+	"Delete Message": "",
 	"Delete prompt?": "Prompt löschen?",
 	"Delete prompt?": "Prompt löschen?",
 	"delete this link": "diesen Link löschen",
 	"delete this link": "diesen Link löschen",
 	"Delete tool?": "Werkzeug löschen?",
 	"Delete tool?": "Werkzeug löschen?",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "z. B. Werkzeuge für verschiedene Operationen",
 	"e.g. Tools for performing various operations": "z. B. Werkzeuge für verschiedene Operationen",
 	"Edit": "Bearbeiten",
 	"Edit": "Bearbeiten",
 	"Edit Arena Model": "Arena-Modell bearbeiten",
 	"Edit Arena Model": "Arena-Modell bearbeiten",
+	"Edit Channel": "",
 	"Edit Connection": "Verbindung bearbeiten",
 	"Edit Connection": "Verbindung bearbeiten",
 	"Edit Default Permissions": "Standardberechtigungen bearbeiten",
 	"Edit Default Permissions": "Standardberechtigungen bearbeiten",
 	"Edit Memory": "Erinnerungen bearbeiten",
 	"Edit Memory": "Erinnerungen bearbeiten",
@@ -595,8 +602,8 @@
 	"Name": "Name",
 	"Name": "Name",
 	"Name your knowledge base": "Benennen Sie Ihren Wissensspeicher",
 	"Name your knowledge base": "Benennen Sie Ihren Wissensspeicher",
 	"New Chat": "Neue Unterhaltung",
 	"New Chat": "Neue Unterhaltung",
-	"New folder": "Neuer Ordner",
 	"New Password": "Neues Passwort",
 	"New Password": "Neues Passwort",
+	"new-channel": "",
 	"No content found": "Kein Inhalt gefunden",
 	"No content found": "Kein Inhalt gefunden",
 	"No content to speak": "Kein Inhalt zum Vorlesen",
 	"No content to speak": "Kein Inhalt zum Vorlesen",
 	"No distance available": "Keine Distanz verfügbar",
 	"No distance available": "Keine Distanz verfügbar",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Advanced Parameters": "Advanced Parameters",
 	"Advanced Parameters": "Advanced Parameters",
 	"Advanced Params": "",
 	"Advanced Params": "",
-	"All chats": "",
 	"All Documents": "",
 	"All Documents": "",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "",
 	"Archive All Chats": "",
 	"Archived Chats": "",
 	"Archived Chats": "",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "Such certainty?",
 	"Are you sure?": "Such certainty?",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "",
 	"Batch Size (num_batch)": "",
 	"before": "",
 	"before": "",
 	"Being lazy": "",
 	"Being lazy": "",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "",
 	"Brave Search API Key": "",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "Change Password",
 	"Change Password": "Change Password",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "",
 	"Create a model": "",
 	"Create Account": "Create Account",
 	"Create Account": "Create Account",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create Knowledge": "",
 	"Create new key": "",
 	"Create new key": "",
@@ -239,6 +244,7 @@
 	"Delete chat?": "",
 	"Delete chat?": "",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
+	"Delete Message": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "",
 	"delete this link": "",
 	"Delete tool?": "",
 	"Delete tool?": "",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "",
 	"Edit": "",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -595,8 +602,8 @@
 	"Name": "Name",
 	"Name": "Name",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "New Bark",
 	"New Chat": "New Bark",
-	"New folder": "",
 	"New Password": "New Barkword",
 	"New Password": "New Barkword",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "",
 	"No content to speak": "",
 	"No distance available": "",
 	"No distance available": "",

+ 9 - 2
src/lib/i18n/locales/el-GR/translation.json

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Οι διαχειριστές έχουν πρόσβαση σε όλα τα εργαλεία ανά πάσα στιγμή· οι χρήστες χρειάζονται εργαλεία ανά μοντέλο στον χώρο εργασίας.",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Οι διαχειριστές έχουν πρόσβαση σε όλα τα εργαλεία ανά πάσα στιγμή· οι χρήστες χρειάζονται εργαλεία ανά μοντέλο στον χώρο εργασίας.",
 	"Advanced Parameters": "Προηγμένοι Παράμετροι",
 	"Advanced Parameters": "Προηγμένοι Παράμετροι",
 	"Advanced Params": "Προηγμένα Παράμετροι",
 	"Advanced Params": "Προηγμένα Παράμετροι",
-	"All chats": "Όλες οι συνομιλίες",
 	"All Documents": "Όλα τα Έγγραφα",
 	"All Documents": "Όλα τα Έγγραφα",
 	"All models deleted successfully": "Όλα τα μοντέλα διαγράφηκαν με επιτυχία",
 	"All models deleted successfully": "Όλα τα μοντέλα διαγράφηκαν με επιτυχία",
 	"Allow Chat Delete": "Επιτρέπεται η διαγραφή συνομιλίας",
 	"Allow Chat Delete": "Επιτρέπεται η διαγραφή συνομιλίας",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Αρχειοθέτηση Όλων των Συνομιλιών",
 	"Archive All Chats": "Αρχειοθέτηση Όλων των Συνομιλιών",
 	"Archived Chats": "Αρχειοθετημένες Συνομιλίες",
 	"Archived Chats": "Αρχειοθετημένες Συνομιλίες",
 	"archived-chat-export": "εξαγωγή-αρχείου-συνομιλίας",
 	"archived-chat-export": "εξαγωγή-αρχείου-συνομιλίας",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "Είστε σίγουροι ότι θέλετε να απο-αρχειοθετήσετε όλες τις αρχειοθετημένες συνομιλίες;",
 	"Are you sure you want to unarchive all archived chats?": "Είστε σίγουροι ότι θέλετε να απο-αρχειοθετήσετε όλες τις αρχειοθετημένες συνομιλίες;",
 	"Are you sure?": "Είστε σίγουροι;",
 	"Are you sure?": "Είστε σίγουροι;",
 	"Arena Models": "Μοντέλα Arena",
 	"Arena Models": "Μοντέλα Arena",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "Μέγεθος Παρτίδας (num_batch)",
 	"Batch Size (num_batch)": "Μέγεθος Παρτίδας (num_batch)",
 	"before": "πριν",
 	"before": "πριν",
 	"Being lazy": "Τρώλακας",
 	"Being lazy": "Τρώλακας",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "Τέλος Bing Search V7",
 	"Bing Search V7 Endpoint": "Τέλος Bing Search V7",
 	"Bing Search V7 Subscription Key": "Κλειδί Συνδρομής Bing Search V7",
 	"Bing Search V7 Subscription Key": "Κλειδί Συνδρομής Bing Search V7",
 	"Brave Search API Key": "Κλειδί API Brave Search",
 	"Brave Search API Key": "Κλειδί API Brave Search",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "Διαδρομή Πιστοποιητικού",
 	"Certificate Path": "Διαδρομή Πιστοποιητικού",
 	"Change Password": "Αλλαγή Κωδικού",
 	"Change Password": "Αλλαγή Κωδικού",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "Χαρακτήρας",
 	"Character": "Χαρακτήρας",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "Σχεδιάστε νέους ορίζοντες",
 	"Chart new frontiers": "Σχεδιάστε νέους ορίζοντες",
@@ -204,6 +208,7 @@
 	"Create a model": "Δημιουργία μοντέλου",
 	"Create a model": "Δημιουργία μοντέλου",
 	"Create Account": "Δημιουργία Λογαριασμού",
 	"Create Account": "Δημιουργία Λογαριασμού",
 	"Create Admin Account": "Δημιουργία Λογαριασμού Διαχειριστή",
 	"Create Admin Account": "Δημιουργία Λογαριασμού Διαχειριστή",
+	"Create Channel": "",
 	"Create Group": "Δημιουργία Ομάδας",
 	"Create Group": "Δημιουργία Ομάδας",
 	"Create Knowledge": "Δημιουργία Γνώσης",
 	"Create Knowledge": "Δημιουργία Γνώσης",
 	"Create new key": "Δημιουργία νέου κλειδιού",
 	"Create new key": "Δημιουργία νέου κλειδιού",
@@ -239,6 +244,7 @@
 	"Delete chat?": "Διαγραφή συνομιλίας;",
 	"Delete chat?": "Διαγραφή συνομιλίας;",
 	"Delete folder?": "Διαγραφή φακέλου;",
 	"Delete folder?": "Διαγραφή φακέλου;",
 	"Delete function?": "Διαγραφή λειτουργίας;",
 	"Delete function?": "Διαγραφή λειτουργίας;",
+	"Delete Message": "",
 	"Delete prompt?": "Διαγραφή προτροπής;",
 	"Delete prompt?": "Διαγραφή προτροπής;",
 	"delete this link": "διαγραφή αυτού του συνδέσμου",
 	"delete this link": "διαγραφή αυτού του συνδέσμου",
 	"Delete tool?": "Διαγραφή εργαλείου;",
 	"Delete tool?": "Διαγραφή εργαλείου;",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "π.χ. Εργαλεία για την εκτέλεση διάφορων λειτουργιών",
 	"e.g. Tools for performing various operations": "π.χ. Εργαλεία για την εκτέλεση διάφορων λειτουργιών",
 	"Edit": "Επεξεργασία",
 	"Edit": "Επεξεργασία",
 	"Edit Arena Model": "Επεξεργασία Μοντέλου Arena",
 	"Edit Arena Model": "Επεξεργασία Μοντέλου Arena",
+	"Edit Channel": "",
 	"Edit Connection": "Επεξεργασία Σύνδεσης",
 	"Edit Connection": "Επεξεργασία Σύνδεσης",
 	"Edit Default Permissions": "Επεξεργασία Προεπιλεγμένων Δικαιωμάτων",
 	"Edit Default Permissions": "Επεξεργασία Προεπιλεγμένων Δικαιωμάτων",
 	"Edit Memory": "Επεξεργασία Μνήμης",
 	"Edit Memory": "Επεξεργασία Μνήμης",
@@ -595,8 +602,8 @@
 	"Name": "Όνομα",
 	"Name": "Όνομα",
 	"Name your knowledge base": "Ονομάστε τη βάση γνώσης σας",
 	"Name your knowledge base": "Ονομάστε τη βάση γνώσης σας",
 	"New Chat": "Νέα Συνομιλία",
 	"New Chat": "Νέα Συνομιλία",
-	"New folder": "Νέος φάκελος",
 	"New Password": "Νέος Κωδικός",
 	"New Password": "Νέος Κωδικός",
+	"new-channel": "",
 	"No content found": "Δεν βρέθηκε περιεχόμενο",
 	"No content found": "Δεν βρέθηκε περιεχόμενο",
 	"No content to speak": "Δεν υπάρχει περιεχόμενο για ανάγνωση",
 	"No content to speak": "Δεν υπάρχει περιεχόμενο για ανάγνωση",
 	"No distance available": "Δεν υπάρχει διαθέσιμη απόσταση",
 	"No distance available": "Δεν υπάρχει διαθέσιμη απόσταση",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Advanced Parameters": "",
 	"Advanced Parameters": "",
 	"Advanced Params": "",
 	"Advanced Params": "",
-	"All chats": "",
 	"All Documents": "",
 	"All Documents": "",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "",
 	"Archive All Chats": "",
 	"Archived Chats": "",
 	"Archived Chats": "",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "",
 	"Are you sure?": "",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "",
 	"Batch Size (num_batch)": "",
 	"before": "",
 	"before": "",
 	"Being lazy": "",
 	"Being lazy": "",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "",
 	"Brave Search API Key": "",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "",
 	"Change Password": "",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "",
 	"Create a model": "",
 	"Create Account": "",
 	"Create Account": "",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create Knowledge": "",
 	"Create new key": "",
 	"Create new key": "",
@@ -239,6 +244,7 @@
 	"Delete chat?": "",
 	"Delete chat?": "",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
+	"Delete Message": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "",
 	"delete this link": "",
 	"Delete tool?": "",
 	"Delete tool?": "",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "",
 	"Edit": "",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -595,8 +602,8 @@
 	"Name": "",
 	"Name": "",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "",
 	"New Chat": "",
-	"New folder": "",
 	"New Password": "",
 	"New Password": "",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "",
 	"No content to speak": "",
 	"No distance available": "",
 	"No distance available": "",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Advanced Parameters": "",
 	"Advanced Parameters": "",
 	"Advanced Params": "",
 	"Advanced Params": "",
-	"All chats": "",
 	"All Documents": "",
 	"All Documents": "",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "",
 	"Archive All Chats": "",
 	"Archived Chats": "",
 	"Archived Chats": "",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "",
 	"Are you sure?": "",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "",
 	"Batch Size (num_batch)": "",
 	"before": "",
 	"before": "",
 	"Being lazy": "",
 	"Being lazy": "",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "",
 	"Brave Search API Key": "",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "",
 	"Change Password": "",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "",
 	"Create a model": "",
 	"Create Account": "",
 	"Create Account": "",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create Knowledge": "",
 	"Create new key": "",
 	"Create new key": "",
@@ -239,6 +244,7 @@
 	"Delete chat?": "",
 	"Delete chat?": "",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
+	"Delete Message": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "",
 	"delete this link": "",
 	"Delete tool?": "",
 	"Delete tool?": "",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "",
 	"Edit": "",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -595,8 +602,8 @@
 	"Name": "",
 	"Name": "",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "",
 	"New Chat": "",
-	"New folder": "",
 	"New Password": "",
 	"New Password": "",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "",
 	"No content to speak": "",
 	"No distance available": "",
 	"No distance available": "",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Admins tienen acceso a todas las herramientas en todo momento; los usuarios necesitan herramientas asignadas por modelo en el espacio de trabajo.",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Admins tienen acceso a todas las herramientas en todo momento; los usuarios necesitan herramientas asignadas por modelo en el espacio de trabajo.",
 	"Advanced Parameters": "Parámetros Avanzados",
 	"Advanced Parameters": "Parámetros Avanzados",
 	"Advanced Params": "Parámetros avanzados",
 	"Advanced Params": "Parámetros avanzados",
-	"All chats": "",
 	"All Documents": "Todos los Documentos",
 	"All Documents": "Todos los Documentos",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Archivar todos los chats",
 	"Archive All Chats": "Archivar todos los chats",
 	"Archived Chats": "Chats archivados",
 	"Archived Chats": "Chats archivados",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "¿Está seguro?",
 	"Are you sure?": "¿Está seguro?",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "Tamaño del Batch (num_batch)",
 	"Batch Size (num_batch)": "Tamaño del Batch (num_batch)",
 	"before": "antes",
 	"before": "antes",
 	"Being lazy": "Ser perezoso",
 	"Being lazy": "Ser perezoso",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "Clave de API de Brave Search",
 	"Brave Search API Key": "Clave de API de Brave Search",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "Cambia la Contraseña",
 	"Change Password": "Cambia la Contraseña",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "Crear un modelo",
 	"Create a model": "Crear un modelo",
 	"Create Account": "Crear una cuenta",
 	"Create Account": "Crear una cuenta",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "Crear Conocimiento",
 	"Create Knowledge": "Crear Conocimiento",
 	"Create new key": "Crear una nueva clave",
 	"Create new key": "Crear una nueva clave",
@@ -239,6 +244,7 @@
 	"Delete chat?": "Borrar el chat?",
 	"Delete chat?": "Borrar el chat?",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "Borrar la función?",
 	"Delete function?": "Borrar la función?",
+	"Delete Message": "",
 	"Delete prompt?": "Borrar el prompt?",
 	"Delete prompt?": "Borrar el prompt?",
 	"delete this link": "Borrar este enlace",
 	"delete this link": "Borrar este enlace",
 	"Delete tool?": "Borrar la herramienta",
 	"Delete tool?": "Borrar la herramienta",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "Editar",
 	"Edit": "Editar",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "Editar Memoria",
 	"Edit Memory": "Editar Memoria",
@@ -595,8 +602,8 @@
 	"Name": "Nombre",
 	"Name": "Nombre",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "Nuevo Chat",
 	"New Chat": "Nuevo Chat",
-	"New folder": "",
 	"New Password": "Nueva Contraseña",
 	"New Password": "Nueva Contraseña",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "No hay contenido para hablar",
 	"No content to speak": "No hay contenido para hablar",
 	"No distance available": "",
 	"No distance available": "",

+ 9 - 2
src/lib/i18n/locales/eu-ES/translation.json

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratzaileek tresna guztietarako sarbidea dute beti; erabiltzaileek lan-eremuan eredu bakoitzeko esleituak behar dituzte tresnak.",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratzaileek tresna guztietarako sarbidea dute beti; erabiltzaileek lan-eremuan eredu bakoitzeko esleituak behar dituzte tresnak.",
 	"Advanced Parameters": "Parametro Aurreratuak",
 	"Advanced Parameters": "Parametro Aurreratuak",
 	"Advanced Params": "Parametro Aurreratuak",
 	"Advanced Params": "Parametro Aurreratuak",
-	"All chats": "Txat guztiak",
 	"All Documents": "Dokumentu Guztiak",
 	"All Documents": "Dokumentu Guztiak",
 	"All models deleted successfully": "Eredu guztiak ongi ezabatu dira",
 	"All models deleted successfully": "Eredu guztiak ongi ezabatu dira",
 	"Allow Chat Delete": "Baimendu Txata Ezabatzea",
 	"Allow Chat Delete": "Baimendu Txata Ezabatzea",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Artxibatu Txat Guztiak",
 	"Archive All Chats": "Artxibatu Txat Guztiak",
 	"Archived Chats": "Artxibatutako Txatak",
 	"Archived Chats": "Artxibatutako Txatak",
 	"archived-chat-export": "artxibatutako-txat-esportazioa",
 	"archived-chat-export": "artxibatutako-txat-esportazioa",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "Ziur zaude artxibatutako txat guztiak desartxibatu nahi dituzula?",
 	"Are you sure you want to unarchive all archived chats?": "Ziur zaude artxibatutako txat guztiak desartxibatu nahi dituzula?",
 	"Are you sure?": "Ziur zaude?",
 	"Are you sure?": "Ziur zaude?",
 	"Arena Models": "Arena Ereduak",
 	"Arena Models": "Arena Ereduak",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "Batch Tamaina (num_batch)",
 	"Batch Size (num_batch)": "Batch Tamaina (num_batch)",
 	"before": "aurretik",
 	"before": "aurretik",
 	"Being lazy": "Alferra izatea",
 	"Being lazy": "Alferra izatea",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "Bing Bilaketa V7 Endpointua",
 	"Bing Search V7 Endpoint": "Bing Bilaketa V7 Endpointua",
 	"Bing Search V7 Subscription Key": "Bing Bilaketa V7 Harpidetza Gakoa",
 	"Bing Search V7 Subscription Key": "Bing Bilaketa V7 Harpidetza Gakoa",
 	"Brave Search API Key": "Brave Bilaketa API Gakoa",
 	"Brave Search API Key": "Brave Bilaketa API Gakoa",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "Ziurtagiriaren Bidea",
 	"Certificate Path": "Ziurtagiriaren Bidea",
 	"Change Password": "Aldatu Pasahitza",
 	"Change Password": "Aldatu Pasahitza",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "Karakterea",
 	"Character": "Karakterea",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "Esploratu muga berriak",
 	"Chart new frontiers": "Esploratu muga berriak",
@@ -204,6 +208,7 @@
 	"Create a model": "Sortu eredu bat",
 	"Create a model": "Sortu eredu bat",
 	"Create Account": "Sortu Kontua",
 	"Create Account": "Sortu Kontua",
 	"Create Admin Account": "Sortu Administratzaile Kontua",
 	"Create Admin Account": "Sortu Administratzaile Kontua",
+	"Create Channel": "",
 	"Create Group": "Sortu Taldea",
 	"Create Group": "Sortu Taldea",
 	"Create Knowledge": "Sortu Ezagutza",
 	"Create Knowledge": "Sortu Ezagutza",
 	"Create new key": "Sortu gako berria",
 	"Create new key": "Sortu gako berria",
@@ -239,6 +244,7 @@
 	"Delete chat?": "Ezabatu txata?",
 	"Delete chat?": "Ezabatu txata?",
 	"Delete folder?": "Ezabatu karpeta?",
 	"Delete folder?": "Ezabatu karpeta?",
 	"Delete function?": "Ezabatu funtzioa?",
 	"Delete function?": "Ezabatu funtzioa?",
+	"Delete Message": "",
 	"Delete prompt?": "Ezabatu prompta?",
 	"Delete prompt?": "Ezabatu prompta?",
 	"delete this link": "ezabatu esteka hau",
 	"delete this link": "ezabatu esteka hau",
 	"Delete tool?": "Ezabatu tresna?",
 	"Delete tool?": "Ezabatu tresna?",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "adib. Hainbat eragiketa egiteko tresnak",
 	"e.g. Tools for performing various operations": "adib. Hainbat eragiketa egiteko tresnak",
 	"Edit": "Editatu",
 	"Edit": "Editatu",
 	"Edit Arena Model": "Editatu Arena Eredua",
 	"Edit Arena Model": "Editatu Arena Eredua",
+	"Edit Channel": "",
 	"Edit Connection": "Editatu Konexioa",
 	"Edit Connection": "Editatu Konexioa",
 	"Edit Default Permissions": "Editatu Baimen Lehenetsiak",
 	"Edit Default Permissions": "Editatu Baimen Lehenetsiak",
 	"Edit Memory": "Editatu Memoria",
 	"Edit Memory": "Editatu Memoria",
@@ -595,8 +602,8 @@
 	"Name": "Izena",
 	"Name": "Izena",
 	"Name your knowledge base": "Izendatu zure ezagutza-basea",
 	"Name your knowledge base": "Izendatu zure ezagutza-basea",
 	"New Chat": "Txat berria",
 	"New Chat": "Txat berria",
-	"New folder": "Karpeta berria",
 	"New Password": "Pasahitz berria",
 	"New Password": "Pasahitz berria",
+	"new-channel": "",
 	"No content found": "Ez da edukirik aurkitu",
 	"No content found": "Ez da edukirik aurkitu",
 	"No content to speak": "Ez dago hitz egiteko edukirik",
 	"No content to speak": "Ez dago hitz egiteko edukirik",
 	"No distance available": "Ez dago distantziarik eskuragarri",
 	"No distance available": "Ez dago distantziarik eskuragarri",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Advanced Parameters": "پارامترهای پیشرفته",
 	"Advanced Parameters": "پارامترهای پیشرفته",
 	"Advanced Params": "پارام\u200cهای پیشرفته",
 	"Advanced Params": "پارام\u200cهای پیشرفته",
-	"All chats": "همهٔ گفتگوها",
 	"All Documents": "همهٔ سند\u200cها",
 	"All Documents": "همهٔ سند\u200cها",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "بایگانی همه گفتگوها",
 	"Archive All Chats": "بایگانی همه گفتگوها",
 	"Archived Chats": "گفتگوهای بایگانی\u200cشده",
 	"Archived Chats": "گفتگوهای بایگانی\u200cشده",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "مطمئنید؟",
 	"Are you sure?": "مطمئنید؟",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "",
 	"Batch Size (num_batch)": "",
 	"before": "قبل",
 	"before": "قبل",
 	"Being lazy": "حالت سازنده",
 	"Being lazy": "حالت سازنده",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "کلید API جستجوی شجاع",
 	"Brave Search API Key": "کلید API جستجوی شجاع",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "تغییر رمز عبور",
 	"Change Password": "تغییر رمز عبور",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "ایجاد یک مدل",
 	"Create a model": "ایجاد یک مدل",
 	"Create Account": "ساخت حساب کاربری",
 	"Create Account": "ساخت حساب کاربری",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create Knowledge": "",
 	"Create new key": "ساخت کلید جدید",
 	"Create new key": "ساخت کلید جدید",
@@ -239,6 +244,7 @@
 	"Delete chat?": "",
 	"Delete chat?": "",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
+	"Delete Message": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "حذف این لینک",
 	"delete this link": "حذف این لینک",
 	"Delete tool?": "",
 	"Delete tool?": "",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "ویرایش",
 	"Edit": "ویرایش",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -595,8 +602,8 @@
 	"Name": "نام",
 	"Name": "نام",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "گپ جدید",
 	"New Chat": "گپ جدید",
-	"New folder": "",
 	"New Password": "رمز عبور جدید",
 	"New Password": "رمز عبور جدید",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "",
 	"No content to speak": "",
 	"No distance available": "",
 	"No distance available": "",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Ylläpitäjillä on pääsy kaikkiin työkaluihin koko ajan; käyttäjät tarvitsevat työkaluja mallille määritettynä työtilassa.",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Ylläpitäjillä on pääsy kaikkiin työkaluihin koko ajan; käyttäjät tarvitsevat työkaluja mallille määritettynä työtilassa.",
 	"Advanced Parameters": "Edistyneet parametrit",
 	"Advanced Parameters": "Edistyneet parametrit",
 	"Advanced Params": "Edistyneet parametrit",
 	"Advanced Params": "Edistyneet parametrit",
-	"All chats": "Kaikki keskustelut",
 	"All Documents": "Kaikki asiakirjat",
 	"All Documents": "Kaikki asiakirjat",
 	"All models deleted successfully": "Kaikki mallit poistettu onnistuneesti",
 	"All models deleted successfully": "Kaikki mallit poistettu onnistuneesti",
 	"Allow Chat Delete": "Salli keskustelujen poisto",
 	"Allow Chat Delete": "Salli keskustelujen poisto",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Arkistoi kaikki keskustelut",
 	"Archive All Chats": "Arkistoi kaikki keskustelut",
 	"Archived Chats": "Arkistoidut keskustelut",
 	"Archived Chats": "Arkistoidut keskustelut",
 	"archived-chat-export": "arkistoitu-keskustelu-vienti",
 	"archived-chat-export": "arkistoitu-keskustelu-vienti",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "Haluatko varmasti purkaa kaikkien arkistoitujen keskustelujen arkistoinnin?",
 	"Are you sure you want to unarchive all archived chats?": "Haluatko varmasti purkaa kaikkien arkistoitujen keskustelujen arkistoinnin?",
 	"Are you sure?": "Oletko varma?",
 	"Are you sure?": "Oletko varma?",
 	"Arena Models": "Arena-mallit",
 	"Arena Models": "Arena-mallit",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "Erän koko (num_batch)",
 	"Batch Size (num_batch)": "Erän koko (num_batch)",
 	"before": "ennen",
 	"before": "ennen",
 	"Being lazy": "Oli laiska",
 	"Being lazy": "Oli laiska",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "Bing Search V7 -päätepisteen osoite",
 	"Bing Search V7 Endpoint": "Bing Search V7 -päätepisteen osoite",
 	"Bing Search V7 Subscription Key": "Bing Search V7 -tilauskäyttäjäavain",
 	"Bing Search V7 Subscription Key": "Bing Search V7 -tilauskäyttäjäavain",
 	"Brave Search API Key": "Brave Search API -avain",
 	"Brave Search API Key": "Brave Search API -avain",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "Varmennepolku",
 	"Certificate Path": "Varmennepolku",
 	"Change Password": "Vaihda salasana",
 	"Change Password": "Vaihda salasana",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "Hahmo",
 	"Character": "Hahmo",
 	"Character limit for autocomplete generation input": "Automaattisen täydennyksen syötteen merkkiraja",
 	"Character limit for autocomplete generation input": "Automaattisen täydennyksen syötteen merkkiraja",
 	"Chart new frontiers": "Kartoita uusia rajapintoja",
 	"Chart new frontiers": "Kartoita uusia rajapintoja",
@@ -204,6 +208,7 @@
 	"Create a model": "Luo malli",
 	"Create a model": "Luo malli",
 	"Create Account": "Luo tili",
 	"Create Account": "Luo tili",
 	"Create Admin Account": "Luo ylläpitäjätili",
 	"Create Admin Account": "Luo ylläpitäjätili",
+	"Create Channel": "",
 	"Create Group": "Luo ryhmä",
 	"Create Group": "Luo ryhmä",
 	"Create Knowledge": "Luo tietoa",
 	"Create Knowledge": "Luo tietoa",
 	"Create new key": "Luo uusi avain",
 	"Create new key": "Luo uusi avain",
@@ -239,6 +244,7 @@
 	"Delete chat?": "Haluatko varmasti poistaa tämän keskustelun?",
 	"Delete chat?": "Haluatko varmasti poistaa tämän keskustelun?",
 	"Delete folder?": "Haluatko varmasti poistaa tämän kansion?",
 	"Delete folder?": "Haluatko varmasti poistaa tämän kansion?",
 	"Delete function?": "Haluatko varmasti poistaa tämän toiminnon?",
 	"Delete function?": "Haluatko varmasti poistaa tämän toiminnon?",
+	"Delete Message": "",
 	"Delete prompt?": "Haluatko varmasti poistaa tämän kehotteen?",
 	"Delete prompt?": "Haluatko varmasti poistaa tämän kehotteen?",
 	"delete this link": "poista tämä linkki",
 	"delete this link": "poista tämä linkki",
 	"Delete tool?": "Haluatko varmasti poistaa tämän työkalun?",
 	"Delete tool?": "Haluatko varmasti poistaa tämän työkalun?",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "esim. työkaluja erilaisten toimenpiteiden suorittamiseen",
 	"e.g. Tools for performing various operations": "esim. työkaluja erilaisten toimenpiteiden suorittamiseen",
 	"Edit": "Muokkaa",
 	"Edit": "Muokkaa",
 	"Edit Arena Model": "Muokkaa Arena-mallia",
 	"Edit Arena Model": "Muokkaa Arena-mallia",
+	"Edit Channel": "",
 	"Edit Connection": "Muokkaa yhteyttä",
 	"Edit Connection": "Muokkaa yhteyttä",
 	"Edit Default Permissions": "Muokkaa oletuskäyttöoikeuksia",
 	"Edit Default Permissions": "Muokkaa oletuskäyttöoikeuksia",
 	"Edit Memory": "Muokkaa muistia",
 	"Edit Memory": "Muokkaa muistia",
@@ -595,8 +602,8 @@
 	"Name": "Nimi",
 	"Name": "Nimi",
 	"Name your knowledge base": "Anna tietokannalle nimi",
 	"Name your knowledge base": "Anna tietokannalle nimi",
 	"New Chat": "Uusi keskustelu",
 	"New Chat": "Uusi keskustelu",
-	"New folder": "Uusi kansio",
 	"New Password": "Uusi salasana",
 	"New Password": "Uusi salasana",
+	"new-channel": "",
 	"No content found": "Sisältöä ei löytynyt",
 	"No content found": "Sisältöä ei löytynyt",
 	"No content to speak": "Ei puhuttavaa sisältöä",
 	"No content to speak": "Ei puhuttavaa sisältöä",
 	"No distance available": "Etäisyyttä ei saatavilla",
 	"No distance available": "Etäisyyttä ei saatavilla",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Les administrateurs ont accès à tous les outils en tout temps ; les utilisateurs ont besoin d'outils affectés par modèle dans l'espace de travail.",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Les administrateurs ont accès à tous les outils en tout temps ; les utilisateurs ont besoin d'outils affectés par modèle dans l'espace de travail.",
 	"Advanced Parameters": "Paramètres avancés",
 	"Advanced Parameters": "Paramètres avancés",
 	"Advanced Params": "Paramètres avancés",
 	"Advanced Params": "Paramètres avancés",
-	"All chats": "",
 	"All Documents": "Tous les documents",
 	"All Documents": "Tous les documents",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Archiver toutes les conversations",
 	"Archive All Chats": "Archiver toutes les conversations",
 	"Archived Chats": "Conversations archivées",
 	"Archived Chats": "Conversations archivées",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "Êtes-vous certain ?",
 	"Are you sure?": "Êtes-vous certain ?",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "Taille du lot (num_batch)",
 	"Batch Size (num_batch)": "Taille du lot (num_batch)",
 	"before": "avant",
 	"before": "avant",
 	"Being lazy": "Être fainéant",
 	"Being lazy": "Être fainéant",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "Clé API Brave Search",
 	"Brave Search API Key": "Clé API Brave Search",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "Changer le mot de passe",
 	"Change Password": "Changer le mot de passe",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "Créer un modèle",
 	"Create a model": "Créer un modèle",
 	"Create Account": "Créer un compte",
 	"Create Account": "Créer un compte",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create Knowledge": "",
 	"Create new key": "Créer une nouvelle clé principale",
 	"Create new key": "Créer une nouvelle clé principale",
@@ -239,6 +244,7 @@
 	"Delete chat?": "Supprimer la conversation ?",
 	"Delete chat?": "Supprimer la conversation ?",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "Supprimer la fonction ?",
 	"Delete function?": "Supprimer la fonction ?",
+	"Delete Message": "",
 	"Delete prompt?": "Supprimer la prompt ?",
 	"Delete prompt?": "Supprimer la prompt ?",
 	"delete this link": "supprimer ce lien",
 	"delete this link": "supprimer ce lien",
 	"Delete tool?": "Effacer l'outil ?",
 	"Delete tool?": "Effacer l'outil ?",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "Modifier",
 	"Edit": "Modifier",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "Modifier la mémoire",
 	"Edit Memory": "Modifier la mémoire",
@@ -595,8 +602,8 @@
 	"Name": "Nom",
 	"Name": "Nom",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "Nouvelle conversation",
 	"New Chat": "Nouvelle conversation",
-	"New folder": "",
 	"New Password": "Nouveau mot de passe",
 	"New Password": "Nouveau mot de passe",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "Rien à signaler",
 	"No content to speak": "Rien à signaler",
 	"No distance available": "",
 	"No distance available": "",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Les administrateurs ont accès à tous les outils en permanence ; les utilisateurs doivent se voir attribuer des outils pour chaque modèle dans l’espace de travail.",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Les administrateurs ont accès à tous les outils en permanence ; les utilisateurs doivent se voir attribuer des outils pour chaque modèle dans l’espace de travail.",
 	"Advanced Parameters": "Paramètres avancés",
 	"Advanced Parameters": "Paramètres avancés",
 	"Advanced Params": "Paramètres avancés",
 	"Advanced Params": "Paramètres avancés",
-	"All chats": "Toutes les conversations",
 	"All Documents": "Tous les documents",
 	"All Documents": "Tous les documents",
 	"All models deleted successfully": "Tous les modèles ont été supprimés avec succès",
 	"All models deleted successfully": "Tous les modèles ont été supprimés avec succès",
 	"Allow Chat Delete": "Autoriser la suppression de la conversation",
 	"Allow Chat Delete": "Autoriser la suppression de la conversation",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Archiver toutes les conversations",
 	"Archive All Chats": "Archiver toutes les conversations",
 	"Archived Chats": "Conversations archivées",
 	"Archived Chats": "Conversations archivées",
 	"archived-chat-export": "exportation de conversation archivée",
 	"archived-chat-export": "exportation de conversation archivée",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "Êtes-vous sûr de vouloir désarchiver toutes les conversations archivées?",
 	"Are you sure you want to unarchive all archived chats?": "Êtes-vous sûr de vouloir désarchiver toutes les conversations archivées?",
 	"Are you sure?": "Êtes-vous certain ?",
 	"Are you sure?": "Êtes-vous certain ?",
 	"Arena Models": "Modèles d'arène",
 	"Arena Models": "Modèles d'arène",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "Batch Size (num_batch)",
 	"Batch Size (num_batch)": "Batch Size (num_batch)",
 	"before": "avant",
 	"before": "avant",
 	"Being lazy": "Être fainéant",
 	"Being lazy": "Être fainéant",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "Point de terminaison Bing Search V7",
 	"Bing Search V7 Endpoint": "Point de terminaison Bing Search V7",
 	"Bing Search V7 Subscription Key": "Clé d'abonnement Bing Search V7",
 	"Bing Search V7 Subscription Key": "Clé d'abonnement Bing Search V7",
 	"Brave Search API Key": "Clé API Brave Search",
 	"Brave Search API Key": "Clé API Brave Search",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "Chemin du certificat",
 	"Certificate Path": "Chemin du certificat",
 	"Change Password": "Changer le mot de passe",
 	"Change Password": "Changer le mot de passe",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "Caractère",
 	"Character": "Caractère",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "Tracer de nouvelles frontières",
 	"Chart new frontiers": "Tracer de nouvelles frontières",
@@ -204,6 +208,7 @@
 	"Create a model": "Créer un modèle",
 	"Create a model": "Créer un modèle",
 	"Create Account": "Créer un compte",
 	"Create Account": "Créer un compte",
 	"Create Admin Account": "Créer un compte administrateur",
 	"Create Admin Account": "Créer un compte administrateur",
+	"Create Channel": "",
 	"Create Group": "Créer un groupe",
 	"Create Group": "Créer un groupe",
 	"Create Knowledge": "Créer une connaissance",
 	"Create Knowledge": "Créer une connaissance",
 	"Create new key": "Créer une nouvelle clé",
 	"Create new key": "Créer une nouvelle clé",
@@ -239,6 +244,7 @@
 	"Delete chat?": "Supprimer la conversation ?",
 	"Delete chat?": "Supprimer la conversation ?",
 	"Delete folder?": "Supprimer le dossier ?",
 	"Delete folder?": "Supprimer le dossier ?",
 	"Delete function?": "Supprimer la fonction ?",
 	"Delete function?": "Supprimer la fonction ?",
+	"Delete Message": "",
 	"Delete prompt?": "Supprimer le prompt ?",
 	"Delete prompt?": "Supprimer le prompt ?",
 	"delete this link": "supprimer ce lien",
 	"delete this link": "supprimer ce lien",
 	"Delete tool?": "Effacer l'outil ?",
 	"Delete tool?": "Effacer l'outil ?",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "par ex. Outils pour effectuer diverses opérations",
 	"e.g. Tools for performing various operations": "par ex. Outils pour effectuer diverses opérations",
 	"Edit": "Modifier",
 	"Edit": "Modifier",
 	"Edit Arena Model": "Modifier le modèle d'arène",
 	"Edit Arena Model": "Modifier le modèle d'arène",
+	"Edit Channel": "",
 	"Edit Connection": "Modifier la connexion",
 	"Edit Connection": "Modifier la connexion",
 	"Edit Default Permissions": "Modifier les autorisations par défaut",
 	"Edit Default Permissions": "Modifier les autorisations par défaut",
 	"Edit Memory": "Modifier la mémoire",
 	"Edit Memory": "Modifier la mémoire",
@@ -595,8 +602,8 @@
 	"Name": "Nom d'utilisateur",
 	"Name": "Nom d'utilisateur",
 	"Name your knowledge base": "Nommez votre base de connaissances",
 	"Name your knowledge base": "Nommez votre base de connaissances",
 	"New Chat": "Nouvelle conversation",
 	"New Chat": "Nouvelle conversation",
-	"New folder": "Nouveau dossier",
 	"New Password": "Nouveau mot de passe",
 	"New Password": "Nouveau mot de passe",
+	"new-channel": "",
 	"No content found": "Aucun contenu trouvé",
 	"No content found": "Aucun contenu trouvé",
 	"No content to speak": "Rien à signaler",
 	"No content to speak": "Rien à signaler",
 	"No distance available": "Aucune distance disponible",
 	"No distance available": "Aucune distance disponible",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Advanced Parameters": "פרמטרים מתקדמים",
 	"Advanced Parameters": "פרמטרים מתקדמים",
 	"Advanced Params": "פרמטרים מתקדמים",
 	"Advanced Params": "פרמטרים מתקדמים",
-	"All chats": "",
 	"All Documents": "כל המסמכים",
 	"All Documents": "כל המסמכים",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "אחסן בארכיון את כל הצ'אטים",
 	"Archive All Chats": "אחסן בארכיון את כל הצ'אטים",
 	"Archived Chats": "צ'אטים מאורכבים",
 	"Archived Chats": "צ'אטים מאורכבים",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "האם אתה בטוח?",
 	"Are you sure?": "האם אתה בטוח?",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "",
 	"Batch Size (num_batch)": "",
 	"before": "לפני",
 	"before": "לפני",
 	"Being lazy": "להיות עצלן",
 	"Being lazy": "להיות עצלן",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "מפתח API של חיפוש אמיץ",
 	"Brave Search API Key": "מפתח API של חיפוש אמיץ",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "שנה סיסמה",
 	"Change Password": "שנה סיסמה",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "יצירת מודל",
 	"Create a model": "יצירת מודל",
 	"Create Account": "צור חשבון",
 	"Create Account": "צור חשבון",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create Knowledge": "",
 	"Create new key": "צור מפתח חדש",
 	"Create new key": "צור מפתח חדש",
@@ -239,6 +244,7 @@
 	"Delete chat?": "",
 	"Delete chat?": "",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
+	"Delete Message": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "מחק את הקישור הזה",
 	"delete this link": "מחק את הקישור הזה",
 	"Delete tool?": "",
 	"Delete tool?": "",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "ערוך",
 	"Edit": "ערוך",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -595,8 +602,8 @@
 	"Name": "שם",
 	"Name": "שם",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "צ'אט חדש",
 	"New Chat": "צ'אט חדש",
-	"New folder": "",
 	"New Password": "סיסמה חדשה",
 	"New Password": "סיסמה חדשה",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "",
 	"No content to speak": "",
 	"No distance available": "",
 	"No distance available": "",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Advanced Parameters": "उन्नत पैरामीटर",
 	"Advanced Parameters": "उन्नत पैरामीटर",
 	"Advanced Params": "उन्नत परम",
 	"Advanced Params": "उन्नत परम",
-	"All chats": "",
 	"All Documents": "सभी डॉक्यूमेंट्स",
 	"All Documents": "सभी डॉक्यूमेंट्स",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "सभी चैट संग्रहीत करें",
 	"Archive All Chats": "सभी चैट संग्रहीत करें",
 	"Archived Chats": "संग्रहीत चैट",
 	"Archived Chats": "संग्रहीत चैट",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "क्या आपको यकीन है?",
 	"Are you sure?": "क्या आपको यकीन है?",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "",
 	"Batch Size (num_batch)": "",
 	"before": "पहले",
 	"before": "पहले",
 	"Being lazy": "आलसी होना",
 	"Being lazy": "आलसी होना",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "Brave सर्च एपीआई कुंजी",
 	"Brave Search API Key": "Brave सर्च एपीआई कुंजी",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "पासवर्ड बदलें",
 	"Change Password": "पासवर्ड बदलें",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "एक मॉडल बनाएं",
 	"Create a model": "एक मॉडल बनाएं",
 	"Create Account": "खाता बनाएं",
 	"Create Account": "खाता बनाएं",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create Knowledge": "",
 	"Create new key": "नया क्रिप्टोग्राफिक क्षेत्र बनाएं",
 	"Create new key": "नया क्रिप्टोग्राफिक क्षेत्र बनाएं",
@@ -239,6 +244,7 @@
 	"Delete chat?": "",
 	"Delete chat?": "",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
+	"Delete Message": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "इस लिंक को हटाएं",
 	"delete this link": "इस लिंक को हटाएं",
 	"Delete tool?": "",
 	"Delete tool?": "",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "संपादित करें",
 	"Edit": "संपादित करें",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -595,8 +602,8 @@
 	"Name": "नाम",
 	"Name": "नाम",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "नई चैट",
 	"New Chat": "नई चैट",
-	"New folder": "",
 	"New Password": "नया पासवर्ड",
 	"New Password": "नया पासवर्ड",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "",
 	"No content to speak": "",
 	"No distance available": "",
 	"No distance available": "",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Advanced Parameters": "Napredni parametri",
 	"Advanced Parameters": "Napredni parametri",
 	"Advanced Params": "Napredni parametri",
 	"Advanced Params": "Napredni parametri",
-	"All chats": "",
 	"All Documents": "Svi dokumenti",
 	"All Documents": "Svi dokumenti",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Arhivirajte sve razgovore",
 	"Archive All Chats": "Arhivirajte sve razgovore",
 	"Archived Chats": "Arhivirani razgovori",
 	"Archived Chats": "Arhivirani razgovori",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "Jeste li sigurni?",
 	"Are you sure?": "Jeste li sigurni?",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "",
 	"Batch Size (num_batch)": "",
 	"before": "prije",
 	"before": "prije",
 	"Being lazy": "Biti lijen",
 	"Being lazy": "Biti lijen",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "Brave tražilica - API ključ",
 	"Brave Search API Key": "Brave tražilica - API ključ",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "Promijeni lozinku",
 	"Change Password": "Promijeni lozinku",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "Izradite model",
 	"Create a model": "Izradite model",
 	"Create Account": "Stvori račun",
 	"Create Account": "Stvori račun",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create Knowledge": "",
 	"Create new key": "Stvori novi ključ",
 	"Create new key": "Stvori novi ključ",
@@ -239,6 +244,7 @@
 	"Delete chat?": "",
 	"Delete chat?": "",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
+	"Delete Message": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "izbriši ovu vezu",
 	"delete this link": "izbriši ovu vezu",
 	"Delete tool?": "",
 	"Delete tool?": "",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "Uredi",
 	"Edit": "Uredi",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -595,8 +602,8 @@
 	"Name": "Ime",
 	"Name": "Ime",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "Novi razgovor",
 	"New Chat": "Novi razgovor",
-	"New folder": "",
 	"New Password": "Nova lozinka",
 	"New Password": "Nova lozinka",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "",
 	"No content to speak": "",
 	"No distance available": "",
 	"No distance available": "",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Az adminok mindig hozzáférnek minden eszközhöz; a felhasználóknak modellenként kell eszközöket hozzárendelni a munkaterületen.",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Az adminok mindig hozzáférnek minden eszközhöz; a felhasználóknak modellenként kell eszközöket hozzárendelni a munkaterületen.",
 	"Advanced Parameters": "Haladó paraméterek",
 	"Advanced Parameters": "Haladó paraméterek",
 	"Advanced Params": "Haladó paraméterek",
 	"Advanced Params": "Haladó paraméterek",
-	"All chats": "Minden beszélgetés",
 	"All Documents": "Minden dokumentum",
 	"All Documents": "Minden dokumentum",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Minden beszélgetés archiválása",
 	"Archive All Chats": "Minden beszélgetés archiválása",
 	"Archived Chats": "Archivált beszélgetések",
 	"Archived Chats": "Archivált beszélgetések",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "Biztos vagy benne?",
 	"Are you sure?": "Biztos vagy benne?",
 	"Arena Models": "Arena modellek",
 	"Arena Models": "Arena modellek",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "Köteg méret (num_batch)",
 	"Batch Size (num_batch)": "Köteg méret (num_batch)",
 	"before": "előtt",
 	"before": "előtt",
 	"Being lazy": "Lustaság",
 	"Being lazy": "Lustaság",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "Brave Search API kulcs",
 	"Brave Search API Key": "Brave Search API kulcs",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "Jelszó módosítása",
 	"Change Password": "Jelszó módosítása",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "Karakter",
 	"Character": "Karakter",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "Modell létrehozása",
 	"Create a model": "Modell létrehozása",
 	"Create Account": "Fiók létrehozása",
 	"Create Account": "Fiók létrehozása",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "Tudás létrehozása",
 	"Create Knowledge": "Tudás létrehozása",
 	"Create new key": "Új kulcs létrehozása",
 	"Create new key": "Új kulcs létrehozása",
@@ -239,6 +244,7 @@
 	"Delete chat?": "Törli a beszélgetést?",
 	"Delete chat?": "Törli a beszélgetést?",
 	"Delete folder?": "Törli a mappát?",
 	"Delete folder?": "Törli a mappát?",
 	"Delete function?": "Törli a funkciót?",
 	"Delete function?": "Törli a funkciót?",
+	"Delete Message": "",
 	"Delete prompt?": "Törli a promptot?",
 	"Delete prompt?": "Törli a promptot?",
 	"delete this link": "link törlése",
 	"delete this link": "link törlése",
 	"Delete tool?": "Törli az eszközt?",
 	"Delete tool?": "Törli az eszközt?",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "Szerkesztés",
 	"Edit": "Szerkesztés",
 	"Edit Arena Model": "Arena modell szerkesztése",
 	"Edit Arena Model": "Arena modell szerkesztése",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "Memória szerkesztése",
 	"Edit Memory": "Memória szerkesztése",
@@ -595,8 +602,8 @@
 	"Name": "Név",
 	"Name": "Név",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "Új beszélgetés",
 	"New Chat": "Új beszélgetés",
-	"New folder": "Új mappa",
 	"New Password": "Új jelszó",
 	"New Password": "Új jelszó",
+	"new-channel": "",
 	"No content found": "Nem található tartalom",
 	"No content found": "Nem található tartalom",
 	"No content to speak": "Nincs felolvasható tartalom",
 	"No content to speak": "Nincs felolvasható tartalom",
 	"No distance available": "Nincs elérhető távolság",
 	"No distance available": "Nincs elérhető távolság",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Admin memiliki akses ke semua alat setiap saat; pengguna memerlukan alat yang ditetapkan per model di ruang kerja.",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Admin memiliki akses ke semua alat setiap saat; pengguna memerlukan alat yang ditetapkan per model di ruang kerja.",
 	"Advanced Parameters": "Parameter Lanjutan",
 	"Advanced Parameters": "Parameter Lanjutan",
 	"Advanced Params": "Parameter Lanjutan",
 	"Advanced Params": "Parameter Lanjutan",
-	"All chats": "",
 	"All Documents": "Semua Dokumen",
 	"All Documents": "Semua Dokumen",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Arsipkan Semua Obrolan",
 	"Archive All Chats": "Arsipkan Semua Obrolan",
 	"Archived Chats": "Obrolan yang Diarsipkan",
 	"Archived Chats": "Obrolan yang Diarsipkan",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "Apakah Anda yakin?",
 	"Are you sure?": "Apakah Anda yakin?",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "Ukuran Batch (num_batch)",
 	"Batch Size (num_batch)": "Ukuran Batch (num_batch)",
 	"before": "sebelum",
 	"before": "sebelum",
 	"Being lazy": "Menjadi malas",
 	"Being lazy": "Menjadi malas",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "Kunci API Pencarian Berani",
 	"Brave Search API Key": "Kunci API Pencarian Berani",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "Ubah Kata Sandi",
 	"Change Password": "Ubah Kata Sandi",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "Buat model",
 	"Create a model": "Buat model",
 	"Create Account": "Buat Akun",
 	"Create Account": "Buat Akun",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create Knowledge": "",
 	"Create new key": "Buat kunci baru",
 	"Create new key": "Buat kunci baru",
@@ -239,6 +244,7 @@
 	"Delete chat?": "Menghapus obrolan?",
 	"Delete chat?": "Menghapus obrolan?",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "Fungsi hapus?",
 	"Delete function?": "Fungsi hapus?",
+	"Delete Message": "",
 	"Delete prompt?": "Perintah hapus?",
 	"Delete prompt?": "Perintah hapus?",
 	"delete this link": "hapus tautan ini",
 	"delete this link": "hapus tautan ini",
 	"Delete tool?": "Hapus alat?",
 	"Delete tool?": "Hapus alat?",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "Edit",
 	"Edit": "Edit",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "Edit Memori",
 	"Edit Memory": "Edit Memori",
@@ -595,8 +602,8 @@
 	"Name": "Nama",
 	"Name": "Nama",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "Obrolan Baru",
 	"New Chat": "Obrolan Baru",
-	"New folder": "",
 	"New Password": "Kata Sandi Baru",
 	"New Password": "Kata Sandi Baru",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "Tidak ada konten untuk dibicarakan",
 	"No content to speak": "Tidak ada konten untuk dibicarakan",
 	"No distance available": "",
 	"No distance available": "",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Tá rochtain ag riarthóirí ar gach uirlis i gcónaí; teastaíonn uirlisí sannta in aghaidh an tsamhail sa spás oibre ó úsáideoirí.",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Tá rochtain ag riarthóirí ar gach uirlis i gcónaí; teastaíonn uirlisí sannta in aghaidh an tsamhail sa spás oibre ó úsáideoirí.",
 	"Advanced Parameters": "Paraiméadair Casta",
 	"Advanced Parameters": "Paraiméadair Casta",
 	"Advanced Params": "Paraiméid Casta",
 	"Advanced Params": "Paraiméid Casta",
-	"All chats": "Gach comhrá",
 	"All Documents": "Gach Doiciméad",
 	"All Documents": "Gach Doiciméad",
 	"All models deleted successfully": "Scriosadh na samhlacha go léir go rathúil",
 	"All models deleted successfully": "Scriosadh na samhlacha go léir go rathúil",
 	"Allow Chat Delete": "Ceadaigh Comhrá a Scriosadh",
 	"Allow Chat Delete": "Ceadaigh Comhrá a Scriosadh",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Cartlann Gach Comhrá",
 	"Archive All Chats": "Cartlann Gach Comhrá",
 	"Archived Chats": "Comhráite Cartlann",
 	"Archived Chats": "Comhráite Cartlann",
 	"archived-chat-export": "gcartlann-comhrá-onnmhairiú",
 	"archived-chat-export": "gcartlann-comhrá-onnmhairiú",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "An bhfuil tú cinnte gur mhaith leat gach comhrá cartlainne a dhíchartlannú?",
 	"Are you sure you want to unarchive all archived chats?": "An bhfuil tú cinnte gur mhaith leat gach comhrá cartlainne a dhíchartlannú?",
 	"Are you sure?": "An bhfuil tú cinnte?",
 	"Are you sure?": "An bhfuil tú cinnte?",
 	"Arena Models": "Múnlaí Airéine",
 	"Arena Models": "Múnlaí Airéine",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "Méid Baisc (num_batch)",
 	"Batch Size (num_batch)": "Méid Baisc (num_batch)",
 	"before": "roimh",
 	"before": "roimh",
 	"Being lazy": "A bheith leisciúil",
 	"Being lazy": "A bheith leisciúil",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "Cuardach Bing V7 Críochphointe",
 	"Bing Search V7 Endpoint": "Cuardach Bing V7 Críochphointe",
 	"Bing Search V7 Subscription Key": "Eochair Síntiúis Bing Cuardach V7",
 	"Bing Search V7 Subscription Key": "Eochair Síntiúis Bing Cuardach V7",
 	"Brave Search API Key": "Eochair API Cuardaigh Brave",
 	"Brave Search API Key": "Eochair API Cuardaigh Brave",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "Cosán Teastais",
 	"Certificate Path": "Cosán Teastais",
 	"Change Password": "Athraigh Pasfhocal",
 	"Change Password": "Athraigh Pasfhocal",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "Carachtar",
 	"Character": "Carachtar",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "Cairt teorainneacha nua",
 	"Chart new frontiers": "Cairt teorainneacha nua",
@@ -204,6 +208,7 @@
 	"Create a model": "Cruthaigh samhail",
 	"Create a model": "Cruthaigh samhail",
 	"Create Account": "Cruthaigh Cuntas",
 	"Create Account": "Cruthaigh Cuntas",
 	"Create Admin Account": "Cruthaigh Cuntas Riaracháin",
 	"Create Admin Account": "Cruthaigh Cuntas Riaracháin",
+	"Create Channel": "",
 	"Create Group": "Cruthaigh Grúpa",
 	"Create Group": "Cruthaigh Grúpa",
 	"Create Knowledge": "Cruthaigh Eolais",
 	"Create Knowledge": "Cruthaigh Eolais",
 	"Create new key": "Cruthaigh eochair nua",
 	"Create new key": "Cruthaigh eochair nua",
@@ -239,6 +244,7 @@
 	"Delete chat?": "Scrios comhrá?",
 	"Delete chat?": "Scrios comhrá?",
 	"Delete folder?": "Scrios fillteán?",
 	"Delete folder?": "Scrios fillteán?",
 	"Delete function?": "Scrios feidhm?",
 	"Delete function?": "Scrios feidhm?",
+	"Delete Message": "",
 	"Delete prompt?": "Scrios pras?",
 	"Delete prompt?": "Scrios pras?",
 	"delete this link": "scrios an nasc seo",
 	"delete this link": "scrios an nasc seo",
 	"Delete tool?": "Uirlis a scriosadh?",
 	"Delete tool?": "Uirlis a scriosadh?",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "m.sh. Uirlisí chun oibríochtaí éagsúla a dhéanamh",
 	"e.g. Tools for performing various operations": "m.sh. Uirlisí chun oibríochtaí éagsúla a dhéanamh",
 	"Edit": "Cuir in eagar",
 	"Edit": "Cuir in eagar",
 	"Edit Arena Model": "Cuir Samhail Airéine in Eagar",
 	"Edit Arena Model": "Cuir Samhail Airéine in Eagar",
+	"Edit Channel": "",
 	"Edit Connection": "Cuir Ceangal in Eagar",
 	"Edit Connection": "Cuir Ceangal in Eagar",
 	"Edit Default Permissions": "Cuir Ceadanna Réamhshocraithe in Eagar",
 	"Edit Default Permissions": "Cuir Ceadanna Réamhshocraithe in Eagar",
 	"Edit Memory": "Cuir Cuimhne in eagar",
 	"Edit Memory": "Cuir Cuimhne in eagar",
@@ -595,8 +602,8 @@
 	"Name": "Ainm",
 	"Name": "Ainm",
 	"Name your knowledge base": "Cuir ainm ar do bhunachar eolais",
 	"Name your knowledge base": "Cuir ainm ar do bhunachar eolais",
 	"New Chat": "Comhrá Nua",
 	"New Chat": "Comhrá Nua",
-	"New folder": "Fillteán nua",
 	"New Password": "Pasfhocal Nua",
 	"New Password": "Pasfhocal Nua",
+	"new-channel": "",
 	"No content found": "Níor aimsíodh aon ábhar",
 	"No content found": "Níor aimsíodh aon ábhar",
 	"No content to speak": "Níl aon ábhar le labhairt",
 	"No content to speak": "Níl aon ábhar le labhairt",
 	"No distance available": "Níl achar ar fáil",
 	"No distance available": "Níl achar ar fáil",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Advanced Parameters": "Parametri avanzati",
 	"Advanced Parameters": "Parametri avanzati",
 	"Advanced Params": "Parametri avanzati",
 	"Advanced Params": "Parametri avanzati",
-	"All chats": "",
 	"All Documents": "Tutti i documenti",
 	"All Documents": "Tutti i documenti",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Archivia tutte le chat",
 	"Archive All Chats": "Archivia tutte le chat",
 	"Archived Chats": "Chat archiviate",
 	"Archived Chats": "Chat archiviate",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "Sei sicuro?",
 	"Are you sure?": "Sei sicuro?",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "",
 	"Batch Size (num_batch)": "",
 	"before": "prima",
 	"before": "prima",
 	"Being lazy": "Essere pigri",
 	"Being lazy": "Essere pigri",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "Chiave API di ricerca Brave",
 	"Brave Search API Key": "Chiave API di ricerca Brave",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "Cambia password",
 	"Change Password": "Cambia password",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "Creare un modello",
 	"Create a model": "Creare un modello",
 	"Create Account": "Crea account",
 	"Create Account": "Crea account",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create Knowledge": "",
 	"Create new key": "Crea nuova chiave",
 	"Create new key": "Crea nuova chiave",
@@ -239,6 +244,7 @@
 	"Delete chat?": "",
 	"Delete chat?": "",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
+	"Delete Message": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "elimina questo link",
 	"delete this link": "elimina questo link",
 	"Delete tool?": "",
 	"Delete tool?": "",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "Modifica",
 	"Edit": "Modifica",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -595,8 +602,8 @@
 	"Name": "Nome",
 	"Name": "Nome",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "Nuova chat",
 	"New Chat": "Nuova chat",
-	"New folder": "",
 	"New Password": "Nuova password",
 	"New Password": "Nuova password",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "",
 	"No content to speak": "",
 	"No distance available": "",
 	"No distance available": "",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "管理者は全てのツールにアクセス出来ます。ユーザーはワークスペースのモデル毎に割り当てて下さい。",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "管理者は全てのツールにアクセス出来ます。ユーザーはワークスペースのモデル毎に割り当てて下さい。",
 	"Advanced Parameters": "詳細パラメーター",
 	"Advanced Parameters": "詳細パラメーター",
 	"Advanced Params": "高度なパラメータ",
 	"Advanced Params": "高度なパラメータ",
-	"All chats": "",
 	"All Documents": "全てのドキュメント",
 	"All Documents": "全てのドキュメント",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "すべてのチャットをアーカイブする",
 	"Archive All Chats": "すべてのチャットをアーカイブする",
 	"Archived Chats": "チャット記録",
 	"Archived Chats": "チャット記録",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "よろしいですか?",
 	"Are you sure?": "よろしいですか?",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "バッチサイズ (num_batch)",
 	"Batch Size (num_batch)": "バッチサイズ (num_batch)",
 	"before": "より前",
 	"before": "より前",
 	"Being lazy": "怠惰な",
 	"Being lazy": "怠惰な",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "Brave Search APIキー",
 	"Brave Search API Key": "Brave Search APIキー",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "パスワードを変更",
 	"Change Password": "パスワードを変更",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "モデルを作成する",
 	"Create a model": "モデルを作成する",
 	"Create Account": "アカウントを作成",
 	"Create Account": "アカウントを作成",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "知識データ作成",
 	"Create Knowledge": "知識データ作成",
 	"Create new key": "新しいキーを作成",
 	"Create new key": "新しいキーを作成",
@@ -239,6 +244,7 @@
 	"Delete chat?": "チャットを削除しますか?",
 	"Delete chat?": "チャットを削除しますか?",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "Functionを削除しますか?",
 	"Delete function?": "Functionを削除しますか?",
+	"Delete Message": "",
 	"Delete prompt?": "プロンプトを削除しますか?",
 	"Delete prompt?": "プロンプトを削除しますか?",
 	"delete this link": "このリンクを削除します",
 	"delete this link": "このリンクを削除します",
 	"Delete tool?": "ツールを削除しますか?",
 	"Delete tool?": "ツールを削除しますか?",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "編集",
 	"Edit": "編集",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "メモリを編集",
 	"Edit Memory": "メモリを編集",
@@ -595,8 +602,8 @@
 	"Name": "名前",
 	"Name": "名前",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "新しいチャット",
 	"New Chat": "新しいチャット",
-	"New folder": "",
 	"New Password": "新しいパスワード",
 	"New Password": "新しいパスワード",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "",
 	"No content to speak": "",
 	"No distance available": "",
 	"No distance available": "",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Advanced Parameters": "დამატებითი პარამეტრები",
 	"Advanced Parameters": "დამატებითი პარამეტრები",
 	"Advanced Params": "მოწინავე პარამები",
 	"Advanced Params": "მოწინავე პარამები",
-	"All chats": "",
 	"All Documents": "ყველა დოკუმენტი",
 	"All Documents": "ყველა დოკუმენტი",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "არქივი ყველა ჩატი",
 	"Archive All Chats": "არქივი ყველა ჩატი",
 	"Archived Chats": "ჩატის ისტორიის არქივი",
 	"Archived Chats": "ჩატის ისტორიის არქივი",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "დარწმუნებული ხარ?",
 	"Are you sure?": "დარწმუნებული ხარ?",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "",
 	"Batch Size (num_batch)": "",
 	"before": "ადგილზე",
 	"before": "ადგილზე",
 	"Being lazy": "ჩაიტყვევა",
 	"Being lazy": "ჩაიტყვევა",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "Brave Search API გასაღები",
 	"Brave Search API Key": "Brave Search API გასაღები",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "პაროლის შეცვლა",
 	"Change Password": "პაროლის შეცვლა",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "შექმენით მოდელი",
 	"Create a model": "შექმენით მოდელი",
 	"Create Account": "ანგარიშის შექმნა",
 	"Create Account": "ანგარიშის შექმნა",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create Knowledge": "",
 	"Create new key": "პირადი ღირებულბრის შექმნა",
 	"Create new key": "პირადი ღირებულბრის შექმნა",
@@ -239,6 +244,7 @@
 	"Delete chat?": "",
 	"Delete chat?": "",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
+	"Delete Message": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "ბმულის წაშლა",
 	"delete this link": "ბმულის წაშლა",
 	"Delete tool?": "",
 	"Delete tool?": "",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "რედაქტირება",
 	"Edit": "რედაქტირება",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -595,8 +602,8 @@
 	"Name": "სახელი",
 	"Name": "სახელი",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "ახალი მიმოწერა",
 	"New Chat": "ახალი მიმოწერა",
-	"New folder": "",
 	"New Password": "ახალი პაროლი",
 	"New Password": "ახალი პაროლი",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "",
 	"No content to speak": "",
 	"No distance available": "",
 	"No distance available": "",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "관리자는 항상 모든 도구에 접근할 수 있지만, 사용자는 워크스페이스에서 모델마다 도구를 할당받아야 합니다.",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "관리자는 항상 모든 도구에 접근할 수 있지만, 사용자는 워크스페이스에서 모델마다 도구를 할당받아야 합니다.",
 	"Advanced Parameters": "고급 매개변수",
 	"Advanced Parameters": "고급 매개변수",
 	"Advanced Params": "고급 매개변수",
 	"Advanced Params": "고급 매개변수",
-	"All chats": "모든 채팅",
 	"All Documents": "모든 문서",
 	"All Documents": "모든 문서",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "모든 채팅 보관",
 	"Archive All Chats": "모든 채팅 보관",
 	"Archived Chats": "보관된 채팅",
 	"Archived Chats": "보관된 채팅",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "확실합니까?",
 	"Are you sure?": "확실합니까?",
 	"Arena Models": "아레나 모델",
 	"Arena Models": "아레나 모델",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "배치 크기 (num_batch)",
 	"Batch Size (num_batch)": "배치 크기 (num_batch)",
 	"before": "이전",
 	"before": "이전",
 	"Being lazy": "게으름 피우기",
 	"Being lazy": "게으름 피우기",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "Brave Search API 키",
 	"Brave Search API Key": "Brave Search API 키",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "비밀번호 변경",
 	"Change Password": "비밀번호 변경",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "캐릭터",
 	"Character": "캐릭터",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "모델 만들기",
 	"Create a model": "모델 만들기",
 	"Create Account": "계정 만들기",
 	"Create Account": "계정 만들기",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "지식 만들기",
 	"Create Knowledge": "지식 만들기",
 	"Create new key": "새 키 만들기",
 	"Create new key": "새 키 만들기",
@@ -239,6 +244,7 @@
 	"Delete chat?": "채팅을 삭제하겠습니까?",
 	"Delete chat?": "채팅을 삭제하겠습니까?",
 	"Delete folder?": "폴더를 삭제하시겠습니까?",
 	"Delete folder?": "폴더를 삭제하시겠습니까?",
 	"Delete function?": "함수를 삭제하시겠습니까?",
 	"Delete function?": "함수를 삭제하시겠습니까?",
+	"Delete Message": "",
 	"Delete prompt?": "프롬포트를 삭제하시겠습니까?",
 	"Delete prompt?": "프롬포트를 삭제하시겠습니까?",
 	"delete this link": "이 링크를 삭제합니다.",
 	"delete this link": "이 링크를 삭제합니다.",
 	"Delete tool?": "도구를 삭제하시겠습니까?",
 	"Delete tool?": "도구를 삭제하시겠습니까?",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "편집",
 	"Edit": "편집",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "메모리 편집",
 	"Edit Memory": "메모리 편집",
@@ -595,8 +602,8 @@
 	"Name": "이름",
 	"Name": "이름",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "새 채팅",
 	"New Chat": "새 채팅",
-	"New folder": "새 폴더",
 	"New Password": "새 비밀번호",
 	"New Password": "새 비밀번호",
+	"new-channel": "",
 	"No content found": "내용을 찾을 수 없음",
 	"No content found": "내용을 찾을 수 없음",
 	"No content to speak": "음성 출력할 내용을 찾을 수 없음",
 	"No content to speak": "음성 출력할 내용을 찾을 수 없음",
 	"No distance available": "거리 불가능",
 	"No distance available": "거리 불가능",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratoriai visada turi visus įrankius. Naudotojai turi tuėti prieigą prie dokumentų per modelių nuostatas",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratoriai visada turi visus įrankius. Naudotojai turi tuėti prieigą prie dokumentų per modelių nuostatas",
 	"Advanced Parameters": "Pažengę nustatymai",
 	"Advanced Parameters": "Pažengę nustatymai",
 	"Advanced Params": "Pažengę nustatymai",
 	"Advanced Params": "Pažengę nustatymai",
-	"All chats": "",
 	"All Documents": "Visi dokumentai",
 	"All Documents": "Visi dokumentai",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Archyvuoti visus pokalbius",
 	"Archive All Chats": "Archyvuoti visus pokalbius",
 	"Archived Chats": "Archyvuoti pokalbiai",
 	"Archived Chats": "Archyvuoti pokalbiai",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "Are esate tikri?",
 	"Are you sure?": "Are esate tikri?",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "Batch dydis",
 	"Batch Size (num_batch)": "Batch dydis",
 	"before": "prieš",
 	"before": "prieš",
 	"Being lazy": "Būvimas tingiu",
 	"Being lazy": "Būvimas tingiu",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "Brave Search API raktas",
 	"Brave Search API Key": "Brave Search API raktas",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "Keisti slaptažodį",
 	"Change Password": "Keisti slaptažodį",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "Sukurti modelį",
 	"Create a model": "Sukurti modelį",
 	"Create Account": "Créer un compte",
 	"Create Account": "Créer un compte",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create Knowledge": "",
 	"Create new key": "Sukurti naują raktą",
 	"Create new key": "Sukurti naują raktą",
@@ -239,6 +244,7 @@
 	"Delete chat?": "Ištrinti pokalbį?",
 	"Delete chat?": "Ištrinti pokalbį?",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "Ištrinti funkciją",
 	"Delete function?": "Ištrinti funkciją",
+	"Delete Message": "",
 	"Delete prompt?": "Ištrinti užklausą?",
 	"Delete prompt?": "Ištrinti užklausą?",
 	"delete this link": "Ištrinti nuorodą",
 	"delete this link": "Ištrinti nuorodą",
 	"Delete tool?": "Ištrinti įrankį?",
 	"Delete tool?": "Ištrinti įrankį?",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "Redaguoti",
 	"Edit": "Redaguoti",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "Koreguoti atminį",
 	"Edit Memory": "Koreguoti atminį",
@@ -595,8 +602,8 @@
 	"Name": "Pavadinimas",
 	"Name": "Pavadinimas",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "Naujas pokalbis",
 	"New Chat": "Naujas pokalbis",
-	"New folder": "",
 	"New Password": "Naujas slaptažodis",
 	"New Password": "Naujas slaptažodis",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "Nėra turinio kalbėjimui",
 	"No content to speak": "Nėra turinio kalbėjimui",
 	"No distance available": "",
 	"No distance available": "",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Pentadbir mempunyai akses kepada semua alat pada setiap masa; pengguna memerlukan alat yang ditetapkan mengikut model dalam ruang kerja.",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Pentadbir mempunyai akses kepada semua alat pada setiap masa; pengguna memerlukan alat yang ditetapkan mengikut model dalam ruang kerja.",
 	"Advanced Parameters": "Parameter Lanjutan",
 	"Advanced Parameters": "Parameter Lanjutan",
 	"Advanced Params": "Parameter Lanjutan",
 	"Advanced Params": "Parameter Lanjutan",
-	"All chats": "",
 	"All Documents": "Semua Dokumen",
 	"All Documents": "Semua Dokumen",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Arkibkan Semua Perbualan",
 	"Archive All Chats": "Arkibkan Semua Perbualan",
 	"Archived Chats": "Perbualan yang diarkibkan",
 	"Archived Chats": "Perbualan yang diarkibkan",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "Adakah anda pasti",
 	"Are you sure?": "Adakah anda pasti",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "Saiz Kumpulan (num_batch)",
 	"Batch Size (num_batch)": "Saiz Kumpulan (num_batch)",
 	"before": "sebelum,",
 	"before": "sebelum,",
 	"Being lazy": "Menjadi Malas",
 	"Being lazy": "Menjadi Malas",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "Kunci API Carian Brave",
 	"Brave Search API Key": "Kunci API Carian Brave",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "Tukar Kata Laluan",
 	"Change Password": "Tukar Kata Laluan",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "Cipta model",
 	"Create a model": "Cipta model",
 	"Create Account": "Cipta Akaun",
 	"Create Account": "Cipta Akaun",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create Knowledge": "",
 	"Create new key": "Cipta kekunci baharu",
 	"Create new key": "Cipta kekunci baharu",
@@ -239,6 +244,7 @@
 	"Delete chat?": "Padam perbualan?",
 	"Delete chat?": "Padam perbualan?",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "Padam fungsi?",
 	"Delete function?": "Padam fungsi?",
+	"Delete Message": "",
 	"Delete prompt?": "Padam Gesaan?",
 	"Delete prompt?": "Padam Gesaan?",
 	"delete this link": "Padam pautan ini?",
 	"delete this link": "Padam pautan ini?",
 	"Delete tool?": "Padam alat?",
 	"Delete tool?": "Padam alat?",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "Edit",
 	"Edit": "Edit",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "Edit Memori",
 	"Edit Memory": "Edit Memori",
@@ -595,8 +602,8 @@
 	"Name": "Nama",
 	"Name": "Nama",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "Perbualan Baru",
 	"New Chat": "Perbualan Baru",
-	"New folder": "",
 	"New Password": "Kata Laluan Baru",
 	"New Password": "Kata Laluan Baru",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "Tiada kandungan untuk bercakap",
 	"No content to speak": "Tiada kandungan untuk bercakap",
 	"No distance available": "",
 	"No distance available": "",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratorer har alltid tilgang til alle verktøy. Brukere må få tildelt verktøy per modell i arbeidsområdet.",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratorer har alltid tilgang til alle verktøy. Brukere må få tildelt verktøy per modell i arbeidsområdet.",
 	"Advanced Parameters": "Avanserte parametere",
 	"Advanced Parameters": "Avanserte parametere",
 	"Advanced Params": "Avanserte parametere",
 	"Advanced Params": "Avanserte parametere",
-	"All chats": "Alle chatter",
 	"All Documents": "Alle dokumenter",
 	"All Documents": "Alle dokumenter",
 	"All models deleted successfully": "Alle modeller er slettet",
 	"All models deleted successfully": "Alle modeller er slettet",
 	"Allow Chat Delete": "Tillat sletting av chatter",
 	"Allow Chat Delete": "Tillat sletting av chatter",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Arkiver alle chatter",
 	"Archive All Chats": "Arkiver alle chatter",
 	"Archived Chats": "Arkiverte chatter",
 	"Archived Chats": "Arkiverte chatter",
 	"archived-chat-export": "archived-chat-export",
 	"archived-chat-export": "archived-chat-export",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "Er du sikker på at du vil oppheve arkiveringen av alle arkiverte chatter?",
 	"Are you sure you want to unarchive all archived chats?": "Er du sikker på at du vil oppheve arkiveringen av alle arkiverte chatter?",
 	"Are you sure?": "Er du sikker?",
 	"Are you sure?": "Er du sikker?",
 	"Arena Models": "Arena-modeller",
 	"Arena Models": "Arena-modeller",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "Batchstørrelse (num_batch)",
 	"Batch Size (num_batch)": "Batchstørrelse (num_batch)",
 	"before": "før",
 	"before": "før",
 	"Being lazy": "Er lat",
 	"Being lazy": "Er lat",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "Endepunkt for Bing Search V7",
 	"Bing Search V7 Endpoint": "Endepunkt for Bing Search V7",
 	"Bing Search V7 Subscription Key": "Abonnementsnøkkel for Bing Search V7",
 	"Bing Search V7 Subscription Key": "Abonnementsnøkkel for Bing Search V7",
 	"Brave Search API Key": "API-nøkkel for Brave Search",
 	"Brave Search API Key": "API-nøkkel for Brave Search",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "Sertifikatbane",
 	"Certificate Path": "Sertifikatbane",
 	"Change Password": "Endre passord",
 	"Change Password": "Endre passord",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "Karakter",
 	"Character": "Karakter",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "Kartlegg ny områder",
 	"Chart new frontiers": "Kartlegg ny områder",
@@ -204,6 +208,7 @@
 	"Create a model": "Opprett en modell",
 	"Create a model": "Opprett en modell",
 	"Create Account": "Opprett konto",
 	"Create Account": "Opprett konto",
 	"Create Admin Account": "Opprett administratorkonto",
 	"Create Admin Account": "Opprett administratorkonto",
+	"Create Channel": "",
 	"Create Group": "Opprett gruppe",
 	"Create Group": "Opprett gruppe",
 	"Create Knowledge": "Opprett kunnskap",
 	"Create Knowledge": "Opprett kunnskap",
 	"Create new key": "Lag ny nøkkel",
 	"Create new key": "Lag ny nøkkel",
@@ -239,6 +244,7 @@
 	"Delete chat?": "Slette chat?",
 	"Delete chat?": "Slette chat?",
 	"Delete folder?": "Slette mappe?",
 	"Delete folder?": "Slette mappe?",
 	"Delete function?": "Slette funksjon?",
 	"Delete function?": "Slette funksjon?",
+	"Delete Message": "",
 	"Delete prompt?": "Slette ledetekst?",
 	"Delete prompt?": "Slette ledetekst?",
 	"delete this link": "slett denne lenken",
 	"delete this link": "slett denne lenken",
 	"Delete tool?": "Slette verktøy?",
 	"Delete tool?": "Slette verktøy?",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "f.eks. Verktøy for å gjøre ulike handlinger",
 	"e.g. Tools for performing various operations": "f.eks. Verktøy for å gjøre ulike handlinger",
 	"Edit": "Rediger",
 	"Edit": "Rediger",
 	"Edit Arena Model": "Rediger Arena-modell",
 	"Edit Arena Model": "Rediger Arena-modell",
+	"Edit Channel": "",
 	"Edit Connection": "Rediger tilkobling",
 	"Edit Connection": "Rediger tilkobling",
 	"Edit Default Permissions": "Rediger standard tillatelser",
 	"Edit Default Permissions": "Rediger standard tillatelser",
 	"Edit Memory": "Rediger minne",
 	"Edit Memory": "Rediger minne",
@@ -595,8 +602,8 @@
 	"Name": "Navn",
 	"Name": "Navn",
 	"Name your knowledge base": "Gi kunnskapsbasen et navn",
 	"Name your knowledge base": "Gi kunnskapsbasen et navn",
 	"New Chat": "Ny chat",
 	"New Chat": "Ny chat",
-	"New folder": "Ny mappe",
 	"New Password": "Nytt passord",
 	"New Password": "Nytt passord",
+	"new-channel": "",
 	"No content found": "Finner ikke noe innhold",
 	"No content found": "Finner ikke noe innhold",
 	"No content to speak": "Mangler innhold for tale",
 	"No content to speak": "Mangler innhold for tale",
 	"No distance available": "Ingen avstand tilgjengelig",
 	"No distance available": "Ingen avstand tilgjengelig",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Beheerders hebben altijd toegang tot alle gereedschappen; gebruikers moeten gereedschap toegewezen krijgen per model in de werkruimte.",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Beheerders hebben altijd toegang tot alle gereedschappen; gebruikers moeten gereedschap toegewezen krijgen per model in de werkruimte.",
 	"Advanced Parameters": "Geavanceerde parameters",
 	"Advanced Parameters": "Geavanceerde parameters",
 	"Advanced Params": "Geavanceerde params",
 	"Advanced Params": "Geavanceerde params",
-	"All chats": "Alle chats",
 	"All Documents": "Alle documenten",
 	"All Documents": "Alle documenten",
 	"All models deleted successfully": "Alle modellen zijn succesvol verwijderd",
 	"All models deleted successfully": "Alle modellen zijn succesvol verwijderd",
 	"Allow Chat Delete": "Sta chatverwijdering toe",
 	"Allow Chat Delete": "Sta chatverwijdering toe",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Archiveer alle chats",
 	"Archive All Chats": "Archiveer alle chats",
 	"Archived Chats": "Chatrecord",
 	"Archived Chats": "Chatrecord",
 	"archived-chat-export": "gearchiveerde-chat-export",
 	"archived-chat-export": "gearchiveerde-chat-export",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "Weet je zeker dat je alle gearchiveerde chats wil onarchiveren?",
 	"Are you sure you want to unarchive all archived chats?": "Weet je zeker dat je alle gearchiveerde chats wil onarchiveren?",
 	"Are you sure?": "Weet je het zeker?",
 	"Are you sure?": "Weet je het zeker?",
 	"Arena Models": "Arenamodellen",
 	"Arena Models": "Arenamodellen",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "Batchgrootte (num_batch)",
 	"Batch Size (num_batch)": "Batchgrootte (num_batch)",
 	"before": "voor",
 	"before": "voor",
 	"Being lazy": "Lui zijn",
 	"Being lazy": "Lui zijn",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "Bing Search V7 Endpoint",
 	"Bing Search V7 Endpoint": "Bing Search V7 Endpoint",
 	"Bing Search V7 Subscription Key": "Bing Search V7 Subscription Key",
 	"Bing Search V7 Subscription Key": "Bing Search V7 Subscription Key",
 	"Brave Search API Key": "Brave Search API-sleutel",
 	"Brave Search API Key": "Brave Search API-sleutel",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "Certificaatpad",
 	"Certificate Path": "Certificaatpad",
 	"Change Password": "Wijzig Wachtwoord",
 	"Change Password": "Wijzig Wachtwoord",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "Karakter",
 	"Character": "Karakter",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "Verken nieuwe grenzen",
 	"Chart new frontiers": "Verken nieuwe grenzen",
@@ -204,6 +208,7 @@
 	"Create a model": "Een model maken",
 	"Create a model": "Een model maken",
 	"Create Account": "Maak account",
 	"Create Account": "Maak account",
 	"Create Admin Account": "Maak admin-account",
 	"Create Admin Account": "Maak admin-account",
+	"Create Channel": "",
 	"Create Group": "Maak groep",
 	"Create Group": "Maak groep",
 	"Create Knowledge": "Creër kennis",
 	"Create Knowledge": "Creër kennis",
 	"Create new key": "Maak nieuwe sleutel",
 	"Create new key": "Maak nieuwe sleutel",
@@ -239,6 +244,7 @@
 	"Delete chat?": "Verwijder chat?",
 	"Delete chat?": "Verwijder chat?",
 	"Delete folder?": "Verwijder map?",
 	"Delete folder?": "Verwijder map?",
 	"Delete function?": "Verwijder functie?",
 	"Delete function?": "Verwijder functie?",
+	"Delete Message": "",
 	"Delete prompt?": "Verwijder prompt?",
 	"Delete prompt?": "Verwijder prompt?",
 	"delete this link": "verwijder deze link",
 	"delete this link": "verwijder deze link",
 	"Delete tool?": "Verwijder tool?",
 	"Delete tool?": "Verwijder tool?",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "Gereedschappen om verschillende bewerkingen uit te voeren",
 	"e.g. Tools for performing various operations": "Gereedschappen om verschillende bewerkingen uit te voeren",
 	"Edit": "Wijzig",
 	"Edit": "Wijzig",
 	"Edit Arena Model": "Bewerk arenamodel",
 	"Edit Arena Model": "Bewerk arenamodel",
+	"Edit Channel": "",
 	"Edit Connection": "Bewerk connectie",
 	"Edit Connection": "Bewerk connectie",
 	"Edit Default Permissions": "Standaardrechten bewerken",
 	"Edit Default Permissions": "Standaardrechten bewerken",
 	"Edit Memory": "Bewerk geheugen",
 	"Edit Memory": "Bewerk geheugen",
@@ -595,8 +602,8 @@
 	"Name": "Naam",
 	"Name": "Naam",
 	"Name your knowledge base": "Geef je kennisbasis een naam",
 	"Name your knowledge base": "Geef je kennisbasis een naam",
 	"New Chat": "Nieuwe Chat",
 	"New Chat": "Nieuwe Chat",
-	"New folder": "Nieuwe map",
 	"New Password": "Nieuw Wachtwoord",
 	"New Password": "Nieuw Wachtwoord",
+	"new-channel": "",
 	"No content found": "Geen content gevonden",
 	"No content found": "Geen content gevonden",
 	"No content to speak": "Geen inhoud om over te spreken",
 	"No content to speak": "Geen inhoud om over te spreken",
 	"No distance available": "Geen afstand beschikbaar",
 	"No distance available": "Geen afstand beschikbaar",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Advanced Parameters": "ਉੱਚ ਸਤਰ ਦੇ ਪੈਰਾਮੀਟਰ",
 	"Advanced Parameters": "ਉੱਚ ਸਤਰ ਦੇ ਪੈਰਾਮੀਟਰ",
 	"Advanced Params": "ਐਡਵਾਂਸਡ ਪਰਮਜ਼",
 	"Advanced Params": "ਐਡਵਾਂਸਡ ਪਰਮਜ਼",
-	"All chats": "",
 	"All Documents": "ਸਾਰੇ ਡਾਕੂਮੈਂਟ",
 	"All Documents": "ਸਾਰੇ ਡਾਕੂਮੈਂਟ",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "ਸਾਰੀਆਂ ਚੈਟਾਂ ਨੂੰ ਆਰਕਾਈਵ ਕਰੋ",
 	"Archive All Chats": "ਸਾਰੀਆਂ ਚੈਟਾਂ ਨੂੰ ਆਰਕਾਈਵ ਕਰੋ",
 	"Archived Chats": "ਆਰਕਾਈਵ ਕੀਤੀਆਂ ਗੱਲਾਂ",
 	"Archived Chats": "ਆਰਕਾਈਵ ਕੀਤੀਆਂ ਗੱਲਾਂ",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਹੋ?",
 	"Are you sure?": "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਹੋ?",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "",
 	"Batch Size (num_batch)": "",
 	"before": "ਪਹਿਲਾਂ",
 	"before": "ਪਹਿਲਾਂ",
 	"Being lazy": "ਆਲਸੀ ਹੋਣਾ",
 	"Being lazy": "ਆਲਸੀ ਹੋਣਾ",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "ਬਹਾਦਰ ਖੋਜ API ਕੁੰਜੀ",
 	"Brave Search API Key": "ਬਹਾਦਰ ਖੋਜ API ਕੁੰਜੀ",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "ਪਾਸਵਰਡ ਬਦਲੋ",
 	"Change Password": "ਪਾਸਵਰਡ ਬਦਲੋ",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "ਇੱਕ ਮਾਡਲ ਬਣਾਓ",
 	"Create a model": "ਇੱਕ ਮਾਡਲ ਬਣਾਓ",
 	"Create Account": "ਖਾਤਾ ਬਣਾਓ",
 	"Create Account": "ਖਾਤਾ ਬਣਾਓ",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create Knowledge": "",
 	"Create new key": "ਨਵੀਂ ਕੁੰਜੀ ਬਣਾਓ",
 	"Create new key": "ਨਵੀਂ ਕੁੰਜੀ ਬਣਾਓ",
@@ -239,6 +244,7 @@
 	"Delete chat?": "",
 	"Delete chat?": "",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
+	"Delete Message": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "ਇਸ ਲਿੰਕ ਨੂੰ ਮਿਟਾਓ",
 	"delete this link": "ਇਸ ਲਿੰਕ ਨੂੰ ਮਿਟਾਓ",
 	"Delete tool?": "",
 	"Delete tool?": "",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "ਸੰਪਾਦਨ ਕਰੋ",
 	"Edit": "ਸੰਪਾਦਨ ਕਰੋ",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -595,8 +602,8 @@
 	"Name": "ਨਾਮ",
 	"Name": "ਨਾਮ",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "ਨਵੀਂ ਗੱਲਬਾਤ",
 	"New Chat": "ਨਵੀਂ ਗੱਲਬਾਤ",
-	"New folder": "",
 	"New Password": "ਨਵਾਂ ਪਾਸਵਰਡ",
 	"New Password": "ਨਵਾਂ ਪਾਸਵਰਡ",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "",
 	"No content to speak": "",
 	"No distance available": "",
 	"No distance available": "",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Advanced Parameters": "Zaawansowane parametry",
 	"Advanced Parameters": "Zaawansowane parametry",
 	"Advanced Params": "Zaawansowane parametry",
 	"Advanced Params": "Zaawansowane parametry",
-	"All chats": "",
 	"All Documents": "Wszystkie dokumenty",
 	"All Documents": "Wszystkie dokumenty",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Archiwizuj wszystkie czaty",
 	"Archive All Chats": "Archiwizuj wszystkie czaty",
 	"Archived Chats": "Zarchiwizowane czaty",
 	"Archived Chats": "Zarchiwizowane czaty",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "Jesteś pewien?",
 	"Are you sure?": "Jesteś pewien?",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "",
 	"Batch Size (num_batch)": "",
 	"before": "przed",
 	"before": "przed",
 	"Being lazy": "Jest leniwy",
 	"Being lazy": "Jest leniwy",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "Klucz API wyszukiwania Brave",
 	"Brave Search API Key": "Klucz API wyszukiwania Brave",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "Zmień hasło",
 	"Change Password": "Zmień hasło",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "Tworzenie modelu",
 	"Create a model": "Tworzenie modelu",
 	"Create Account": "Utwórz konto",
 	"Create Account": "Utwórz konto",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create Knowledge": "",
 	"Create new key": "Utwórz nowy klucz",
 	"Create new key": "Utwórz nowy klucz",
@@ -239,6 +244,7 @@
 	"Delete chat?": "",
 	"Delete chat?": "",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
+	"Delete Message": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "usuń ten link",
 	"delete this link": "usuń ten link",
 	"Delete tool?": "",
 	"Delete tool?": "",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "Edytuj",
 	"Edit": "Edytuj",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -595,8 +602,8 @@
 	"Name": "Nazwa",
 	"Name": "Nazwa",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "Nowy czat",
 	"New Chat": "Nowy czat",
-	"New folder": "",
 	"New Password": "Nowe hasło",
 	"New Password": "Nowe hasło",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "",
 	"No content to speak": "",
 	"No distance available": "",
 	"No distance available": "",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Os admins têm acesso a todas as ferramentas o tempo todo; os usuários precisam de ferramentas atribuídas, por modelo, no workspace.",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Os admins têm acesso a todas as ferramentas o tempo todo; os usuários precisam de ferramentas atribuídas, por modelo, no workspace.",
 	"Advanced Parameters": "Parâmetros Avançados",
 	"Advanced Parameters": "Parâmetros Avançados",
 	"Advanced Params": "Parâmetros Avançados",
 	"Advanced Params": "Parâmetros Avançados",
-	"All chats": "Todos os chats",
 	"All Documents": "Todos os Documentos",
 	"All Documents": "Todos os Documentos",
 	"All models deleted successfully": "Todos os modelos foram excluídos com sucesso",
 	"All models deleted successfully": "Todos os modelos foram excluídos com sucesso",
 	"Allow Chat Delete": "Permitir Exclusão de Chats",
 	"Allow Chat Delete": "Permitir Exclusão de Chats",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Arquivar Todos os Chats",
 	"Archive All Chats": "Arquivar Todos os Chats",
 	"Archived Chats": "Chats Arquivados",
 	"Archived Chats": "Chats Arquivados",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "Você tem certeza que deseja desarquivar todos os chats arquivados?",
 	"Are you sure you want to unarchive all archived chats?": "Você tem certeza que deseja desarquivar todos os chats arquivados?",
 	"Are you sure?": "Você tem certeza?",
 	"Are you sure?": "Você tem certeza?",
 	"Arena Models": "Arena de Modelos",
 	"Arena Models": "Arena de Modelos",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "Tamanho do Lote (num_batch)",
 	"Batch Size (num_batch)": "Tamanho do Lote (num_batch)",
 	"before": "antes",
 	"before": "antes",
 	"Being lazy": "Sendo preguiçoso",
 	"Being lazy": "Sendo preguiçoso",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "Chave API do Brave Search",
 	"Brave Search API Key": "Chave API do Brave Search",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "Caminho do Certificado",
 	"Certificate Path": "Caminho do Certificado",
 	"Change Password": "Mudar Senha",
 	"Change Password": "Mudar Senha",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "Caracter",
 	"Character": "Caracter",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "Trace novas fronteiras",
 	"Chart new frontiers": "Trace novas fronteiras",
@@ -204,6 +208,7 @@
 	"Create a model": "Criar um modelo",
 	"Create a model": "Criar um modelo",
 	"Create Account": "Criar Conta",
 	"Create Account": "Criar Conta",
 	"Create Admin Account": "Criar Conta de Admin",
 	"Create Admin Account": "Criar Conta de Admin",
+	"Create Channel": "",
 	"Create Group": "Criar Grupo",
 	"Create Group": "Criar Grupo",
 	"Create Knowledge": "Criar Conhecimento",
 	"Create Knowledge": "Criar Conhecimento",
 	"Create new key": "Criar nova chave",
 	"Create new key": "Criar nova chave",
@@ -239,6 +244,7 @@
 	"Delete chat?": "Excluir chat?",
 	"Delete chat?": "Excluir chat?",
 	"Delete folder?": "Excluir pasta?",
 	"Delete folder?": "Excluir pasta?",
 	"Delete function?": "Excluir função?",
 	"Delete function?": "Excluir função?",
+	"Delete Message": "",
 	"Delete prompt?": "Excluir prompt?",
 	"Delete prompt?": "Excluir prompt?",
 	"delete this link": "Excluir este link",
 	"delete this link": "Excluir este link",
 	"Delete tool?": "Excluir ferramenta?",
 	"Delete tool?": "Excluir ferramenta?",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "Exemplo: Ferramentas para executar operações diversas",
 	"e.g. Tools for performing various operations": "Exemplo: Ferramentas para executar operações diversas",
 	"Edit": "Editar",
 	"Edit": "Editar",
 	"Edit Arena Model": "Editar Arena de Modelos",
 	"Edit Arena Model": "Editar Arena de Modelos",
+	"Edit Channel": "",
 	"Edit Connection": "Editar Conexão",
 	"Edit Connection": "Editar Conexão",
 	"Edit Default Permissions": "Editar Permissões Padrão",
 	"Edit Default Permissions": "Editar Permissões Padrão",
 	"Edit Memory": "Editar Memória",
 	"Edit Memory": "Editar Memória",
@@ -595,8 +602,8 @@
 	"Name": "Nome",
 	"Name": "Nome",
 	"Name your knowledge base": "Nome da sua base de conhecimento",
 	"Name your knowledge base": "Nome da sua base de conhecimento",
 	"New Chat": "Novo Chat",
 	"New Chat": "Novo Chat",
-	"New folder": "Nova pasta",
 	"New Password": "Nova Senha",
 	"New Password": "Nova Senha",
+	"new-channel": "",
 	"No content found": "Nenhum conteúdo encontrado",
 	"No content found": "Nenhum conteúdo encontrado",
 	"No content to speak": "Sem conteúdo para falar",
 	"No content to speak": "Sem conteúdo para falar",
 	"No distance available": "Sem distância disponível",
 	"No distance available": "Sem distância disponível",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Advanced Parameters": "Parâmetros Avançados",
 	"Advanced Parameters": "Parâmetros Avançados",
 	"Advanced Params": "Params Avançados",
 	"Advanced Params": "Params Avançados",
-	"All chats": "",
 	"All Documents": "Todos os Documentos",
 	"All Documents": "Todos os Documentos",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Arquivar todos os chats",
 	"Archive All Chats": "Arquivar todos os chats",
 	"Archived Chats": "Conversas arquivadas",
 	"Archived Chats": "Conversas arquivadas",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "Tem a certeza?",
 	"Are you sure?": "Tem a certeza?",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "",
 	"Batch Size (num_batch)": "",
 	"before": "antes",
 	"before": "antes",
 	"Being lazy": "Ser preguiçoso",
 	"Being lazy": "Ser preguiçoso",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "Chave da API de Pesquisa Brave",
 	"Brave Search API Key": "Chave da API de Pesquisa Brave",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "Alterar Senha",
 	"Change Password": "Alterar Senha",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "Criar um modelo",
 	"Create a model": "Criar um modelo",
 	"Create Account": "Criar Conta",
 	"Create Account": "Criar Conta",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create Knowledge": "",
 	"Create new key": "Criar nova chave",
 	"Create new key": "Criar nova chave",
@@ -239,6 +244,7 @@
 	"Delete chat?": "",
 	"Delete chat?": "",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
+	"Delete Message": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "apagar este link",
 	"delete this link": "apagar este link",
 	"Delete tool?": "",
 	"Delete tool?": "",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "Editar",
 	"Edit": "Editar",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -595,8 +602,8 @@
 	"Name": "Nome",
 	"Name": "Nome",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "Nova Conversa",
 	"New Chat": "Nova Conversa",
-	"New folder": "",
 	"New Password": "Nova Senha",
 	"New Password": "Nova Senha",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "",
 	"No content to speak": "",
 	"No distance available": "",
 	"No distance available": "",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratorii au acces la toate instrumentele în orice moment; utilizatorii au nevoie de instrumente asignate pe model în spațiul de lucru.",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratorii au acces la toate instrumentele în orice moment; utilizatorii au nevoie de instrumente asignate pe model în spațiul de lucru.",
 	"Advanced Parameters": "Parametri Avansați",
 	"Advanced Parameters": "Parametri Avansați",
 	"Advanced Params": "Parametri Avansați",
 	"Advanced Params": "Parametri Avansați",
-	"All chats": "Toate conversațiile",
 	"All Documents": "Toate Documentele",
 	"All Documents": "Toate Documentele",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Arhivează Toate Conversațiile",
 	"Archive All Chats": "Arhivează Toate Conversațiile",
 	"Archived Chats": "Conversații Arhivate",
 	"Archived Chats": "Conversații Arhivate",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "Ești sigur?",
 	"Are you sure?": "Ești sigur?",
 	"Arena Models": "Arena Models",
 	"Arena Models": "Arena Models",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "Dimensiune Lot (num_batch)",
 	"Batch Size (num_batch)": "Dimensiune Lot (num_batch)",
 	"before": "înainte",
 	"before": "înainte",
 	"Being lazy": "Fiind leneș",
 	"Being lazy": "Fiind leneș",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "Cheie API Brave Search",
 	"Brave Search API Key": "Cheie API Brave Search",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "Schimbă Parola",
 	"Change Password": "Schimbă Parola",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "Caracter",
 	"Character": "Caracter",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "Creează un model",
 	"Create a model": "Creează un model",
 	"Create Account": "Creează Cont",
 	"Create Account": "Creează Cont",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "Creează cunoștințe",
 	"Create Knowledge": "Creează cunoștințe",
 	"Create new key": "Creează cheie nouă",
 	"Create new key": "Creează cheie nouă",
@@ -239,6 +244,7 @@
 	"Delete chat?": "Șterge conversația?",
 	"Delete chat?": "Șterge conversația?",
 	"Delete folder?": "Ștergeți folderul?",
 	"Delete folder?": "Ștergeți folderul?",
 	"Delete function?": "Șterge funcția?",
 	"Delete function?": "Șterge funcția?",
+	"Delete Message": "",
 	"Delete prompt?": "Șterge promptul?",
 	"Delete prompt?": "Șterge promptul?",
 	"delete this link": "șterge acest link",
 	"delete this link": "șterge acest link",
 	"Delete tool?": "Șterge instrumentul?",
 	"Delete tool?": "Șterge instrumentul?",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "Editează",
 	"Edit": "Editează",
 	"Edit Arena Model": "Editați Modelul Arena",
 	"Edit Arena Model": "Editați Modelul Arena",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "Editează Memorie",
 	"Edit Memory": "Editează Memorie",
@@ -595,8 +602,8 @@
 	"Name": "Nume",
 	"Name": "Nume",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "Conversație Nouă",
 	"New Chat": "Conversație Nouă",
-	"New folder": "Folder nou",
 	"New Password": "Parolă Nouă",
 	"New Password": "Parolă Nouă",
+	"new-channel": "",
 	"No content found": "Nu a fost găsit niciun conținut",
 	"No content found": "Nu a fost găsit niciun conținut",
 	"No content to speak": "Nu există conținut de vorbit",
 	"No content to speak": "Nu există conținut de vorbit",
 	"No distance available": "Nicio distanță disponibilă",
 	"No distance available": "Nicio distanță disponibilă",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Администраторы всегда имеют доступ ко всем инструментам; пользователям нужны инструменты, назначенные для каждой модели в рабочем пространстве.",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Администраторы всегда имеют доступ ко всем инструментам; пользователям нужны инструменты, назначенные для каждой модели в рабочем пространстве.",
 	"Advanced Parameters": "Расширенные Параметры",
 	"Advanced Parameters": "Расширенные Параметры",
 	"Advanced Params": "Расширенные параметры",
 	"Advanced Params": "Расширенные параметры",
-	"All chats": "Все чаты",
 	"All Documents": "Все документы",
 	"All Documents": "Все документы",
 	"All models deleted successfully": "Все модели успешно удалены",
 	"All models deleted successfully": "Все модели успешно удалены",
 	"Allow Chat Delete": "Разрешить удаление чата",
 	"Allow Chat Delete": "Разрешить удаление чата",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Архивировать все чаты",
 	"Archive All Chats": "Архивировать все чаты",
 	"Archived Chats": "Архив чатов",
 	"Archived Chats": "Архив чатов",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "Вы уверены, что хотите разархивировать все заархивированные чаты?",
 	"Are you sure you want to unarchive all archived chats?": "Вы уверены, что хотите разархивировать все заархивированные чаты?",
 	"Are you sure?": "Вы уверены?",
 	"Are you sure?": "Вы уверены?",
 	"Arena Models": "Модели арены",
 	"Arena Models": "Модели арены",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "Размер партии (num_batch)",
 	"Batch Size (num_batch)": "Размер партии (num_batch)",
 	"before": "до",
 	"before": "до",
 	"Being lazy": "Лениво",
 	"Being lazy": "Лениво",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "Конечная точка поиска Bing V7",
 	"Bing Search V7 Endpoint": "Конечная точка поиска Bing V7",
 	"Bing Search V7 Subscription Key": "Ключ API Bing Search V7",
 	"Bing Search V7 Subscription Key": "Ключ API Bing Search V7",
 	"Brave Search API Key": "Ключ API поиска Brave",
 	"Brave Search API Key": "Ключ API поиска Brave",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "Изменить пароль",
 	"Change Password": "Изменить пароль",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "Ограничение количества символов для ввода при генерации автозаполнения",
 	"Character limit for autocomplete generation input": "Ограничение количества символов для ввода при генерации автозаполнения",
 	"Chart new frontiers": "Наметьте новые границы",
 	"Chart new frontiers": "Наметьте новые границы",
@@ -204,6 +208,7 @@
 	"Create a model": "Создание модели",
 	"Create a model": "Создание модели",
 	"Create Account": "Создать аккаунт",
 	"Create Account": "Создать аккаунт",
 	"Create Admin Account": "Создать Аккаунт Администратора",
 	"Create Admin Account": "Создать Аккаунт Администратора",
+	"Create Channel": "",
 	"Create Group": "Создать Группу",
 	"Create Group": "Создать Группу",
 	"Create Knowledge": "Создать Знания",
 	"Create Knowledge": "Создать Знания",
 	"Create new key": "Создать новый ключ",
 	"Create new key": "Создать новый ключ",
@@ -239,6 +244,7 @@
 	"Delete chat?": "Удалить чат?",
 	"Delete chat?": "Удалить чат?",
 	"Delete folder?": "Удалить папку?",
 	"Delete folder?": "Удалить папку?",
 	"Delete function?": "Удалить функцию?",
 	"Delete function?": "Удалить функцию?",
+	"Delete Message": "",
 	"Delete prompt?": "Удалить промпт?",
 	"Delete prompt?": "Удалить промпт?",
 	"delete this link": "удалить эту ссылку",
 	"delete this link": "удалить эту ссылку",
 	"Delete tool?": "Удалить этот инструмент?",
 	"Delete tool?": "Удалить этот инструмент?",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "Редактировать",
 	"Edit": "Редактировать",
 	"Edit Arena Model": "Изменить модель арены",
 	"Edit Arena Model": "Изменить модель арены",
+	"Edit Channel": "",
 	"Edit Connection": "Изменить соединение",
 	"Edit Connection": "Изменить соединение",
 	"Edit Default Permissions": "Изменить разрешения по умолчанию",
 	"Edit Default Permissions": "Изменить разрешения по умолчанию",
 	"Edit Memory": "Редактировать воспоминание",
 	"Edit Memory": "Редактировать воспоминание",
@@ -595,8 +602,8 @@
 	"Name": "Имя",
 	"Name": "Имя",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "Новый чат",
 	"New Chat": "Новый чат",
-	"New folder": "",
 	"New Password": "Новый пароль",
 	"New Password": "Новый пароль",
+	"new-channel": "",
 	"No content found": "Контент не найден",
 	"No content found": "Контент не найден",
 	"No content to speak": "Нечего говорить",
 	"No content to speak": "Нечего говорить",
 	"No distance available": "",
 	"No distance available": "",

+ 9 - 2
src/lib/i18n/locales/sk-SK/translation.json

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administrátori majú prístup ku všetkým nástrojom kedykoľvek; užívatelia potrebujú mať nástroje priradené podľa modelu v workspace.",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administrátori majú prístup ku všetkým nástrojom kedykoľvek; užívatelia potrebujú mať nástroje priradené podľa modelu v workspace.",
 	"Advanced Parameters": "Pokročilé parametre",
 	"Advanced Parameters": "Pokročilé parametre",
 	"Advanced Params": "Pokročilé parametre",
 	"Advanced Params": "Pokročilé parametre",
-	"All chats": "Všetky konverzácie",
 	"All Documents": "Všetky dokumenty",
 	"All Documents": "Všetky dokumenty",
 	"All models deleted successfully": "Všetky modely úspešne odstránené",
 	"All models deleted successfully": "Všetky modely úspešne odstránené",
 	"Allow Chat Delete": "Povoliť odstránenie chatu",
 	"Allow Chat Delete": "Povoliť odstránenie chatu",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Archivovať všetky konverzácie",
 	"Archive All Chats": "Archivovať všetky konverzácie",
 	"Archived Chats": "Archivované konverzácie",
 	"Archived Chats": "Archivované konverzácie",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "Ste si istý?",
 	"Are you sure?": "Ste si istý?",
 	"Arena Models": "Arena modely",
 	"Arena Models": "Arena modely",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "Veľkosť batchu (num_batch)",
 	"Batch Size (num_batch)": "Veľkosť batchu (num_batch)",
 	"before": "pred",
 	"before": "pred",
 	"Being lazy": "",
 	"Being lazy": "",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "API kľúč pre Brave Search",
 	"Brave Search API Key": "API kľúč pre Brave Search",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "Zmeniť heslo",
 	"Change Password": "Zmeniť heslo",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "Znak",
 	"Character": "Znak",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "Vytvoriť model",
 	"Create a model": "Vytvoriť model",
 	"Create Account": "Vytvoriť účet",
 	"Create Account": "Vytvoriť účet",
 	"Create Admin Account": "Vytvoriť admin účet",
 	"Create Admin Account": "Vytvoriť admin účet",
+	"Create Channel": "",
 	"Create Group": "Vytvoriť skupinu",
 	"Create Group": "Vytvoriť skupinu",
 	"Create Knowledge": "Vytvoriť knowledge",
 	"Create Knowledge": "Vytvoriť knowledge",
 	"Create new key": "Vytvoriť nový kľúč",
 	"Create new key": "Vytvoriť nový kľúč",
@@ -239,6 +244,7 @@
 	"Delete chat?": "Odstrániť konverzáciu?",
 	"Delete chat?": "Odstrániť konverzáciu?",
 	"Delete folder?": "Odstrániť priečinok?",
 	"Delete folder?": "Odstrániť priečinok?",
 	"Delete function?": "Funkcia na odstránenie?",
 	"Delete function?": "Funkcia na odstránenie?",
+	"Delete Message": "",
 	"Delete prompt?": "Odstrániť prompt?",
 	"Delete prompt?": "Odstrániť prompt?",
 	"delete this link": "odstrániť tento odkaz",
 	"delete this link": "odstrániť tento odkaz",
 	"Delete tool?": "Odstrániť nástroj?",
 	"Delete tool?": "Odstrániť nástroj?",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "Upraviť",
 	"Edit": "Upraviť",
 	"Edit Arena Model": "Upraviť Arena Model",
 	"Edit Arena Model": "Upraviť Arena Model",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "Upraviť pamäť",
 	"Edit Memory": "Upraviť pamäť",
@@ -595,8 +602,8 @@
 	"Name": "Meno",
 	"Name": "Meno",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "Nový chat",
 	"New Chat": "Nový chat",
-	"New folder": "Nový priečinok",
 	"New Password": "Nové heslo",
 	"New Password": "Nové heslo",
+	"new-channel": "",
 	"No content found": "Nebol nájdený žiadny obsah.",
 	"No content found": "Nebol nájdený žiadny obsah.",
 	"No content to speak": "Žiadny obsah na diskusiu.",
 	"No content to speak": "Žiadny obsah na diskusiu.",
 	"No distance available": "Nie je dostupná žiadna vzdialenosť",
 	"No distance available": "Nie je dostupná žiadna vzdialenosť",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Админи имају приступ свим алатима у сваком тренутку, корисницима је потребно доделити алате по моделу у радном простору",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Админи имају приступ свим алатима у сваком тренутку, корисницима је потребно доделити алате по моделу у радном простору",
 	"Advanced Parameters": "Напредни параметри",
 	"Advanced Parameters": "Напредни параметри",
 	"Advanced Params": "Напредни парамови",
 	"Advanced Params": "Напредни парамови",
-	"All chats": "Сва ћаскања",
 	"All Documents": "Сви документи",
 	"All Documents": "Сви документи",
 	"All models deleted successfully": "Сви модели су успешно обрисани",
 	"All models deleted successfully": "Сви модели су успешно обрисани",
 	"Allow Chat Delete": "Дозволи брисање ћаскања",
 	"Allow Chat Delete": "Дозволи брисање ћаскања",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Архивирај сва ћаскања",
 	"Archive All Chats": "Архивирај сва ћаскања",
 	"Archived Chats": "Архиве",
 	"Archived Chats": "Архиве",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "Да ли сте сигурни?",
 	"Are you sure?": "Да ли сте сигурни?",
 	"Arena Models": "Модели са Арене",
 	"Arena Models": "Модели са Арене",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "",
 	"Batch Size (num_batch)": "",
 	"before": "пре",
 	"before": "пре",
 	"Being lazy": "Бити лењ",
 	"Being lazy": "Бити лењ",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "Апи кључ за храбру претрагу",
 	"Brave Search API Key": "Апи кључ за храбру претрагу",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "Промени лозинку",
 	"Change Password": "Промени лозинку",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "Знак",
 	"Character": "Знак",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "Креирање модела",
 	"Create a model": "Креирање модела",
 	"Create Account": "Направи налог",
 	"Create Account": "Направи налог",
 	"Create Admin Account": "Направи админ налог",
 	"Create Admin Account": "Направи админ налог",
+	"Create Channel": "",
 	"Create Group": "Направи групу",
 	"Create Group": "Направи групу",
 	"Create Knowledge": "Направи знање",
 	"Create Knowledge": "Направи знање",
 	"Create new key": "Направи нови кључ",
 	"Create new key": "Направи нови кључ",
@@ -239,6 +244,7 @@
 	"Delete chat?": "",
 	"Delete chat?": "",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
+	"Delete Message": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "обриши ову везу",
 	"delete this link": "обриши ову везу",
 	"Delete tool?": "",
 	"Delete tool?": "",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "Уреди",
 	"Edit": "Уреди",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -595,8 +602,8 @@
 	"Name": "Име",
 	"Name": "Име",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "Ново ћаскање",
 	"New Chat": "Ново ћаскање",
-	"New folder": "",
 	"New Password": "Нова лозинка",
 	"New Password": "Нова лозинка",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "",
 	"No content to speak": "",
 	"No distance available": "",
 	"No distance available": "",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratörer har tillgång till alla verktyg hela tiden, medan användare behöver verktyg som tilldelas per modell i arbetsytan.",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratörer har tillgång till alla verktyg hela tiden, medan användare behöver verktyg som tilldelas per modell i arbetsytan.",
 	"Advanced Parameters": "Avancerade parametrar",
 	"Advanced Parameters": "Avancerade parametrar",
 	"Advanced Params": "Avancerade parametrar",
 	"Advanced Params": "Avancerade parametrar",
-	"All chats": "",
 	"All Documents": "Alla dokument",
 	"All Documents": "Alla dokument",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Arkivera alla chattar",
 	"Archive All Chats": "Arkivera alla chattar",
 	"Archived Chats": "Arkiverade chattar",
 	"Archived Chats": "Arkiverade chattar",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "Är du säker?",
 	"Are you sure?": "Är du säker?",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "Batchstorlek (num_batch)",
 	"Batch Size (num_batch)": "Batchstorlek (num_batch)",
 	"before": "för",
 	"before": "för",
 	"Being lazy": "Lägg till",
 	"Being lazy": "Lägg till",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "API-nyckel för Brave Search",
 	"Brave Search API Key": "API-nyckel för Brave Search",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "Ändra lösenord",
 	"Change Password": "Ändra lösenord",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "Skapa en modell",
 	"Create a model": "Skapa en modell",
 	"Create Account": "Skapa konto",
 	"Create Account": "Skapa konto",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create Knowledge": "",
 	"Create new key": "Skapa ny nyckel",
 	"Create new key": "Skapa ny nyckel",
@@ -239,6 +244,7 @@
 	"Delete chat?": "",
 	"Delete chat?": "",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
+	"Delete Message": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "radera denna länk",
 	"delete this link": "radera denna länk",
 	"Delete tool?": "",
 	"Delete tool?": "",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "Redigera",
 	"Edit": "Redigera",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -595,8 +602,8 @@
 	"Name": "Namn",
 	"Name": "Namn",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "Ny chatt",
 	"New Chat": "Ny chatt",
-	"New folder": "",
 	"New Password": "Nytt lösenord",
 	"New Password": "Nytt lösenord",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "",
 	"No content to speak": "",
 	"No distance available": "",
 	"No distance available": "",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "ผู้ดูแลระบบสามารถเข้าถึงเครื่องมือทั้งหมดได้ตลอดเวลา; ผู้ใช้ต้องการเครื่องมือที่กำหนดต่อโมเดลในพื้นที่ทำงาน",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "ผู้ดูแลระบบสามารถเข้าถึงเครื่องมือทั้งหมดได้ตลอดเวลา; ผู้ใช้ต้องการเครื่องมือที่กำหนดต่อโมเดลในพื้นที่ทำงาน",
 	"Advanced Parameters": "พารามิเตอร์ขั้นสูง",
 	"Advanced Parameters": "พารามิเตอร์ขั้นสูง",
 	"Advanced Params": "พารามิเตอร์ขั้นสูง",
 	"Advanced Params": "พารามิเตอร์ขั้นสูง",
-	"All chats": "",
 	"All Documents": "เอกสารทั้งหมด",
 	"All Documents": "เอกสารทั้งหมด",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "เก็บถาวรการสนทนาทั้งหมด",
 	"Archive All Chats": "เก็บถาวรการสนทนาทั้งหมด",
 	"Archived Chats": "การสนทนาที่เก็บถาวร",
 	"Archived Chats": "การสนทนาที่เก็บถาวร",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "คุณแน่ใจหรือ?",
 	"Are you sure?": "คุณแน่ใจหรือ?",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "ขนาดชุด (num_batch)",
 	"Batch Size (num_batch)": "ขนาดชุด (num_batch)",
 	"before": "ก่อน",
 	"before": "ก่อน",
 	"Being lazy": "ขี้เกียจ",
 	"Being lazy": "ขี้เกียจ",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "คีย์ API ของ Brave Search",
 	"Brave Search API Key": "คีย์ API ของ Brave Search",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "เปลี่ยนรหัสผ่าน",
 	"Change Password": "เปลี่ยนรหัสผ่าน",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "สร้างโมเดล",
 	"Create a model": "สร้างโมเดล",
 	"Create Account": "สร้างบัญชี",
 	"Create Account": "สร้างบัญชี",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create Knowledge": "",
 	"Create new key": "สร้างคีย์ใหม่",
 	"Create new key": "สร้างคีย์ใหม่",
@@ -239,6 +244,7 @@
 	"Delete chat?": "ลบแชท?",
 	"Delete chat?": "ลบแชท?",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "ลบฟังก์ชัน?",
 	"Delete function?": "ลบฟังก์ชัน?",
+	"Delete Message": "",
 	"Delete prompt?": "ลบพรอมต์?",
 	"Delete prompt?": "ลบพรอมต์?",
 	"delete this link": "ลบลิงก์นี้",
 	"delete this link": "ลบลิงก์นี้",
 	"Delete tool?": "ลบเครื่องมือ?",
 	"Delete tool?": "ลบเครื่องมือ?",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "แก้ไข",
 	"Edit": "แก้ไข",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "แก้ไขความจำ",
 	"Edit Memory": "แก้ไขความจำ",
@@ -595,8 +602,8 @@
 	"Name": "ชื่อ",
 	"Name": "ชื่อ",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "แชทใหม่",
 	"New Chat": "แชทใหม่",
-	"New folder": "",
 	"New Password": "รหัสผ่านใหม่",
 	"New Password": "รหัสผ่านใหม่",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "ไม่มีเนื้อหาที่จะพูด",
 	"No content to speak": "ไม่มีเนื้อหาที่จะพูด",
 	"No distance available": "",
 	"No distance available": "",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
 	"Advanced Parameters": "",
 	"Advanced Parameters": "",
 	"Advanced Params": "",
 	"Advanced Params": "",
-	"All chats": "",
 	"All Documents": "",
 	"All Documents": "",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "",
 	"Archive All Chats": "",
 	"Archived Chats": "",
 	"Archived Chats": "",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "",
 	"Are you sure?": "",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "",
 	"Batch Size (num_batch)": "",
 	"before": "",
 	"before": "",
 	"Being lazy": "",
 	"Being lazy": "",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "",
 	"Brave Search API Key": "",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "",
 	"Change Password": "",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "",
 	"Create a model": "",
 	"Create Account": "",
 	"Create Account": "",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create Knowledge": "",
 	"Create new key": "",
 	"Create new key": "",
@@ -239,6 +244,7 @@
 	"Delete chat?": "",
 	"Delete chat?": "",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
+	"Delete Message": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "",
 	"delete this link": "",
 	"Delete tool?": "",
 	"Delete tool?": "",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "",
 	"Edit": "",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -595,8 +602,8 @@
 	"Name": "",
 	"Name": "",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "",
 	"New Chat": "",
-	"New folder": "",
 	"New Password": "",
 	"New Password": "",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "",
 	"No content to speak": "",
 	"No distance available": "",
 	"No distance available": "",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Yöneticiler her zaman tüm araçlara erişebilir; kullanıcıların çalışma alanındaki model başına atanmış araçlara ihtiyacı vardır.",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Yöneticiler her zaman tüm araçlara erişebilir; kullanıcıların çalışma alanındaki model başına atanmış araçlara ihtiyacı vardır.",
 	"Advanced Parameters": "Gelişmiş Parametreler",
 	"Advanced Parameters": "Gelişmiş Parametreler",
 	"Advanced Params": "Gelişmiş Parametreler",
 	"Advanced Params": "Gelişmiş Parametreler",
-	"All chats": "Tüm sohbetler",
 	"All Documents": "Tüm Belgeler",
 	"All Documents": "Tüm Belgeler",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Tüm Sohbetleri Arşivle",
 	"Archive All Chats": "Tüm Sohbetleri Arşivle",
 	"Archived Chats": "Arşivlenmiş Sohbetler",
 	"Archived Chats": "Arşivlenmiş Sohbetler",
 	"archived-chat-export": "arşivlenmiş-sohbet-aktarımı",
 	"archived-chat-export": "arşivlenmiş-sohbet-aktarımı",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "Emin misiniz?",
 	"Are you sure?": "Emin misiniz?",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "Yığın Boyutu (num_batch)",
 	"Batch Size (num_batch)": "Yığın Boyutu (num_batch)",
 	"before": "önce",
 	"before": "önce",
 	"Being lazy": "Tembelleşiyor",
 	"Being lazy": "Tembelleşiyor",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "Brave Search API Anahtarı",
 	"Brave Search API Key": "Brave Search API Anahtarı",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "Parola Değiştir",
 	"Change Password": "Parola Değiştir",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "Karakter",
 	"Character": "Karakter",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "Bir model oluştur",
 	"Create a model": "Bir model oluştur",
 	"Create Account": "Hesap Oluştur",
 	"Create Account": "Hesap Oluştur",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create Knowledge": "",
 	"Create new key": "Yeni anahtar oluştur",
 	"Create new key": "Yeni anahtar oluştur",
@@ -239,6 +244,7 @@
 	"Delete chat?": "Sohbeti sil?",
 	"Delete chat?": "Sohbeti sil?",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "Fonksiyonu sil?",
 	"Delete function?": "Fonksiyonu sil?",
+	"Delete Message": "",
 	"Delete prompt?": "Promptu sil?",
 	"Delete prompt?": "Promptu sil?",
 	"delete this link": "bu bağlantıyı sil",
 	"delete this link": "bu bağlantıyı sil",
 	"Delete tool?": "Aracı sil?",
 	"Delete tool?": "Aracı sil?",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "Düzenle",
 	"Edit": "Düzenle",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "Belleği Düzenle",
 	"Edit Memory": "Belleği Düzenle",
@@ -595,8 +602,8 @@
 	"Name": "Ad",
 	"Name": "Ad",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "Yeni Sohbet",
 	"New Chat": "Yeni Sohbet",
-	"New folder": "Yeni Dosya",
 	"New Password": "Yeni Parola",
 	"New Password": "Yeni Parola",
+	"new-channel": "",
 	"No content found": "İçerik bulunamadı",
 	"No content found": "İçerik bulunamadı",
 	"No content to speak": "Konuşacak içerik yok",
 	"No content to speak": "Konuşacak içerik yok",
 	"No distance available": "Mesafe mevcut değil",
 	"No distance available": "Mesafe mevcut değil",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Адміністратори мають доступ до всіх інструментів у будь-який час; користувачам потрібні інструменти, призначені для кожної моделі в робочій області.",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Адміністратори мають доступ до всіх інструментів у будь-який час; користувачам потрібні інструменти, призначені для кожної моделі в робочій області.",
 	"Advanced Parameters": "Розширені параметри",
 	"Advanced Parameters": "Розширені параметри",
 	"Advanced Params": "Розширені параметри",
 	"Advanced Params": "Розширені параметри",
-	"All chats": "Усі чати",
 	"All Documents": "Усі документи",
 	"All Documents": "Усі документи",
 	"All models deleted successfully": "Всі моделі видалені успішно",
 	"All models deleted successfully": "Всі моделі видалені успішно",
 	"Allow Chat Delete": "Дозволити видалення чату",
 	"Allow Chat Delete": "Дозволити видалення чату",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Архівувати всі чати",
 	"Archive All Chats": "Архівувати всі чати",
 	"Archived Chats": "Архівовані чати",
 	"Archived Chats": "Архівовані чати",
 	"archived-chat-export": "експорт-архівованих-чатів",
 	"archived-chat-export": "експорт-архівованих-чатів",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "Ви впевнені, що хочете розархівувати всі архівовані чати?",
 	"Are you sure you want to unarchive all archived chats?": "Ви впевнені, що хочете розархівувати всі архівовані чати?",
 	"Are you sure?": "Ви впевнені?",
 	"Are you sure?": "Ви впевнені?",
 	"Arena Models": "Моделі Arena",
 	"Arena Models": "Моделі Arena",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "Розмір партії (num_batch)",
 	"Batch Size (num_batch)": "Розмір партії (num_batch)",
 	"before": "до того, як",
 	"before": "до того, як",
 	"Being lazy": "Не поспішати",
 	"Being lazy": "Не поспішати",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "Точка доступу Bing Search V7",
 	"Bing Search V7 Endpoint": "Точка доступу Bing Search V7",
 	"Bing Search V7 Subscription Key": "Ключ підписки Bing Search V7",
 	"Bing Search V7 Subscription Key": "Ключ підписки Bing Search V7",
 	"Brave Search API Key": "Ключ API пошуку Brave",
 	"Brave Search API Key": "Ключ API пошуку Brave",
@@ -122,6 +124,8 @@
 	"Capture": "Захоплення",
 	"Capture": "Захоплення",
 	"Certificate Path": "Шлях до сертифіката",
 	"Certificate Path": "Шлях до сертифіката",
 	"Change Password": "Змінити пароль",
 	"Change Password": "Змінити пароль",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "Персонаж",
 	"Character": "Персонаж",
 	"Character limit for autocomplete generation input": "Ліміт символів для введення при генерації автозаповнення",
 	"Character limit for autocomplete generation input": "Ліміт символів для введення при генерації автозаповнення",
 	"Chart new frontiers": "Відкривати нові горизонти",
 	"Chart new frontiers": "Відкривати нові горизонти",
@@ -204,6 +208,7 @@
 	"Create a model": "Створити модель",
 	"Create a model": "Створити модель",
 	"Create Account": "Створити обліковий запис",
 	"Create Account": "Створити обліковий запис",
 	"Create Admin Account": "Створити обліковий запис адміністратора",
 	"Create Admin Account": "Створити обліковий запис адміністратора",
+	"Create Channel": "",
 	"Create Group": "Створити групу",
 	"Create Group": "Створити групу",
 	"Create Knowledge": "Створити знання",
 	"Create Knowledge": "Створити знання",
 	"Create new key": "Створити новий ключ",
 	"Create new key": "Створити новий ключ",
@@ -239,6 +244,7 @@
 	"Delete chat?": "Видалити чат?",
 	"Delete chat?": "Видалити чат?",
 	"Delete folder?": "Видалити папку?",
 	"Delete folder?": "Видалити папку?",
 	"Delete function?": "Видалити функцію?",
 	"Delete function?": "Видалити функцію?",
+	"Delete Message": "",
 	"Delete prompt?": "Видалити промт?",
 	"Delete prompt?": "Видалити промт?",
 	"delete this link": "видалити це посилання",
 	"delete this link": "видалити це посилання",
 	"Delete tool?": "Видалити інструмент?",
 	"Delete tool?": "Видалити інструмент?",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "напр., Інструменти для виконання різних операцій",
 	"e.g. Tools for performing various operations": "напр., Інструменти для виконання різних операцій",
 	"Edit": "Редагувати",
 	"Edit": "Редагувати",
 	"Edit Arena Model": "Редагувати модель Arena",
 	"Edit Arena Model": "Редагувати модель Arena",
+	"Edit Channel": "",
 	"Edit Connection": "Редагувати з'єднання",
 	"Edit Connection": "Редагувати з'єднання",
 	"Edit Default Permissions": "Редагувати дозволи за замовчуванням",
 	"Edit Default Permissions": "Редагувати дозволи за замовчуванням",
 	"Edit Memory": "Редагувати пам'ять",
 	"Edit Memory": "Редагувати пам'ять",
@@ -595,8 +602,8 @@
 	"Name": "Ім'я",
 	"Name": "Ім'я",
 	"Name your knowledge base": "Назвіть вашу базу знань",
 	"Name your knowledge base": "Назвіть вашу базу знань",
 	"New Chat": "Новий чат",
 	"New Chat": "Новий чат",
-	"New folder": "Нова папка",
 	"New Password": "Новий пароль",
 	"New Password": "Новий пароль",
+	"new-channel": "",
 	"No content found": "Контент не знайдено.",
 	"No content found": "Контент не знайдено.",
 	"No content to speak": "Нема чого говорити",
 	"No content to speak": "Нема чого говорити",
 	"No distance available": "Відстань недоступна",
 	"No distance available": "Відстань недоступна",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "ایڈمنز کو ہر وقت تمام ٹولز تک رسائی حاصل ہوتی ہے؛ صارفین کو ورک سپیس میں ماڈل کے حساب سے ٹولز تفویض کرنے کی ضرورت ہوتی ہے",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "ایڈمنز کو ہر وقت تمام ٹولز تک رسائی حاصل ہوتی ہے؛ صارفین کو ورک سپیس میں ماڈل کے حساب سے ٹولز تفویض کرنے کی ضرورت ہوتی ہے",
 	"Advanced Parameters": "پیشرفتہ پیرا میٹرز",
 	"Advanced Parameters": "پیشرفتہ پیرا میٹرز",
 	"Advanced Params": "ترقی یافتہ پیرامیٹرز",
 	"Advanced Params": "ترقی یافتہ پیرامیٹرز",
-	"All chats": "تمام چیٹس",
 	"All Documents": "تمام دستاویزات",
 	"All Documents": "تمام دستاویزات",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "تمام چیٹس محفوظ کریں",
 	"Archive All Chats": "تمام چیٹس محفوظ کریں",
 	"Archived Chats": "محفوظ شدہ بات چیت",
 	"Archived Chats": "محفوظ شدہ بات چیت",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "کیا آپ کو یقین ہے؟",
 	"Are you sure?": "کیا آپ کو یقین ہے؟",
 	"Arena Models": "ارینا ماڈلز",
 	"Arena Models": "ارینا ماڈلز",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "بیچ سائز (num_batch)",
 	"Batch Size (num_batch)": "بیچ سائز (num_batch)",
 	"before": "پہلے",
 	"before": "پہلے",
 	"Being lazy": "سستی کر رہا ہے",
 	"Being lazy": "سستی کر رہا ہے",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "بریو سرچ API کلید",
 	"Brave Search API Key": "بریو سرچ API کلید",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "پاس ورڈ تبدیل کریں",
 	"Change Password": "پاس ورڈ تبدیل کریں",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "کردار",
 	"Character": "کردار",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "ماڈل بنائیں",
 	"Create a model": "ماڈل بنائیں",
 	"Create Account": "اکاؤنٹ بنائیں",
 	"Create Account": "اکاؤنٹ بنائیں",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "علم بنائیں",
 	"Create Knowledge": "علم بنائیں",
 	"Create new key": "نیا کلید بنائیں",
 	"Create new key": "نیا کلید بنائیں",
@@ -239,6 +244,7 @@
 	"Delete chat?": "چیٹ حذف کریں؟",
 	"Delete chat?": "چیٹ حذف کریں؟",
 	"Delete folder?": "کیا فولڈر حذف کریں؟",
 	"Delete folder?": "کیا فولڈر حذف کریں؟",
 	"Delete function?": "حذف کریں؟",
 	"Delete function?": "حذف کریں؟",
+	"Delete Message": "",
 	"Delete prompt?": "پرومپٹ کو حذف کریں؟",
 	"Delete prompt?": "پرومپٹ کو حذف کریں؟",
 	"delete this link": "اس لنک کو حذف کریں",
 	"delete this link": "اس لنک کو حذف کریں",
 	"Delete tool?": "کیا آپ حذف کرنا چاہتے ہیں؟",
 	"Delete tool?": "کیا آپ حذف کرنا چاہتے ہیں؟",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "ترمیم کریں",
 	"Edit": "ترمیم کریں",
 	"Edit Arena Model": "ایرینا ماڈل میں ترمیم کریں",
 	"Edit Arena Model": "ایرینا ماڈل میں ترمیم کریں",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "یادداشت میں ترمیم کریں",
 	"Edit Memory": "یادداشت میں ترمیم کریں",
@@ -595,8 +602,8 @@
 	"Name": "نام",
 	"Name": "نام",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "نئی بات چیت",
 	"New Chat": "نئی بات چیت",
-	"New folder": "نیا فولڈر",
 	"New Password": "نیا پاس ورڈ",
 	"New Password": "نیا پاس ورڈ",
+	"new-channel": "",
 	"No content found": "کوئی مواد نہیں ملا",
 	"No content found": "کوئی مواد نہیں ملا",
 	"No content to speak": "بولنے کے لیے کوئی مواد نہیں",
 	"No content to speak": "بولنے کے لیے کوئی مواد نہیں",
 	"No distance available": "فاصلہ دستیاب نہیں ہے",
 	"No distance available": "فاصلہ دستیاب نہیں ہے",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Quản trị viên luôn có quyền truy cập vào tất cả các tool; người dùng cần các tools được chỉ định cho mỗi mô hình trong workspace.",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Quản trị viên luôn có quyền truy cập vào tất cả các tool; người dùng cần các tools được chỉ định cho mỗi mô hình trong workspace.",
 	"Advanced Parameters": "Các tham số Nâng cao",
 	"Advanced Parameters": "Các tham số Nâng cao",
 	"Advanced Params": "Các tham số Nâng cao",
 	"Advanced Params": "Các tham số Nâng cao",
-	"All chats": "",
 	"All Documents": "Tất cả tài liệu",
 	"All Documents": "Tất cả tài liệu",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "Lưu tất cả các cuộc Chat",
 	"Archive All Chats": "Lưu tất cả các cuộc Chat",
 	"Archived Chats": "Lưu các cuộc Chat",
 	"Archived Chats": "Lưu các cuộc Chat",
 	"archived-chat-export": "",
 	"archived-chat-export": "",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure?": "Bạn có chắc chắn không?",
 	"Are you sure?": "Bạn có chắc chắn không?",
 	"Arena Models": "",
 	"Arena Models": "",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "",
 	"Batch Size (num_batch)": "",
 	"before": "trước",
 	"before": "trước",
 	"Being lazy": "Lười biếng",
 	"Being lazy": "Lười biếng",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Endpoint": "",
 	"Bing Search V7 Subscription Key": "",
 	"Bing Search V7 Subscription Key": "",
 	"Brave Search API Key": "Khóa API tìm kiếm dũng cảm",
 	"Brave Search API Key": "Khóa API tìm kiếm dũng cảm",
@@ -122,6 +124,8 @@
 	"Capture": "",
 	"Capture": "",
 	"Certificate Path": "",
 	"Certificate Path": "",
 	"Change Password": "Đổi Mật khẩu",
 	"Change Password": "Đổi Mật khẩu",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "",
 	"Character": "",
 	"Character limit for autocomplete generation input": "",
 	"Character limit for autocomplete generation input": "",
 	"Chart new frontiers": "",
 	"Chart new frontiers": "",
@@ -204,6 +208,7 @@
 	"Create a model": "Tạo model",
 	"Create a model": "Tạo model",
 	"Create Account": "Tạo Tài khoản",
 	"Create Account": "Tạo Tài khoản",
 	"Create Admin Account": "",
 	"Create Admin Account": "",
+	"Create Channel": "",
 	"Create Group": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create Knowledge": "",
 	"Create new key": "Tạo key mới",
 	"Create new key": "Tạo key mới",
@@ -239,6 +244,7 @@
 	"Delete chat?": "Xóa chat?",
 	"Delete chat?": "Xóa chat?",
 	"Delete folder?": "",
 	"Delete folder?": "",
 	"Delete function?": "Xóa function?",
 	"Delete function?": "Xóa function?",
+	"Delete Message": "",
 	"Delete prompt?": "Xóa prompt?",
 	"Delete prompt?": "Xóa prompt?",
 	"delete this link": "Xóa link này",
 	"delete this link": "Xóa link này",
 	"Delete tool?": "Xóa tool?",
 	"Delete tool?": "Xóa tool?",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "",
 	"e.g. Tools for performing various operations": "",
 	"Edit": "Chỉnh sửa",
 	"Edit": "Chỉnh sửa",
 	"Edit Arena Model": "",
 	"Edit Arena Model": "",
+	"Edit Channel": "",
 	"Edit Connection": "",
 	"Edit Connection": "",
 	"Edit Default Permissions": "",
 	"Edit Default Permissions": "",
 	"Edit Memory": "Sửa Memory",
 	"Edit Memory": "Sửa Memory",
@@ -595,8 +602,8 @@
 	"Name": "Tên",
 	"Name": "Tên",
 	"Name your knowledge base": "",
 	"Name your knowledge base": "",
 	"New Chat": "Tạo chat mới",
 	"New Chat": "Tạo chat mới",
-	"New folder": "",
 	"New Password": "Mật khẩu mới",
 	"New Password": "Mật khẩu mới",
+	"new-channel": "",
 	"No content found": "",
 	"No content found": "",
 	"No content to speak": "Không có nội dung để nói",
 	"No content to speak": "Không có nội dung để nói",
 	"No distance available": "",
 	"No distance available": "",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "管理员拥有所有工具的访问权限;用户则需在工作空间中为每个模型单独分配工具。",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "管理员拥有所有工具的访问权限;用户则需在工作空间中为每个模型单独分配工具。",
 	"Advanced Parameters": "高级参数",
 	"Advanced Parameters": "高级参数",
 	"Advanced Params": "高级参数",
 	"Advanced Params": "高级参数",
-	"All chats": "所有对话",
 	"All Documents": "所有文档",
 	"All Documents": "所有文档",
 	"All models deleted successfully": "所有模型删除成功",
 	"All models deleted successfully": "所有模型删除成功",
 	"Allow Chat Delete": "允许删除对话记录",
 	"Allow Chat Delete": "允许删除对话记录",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "归档所有对话记录",
 	"Archive All Chats": "归档所有对话记录",
 	"Archived Chats": "已归档对话",
 	"Archived Chats": "已归档对话",
 	"archived-chat-export": "导出已归档对话",
 	"archived-chat-export": "导出已归档对话",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "是否确认取消所有已归档的对话?",
 	"Are you sure you want to unarchive all archived chats?": "是否确认取消所有已归档的对话?",
 	"Are you sure?": "是否确定?",
 	"Are you sure?": "是否确定?",
 	"Arena Models": "启用竞技场匿名评价模型",
 	"Arena Models": "启用竞技场匿名评价模型",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "批大小 (num_batch)",
 	"Batch Size (num_batch)": "批大小 (num_batch)",
 	"before": "对话",
 	"before": "对话",
 	"Being lazy": "懒惰",
 	"Being lazy": "懒惰",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "Bing 搜索 V7 Endpoint",
 	"Bing Search V7 Endpoint": "Bing 搜索 V7 Endpoint",
 	"Bing Search V7 Subscription Key": "Bing 搜索 V7 订阅密钥",
 	"Bing Search V7 Subscription Key": "Bing 搜索 V7 订阅密钥",
 	"Brave Search API Key": "Brave Search API 密钥",
 	"Brave Search API Key": "Brave Search API 密钥",
@@ -122,6 +124,8 @@
 	"Capture": "捕获",
 	"Capture": "捕获",
 	"Certificate Path": "证书路径",
 	"Certificate Path": "证书路径",
 	"Change Password": "更改密码",
 	"Change Password": "更改密码",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "字符",
 	"Character": "字符",
 	"Character limit for autocomplete generation input": "自动完成生成输入的字符限制",
 	"Character limit for autocomplete generation input": "自动完成生成输入的字符限制",
 	"Chart new frontiers": "开拓新领域",
 	"Chart new frontiers": "开拓新领域",
@@ -204,6 +208,7 @@
 	"Create a model": "创建一个模型",
 	"Create a model": "创建一个模型",
 	"Create Account": "创建账号",
 	"Create Account": "创建账号",
 	"Create Admin Account": "创建管理员账号",
 	"Create Admin Account": "创建管理员账号",
+	"Create Channel": "",
 	"Create Group": "创建权限组",
 	"Create Group": "创建权限组",
 	"Create Knowledge": "创建知识",
 	"Create Knowledge": "创建知识",
 	"Create new key": "创建新密钥",
 	"Create new key": "创建新密钥",
@@ -239,6 +244,7 @@
 	"Delete chat?": "删除对话记录?",
 	"Delete chat?": "删除对话记录?",
 	"Delete folder?": "删除分组?",
 	"Delete folder?": "删除分组?",
 	"Delete function?": "删除函数?",
 	"Delete function?": "删除函数?",
+	"Delete Message": "",
 	"Delete prompt?": "删除提示词?",
 	"Delete prompt?": "删除提示词?",
 	"delete this link": "此处删除这个链接",
 	"delete this link": "此处删除这个链接",
 	"Delete tool?": "删除工具?",
 	"Delete tool?": "删除工具?",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "例如:用于执行各种操作的工具",
 	"e.g. Tools for performing various operations": "例如:用于执行各种操作的工具",
 	"Edit": "编辑",
 	"Edit": "编辑",
 	"Edit Arena Model": "编辑竞技场模型",
 	"Edit Arena Model": "编辑竞技场模型",
+	"Edit Channel": "",
 	"Edit Connection": "编辑连接",
 	"Edit Connection": "编辑连接",
 	"Edit Default Permissions": "编辑默认权限",
 	"Edit Default Permissions": "编辑默认权限",
 	"Edit Memory": "编辑记忆",
 	"Edit Memory": "编辑记忆",
@@ -595,8 +602,8 @@
 	"Name": "名称",
 	"Name": "名称",
 	"Name your knowledge base": "为您的知识库命名",
 	"Name your knowledge base": "为您的知识库命名",
 	"New Chat": "新对话",
 	"New Chat": "新对话",
-	"New folder": "新建分组",
 	"New Password": "新密码",
 	"New Password": "新密码",
+	"new-channel": "",
 	"No content found": "未发现内容",
 	"No content found": "未发现内容",
 	"No content to speak": "没有内容可朗读",
 	"No content to speak": "没有内容可朗读",
 	"No distance available": "没有可用距离",
 	"No distance available": "没有可用距离",

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

@@ -47,7 +47,6 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "管理員可以隨時使用所有工具;使用者則需在工作區中為每個模型分配工具。",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "管理員可以隨時使用所有工具;使用者則需在工作區中為每個模型分配工具。",
 	"Advanced Parameters": "進階參數",
 	"Advanced Parameters": "進階參數",
 	"Advanced Params": "進階參數",
 	"Advanced Params": "進階參數",
-	"All chats": "所有對話",
 	"All Documents": "所有文件",
 	"All Documents": "所有文件",
 	"All models deleted successfully": "成功刪除所有模型",
 	"All models deleted successfully": "成功刪除所有模型",
 	"Allow Chat Delete": "允許刪除對話",
 	"Allow Chat Delete": "允許刪除對話",
@@ -77,6 +76,8 @@
 	"Archive All Chats": "封存所有對話紀錄",
 	"Archive All Chats": "封存所有對話紀錄",
 	"Archived Chats": "封存的對話紀錄",
 	"Archived Chats": "封存的對話紀錄",
 	"archived-chat-export": "archived-chat-export",
 	"archived-chat-export": "archived-chat-export",
+	"Are you sure you want to delete this channel?": "",
+	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "您確定要解除封存所有封存的對話記錄嗎?",
 	"Are you sure you want to unarchive all archived chats?": "您確定要解除封存所有封存的對話記錄嗎?",
 	"Are you sure?": "您確定嗎?",
 	"Are you sure?": "您確定嗎?",
 	"Arena Models": "競技模型",
 	"Arena Models": "競技模型",
@@ -109,6 +110,7 @@
 	"Batch Size (num_batch)": "批次大小(num_batch)",
 	"Batch Size (num_batch)": "批次大小(num_batch)",
 	"before": "之前",
 	"before": "之前",
 	"Being lazy": "懶惰模式",
 	"Being lazy": "懶惰模式",
+	"Beta": "",
 	"Bing Search V7 Endpoint": "Bing 搜尋 V7 端點",
 	"Bing Search V7 Endpoint": "Bing 搜尋 V7 端點",
 	"Bing Search V7 Subscription Key": "Bing 搜尋 V7 訂閱金鑰",
 	"Bing Search V7 Subscription Key": "Bing 搜尋 V7 訂閱金鑰",
 	"Brave Search API Key": "Brave 搜尋 API 金鑰",
 	"Brave Search API Key": "Brave 搜尋 API 金鑰",
@@ -122,6 +124,8 @@
 	"Capture": "擷取",
 	"Capture": "擷取",
 	"Certificate Path": "憑證路徑",
 	"Certificate Path": "憑證路徑",
 	"Change Password": "修改密碼",
 	"Change Password": "修改密碼",
+	"Channel Name": "",
+	"Channels": "",
 	"Character": "角色",
 	"Character": "角色",
 	"Character limit for autocomplete generation input": "自動完成產生輸入的字元限制",
 	"Character limit for autocomplete generation input": "自動完成產生輸入的字元限制",
 	"Chart new frontiers": "探索新領域",
 	"Chart new frontiers": "探索新領域",
@@ -204,6 +208,7 @@
 	"Create a model": "建立模型",
 	"Create a model": "建立模型",
 	"Create Account": "建立帳號",
 	"Create Account": "建立帳號",
 	"Create Admin Account": "建立管理員賬號",
 	"Create Admin Account": "建立管理員賬號",
+	"Create Channel": "",
 	"Create Group": "建立群組",
 	"Create Group": "建立群組",
 	"Create Knowledge": "建立知識",
 	"Create Knowledge": "建立知識",
 	"Create new key": "建立新的金鑰",
 	"Create new key": "建立新的金鑰",
@@ -239,6 +244,7 @@
 	"Delete chat?": "刪除對話紀錄?",
 	"Delete chat?": "刪除對話紀錄?",
 	"Delete folder?": "刪除資料夾?",
 	"Delete folder?": "刪除資料夾?",
 	"Delete function?": "刪除函式?",
 	"Delete function?": "刪除函式?",
+	"Delete Message": "",
 	"Delete prompt?": "刪除提示詞?",
 	"Delete prompt?": "刪除提示詞?",
 	"delete this link": "刪除此連結",
 	"delete this link": "刪除此連結",
 	"Delete tool?": "刪除工具?",
 	"Delete tool?": "刪除工具?",
@@ -291,6 +297,7 @@
 	"e.g. Tools for performing various operations": "例如:用於執行各種操作的工具",
 	"e.g. Tools for performing various operations": "例如:用於執行各種操作的工具",
 	"Edit": "編輯",
 	"Edit": "編輯",
 	"Edit Arena Model": "編輯競技模型",
 	"Edit Arena Model": "編輯競技模型",
+	"Edit Channel": "",
 	"Edit Connection": "編輯連線",
 	"Edit Connection": "編輯連線",
 	"Edit Default Permissions": "編輯預設權限",
 	"Edit Default Permissions": "編輯預設權限",
 	"Edit Memory": "編輯記憶",
 	"Edit Memory": "編輯記憶",
@@ -595,8 +602,8 @@
 	"Name": "名稱",
 	"Name": "名稱",
 	"Name your knowledge base": "命名您的知識庫",
 	"Name your knowledge base": "命名您的知識庫",
 	"New Chat": "新增對話",
 	"New Chat": "新增對話",
-	"New folder": "新增資料夾",
 	"New Password": "新密碼",
 	"New Password": "新密碼",
+	"new-channel": "",
 	"No content found": "找不到內容",
 	"No content found": "找不到內容",
 	"No content to speak": "無可朗讀的內容",
 	"No content to speak": "無可朗讀的內容",
 	"No distance available": "無可用距離",
 	"No distance available": "無可用距離",

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

@@ -23,7 +23,6 @@ export const theme = writable('system');
 export const chatId = writable('');
 export const chatId = writable('');
 export const chatTitle = writable('');
 export const chatTitle = writable('');
 
 
-
 export const channels = writable([]);
 export const channels = writable([]);
 export const chats = writable([]);
 export const chats = writable([]);
 export const pinnedChats = writable([]);
 export const pinnedChats = writable([]);