From 352391fa76a42384963753f9d5b6ec1bdb37930d Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Sun, 8 Mar 2026 18:14:09 -0500 Subject: [PATCH] chore: format --- backend/open_webui/config.py | 13 +++++-- backend/open_webui/retrieval/utils.py | 8 +++- .../retrieval/vector/dbs/mariadb_vector.py | 39 ++++++++++++++----- .../open_webui/retrieval/vector/factory.py | 4 +- backend/open_webui/routers/files.py | 1 + backend/open_webui/routers/ollama.py | 4 +- backend/open_webui/utils/oauth.py | 4 +- backend/open_webui/utils/task.py | 8 +--- backend/open_webui/utils/webhook.py | 3 +- .../MessageInput/QueuedMessageItem.svelte | 14 +++---- src/lib/i18n/locales/ar-BH/translation.json | 1 + src/lib/i18n/locales/ar/translation.json | 1 + src/lib/i18n/locales/bg-BG/translation.json | 1 + src/lib/i18n/locales/bn-BD/translation.json | 1 + src/lib/i18n/locales/bo-TB/translation.json | 1 + src/lib/i18n/locales/bs-BA/translation.json | 1 + src/lib/i18n/locales/ca-ES/translation.json | 1 + src/lib/i18n/locales/ceb-PH/translation.json | 1 + src/lib/i18n/locales/cs-CZ/translation.json | 1 + src/lib/i18n/locales/da-DK/translation.json | 1 + src/lib/i18n/locales/de-DE/translation.json | 1 + src/lib/i18n/locales/dg-DG/translation.json | 1 + src/lib/i18n/locales/el-GR/translation.json | 1 + src/lib/i18n/locales/en-GB/translation.json | 1 + src/lib/i18n/locales/en-US/translation.json | 1 + src/lib/i18n/locales/es-ES/translation.json | 1 + src/lib/i18n/locales/et-EE/translation.json | 1 + src/lib/i18n/locales/eu-ES/translation.json | 1 + src/lib/i18n/locales/fa-IR/translation.json | 1 + src/lib/i18n/locales/fi-FI/translation.json | 1 + src/lib/i18n/locales/fr-CA/translation.json | 1 + src/lib/i18n/locales/fr-FR/translation.json | 1 + src/lib/i18n/locales/gl-ES/translation.json | 1 + src/lib/i18n/locales/he-IL/translation.json | 1 + src/lib/i18n/locales/hi-IN/translation.json | 1 + src/lib/i18n/locales/hr-HR/translation.json | 1 + src/lib/i18n/locales/hu-HU/translation.json | 1 + src/lib/i18n/locales/id-ID/translation.json | 1 + src/lib/i18n/locales/ie-GA/translation.json | 1 + src/lib/i18n/locales/it-IT/translation.json | 1 + src/lib/i18n/locales/ja-JP/translation.json | 1 + src/lib/i18n/locales/ka-GE/translation.json | 1 + src/lib/i18n/locales/kab-DZ/translation.json | 1 + src/lib/i18n/locales/ko-KR/translation.json | 1 + src/lib/i18n/locales/lt-LT/translation.json | 1 + src/lib/i18n/locales/lv-LV/translation.json | 1 + src/lib/i18n/locales/ms-MY/translation.json | 1 + src/lib/i18n/locales/nb-NO/translation.json | 1 + src/lib/i18n/locales/nl-NL/translation.json | 1 + src/lib/i18n/locales/pa-IN/translation.json | 1 + src/lib/i18n/locales/pl-PL/translation.json | 1 + src/lib/i18n/locales/pt-BR/translation.json | 1 + src/lib/i18n/locales/pt-PT/translation.json | 1 + src/lib/i18n/locales/ro-RO/translation.json | 1 + src/lib/i18n/locales/ru-RU/translation.json | 1 + src/lib/i18n/locales/sk-SK/translation.json | 1 + src/lib/i18n/locales/sr-RS/translation.json | 1 + src/lib/i18n/locales/sv-SE/translation.json | 1 + src/lib/i18n/locales/th-TH/translation.json | 1 + src/lib/i18n/locales/tk-TM/translation.json | 1 + src/lib/i18n/locales/tr-TR/translation.json | 1 + src/lib/i18n/locales/ug-CN/translation.json | 1 + src/lib/i18n/locales/uk-UA/translation.json | 1 + src/lib/i18n/locales/ur-PK/translation.json | 1 + .../i18n/locales/uz-Cyrl-UZ/translation.json | 1 + .../i18n/locales/uz-Latn-Uz/translation.json | 1 + src/lib/i18n/locales/vi-VN/translation.json | 1 + src/lib/i18n/locales/zh-CN/translation.json | 1 + src/lib/i18n/locales/zh-TW/translation.json | 1 + 69 files changed, 124 insertions(+), 33 deletions(-) diff --git a/backend/open_webui/config.py b/backend/open_webui/config.py index 79421874eb..fb313e2785 100644 --- a/backend/open_webui/config.py +++ b/backend/open_webui/config.py @@ -850,7 +850,11 @@ def load_oauth_providers(): if FEISHU_CLIENT_ID.value: configured_providers.append("Feishu") - if configured_providers and not OPENID_PROVIDER_URL.value and not OPENID_END_SESSION_ENDPOINT.value: + if ( + configured_providers + and not OPENID_PROVIDER_URL.value + and not OPENID_END_SESSION_ENDPOINT.value + ): provider_list = ", ".join(configured_providers) log.warning( f"⚠️ OAuth providers configured ({provider_list}) but OPENID_PROVIDER_URL not set - logout will not work!" @@ -2371,7 +2375,8 @@ if VECTOR_DB == "chroma": MARIADB_VECTOR_DB_URL = os.environ.get("MARIADB_VECTOR_DB_URL", "").strip() MARIADB_VECTOR_INITIALIZE_MAX_VECTOR_LENGTH = int( - os.environ.get("MARIADB_VECTOR_INITIALIZE_MAX_VECTOR_LENGTH", "1536").strip() or "1536" + os.environ.get("MARIADB_VECTOR_INITIALIZE_MAX_VECTOR_LENGTH", "1536").strip() + or "1536" ) # Distance strategy: @@ -2382,7 +2387,9 @@ MARIADB_VECTOR_DISTANCE_STRATEGY = ( ) # HNSW M parameter (MariaDB VECTOR INDEX ... M=) -MARIADB_VECTOR_INDEX_M = int(os.environ.get("MARIADB_VECTOR_INDEX_M", "8").strip() or "8") +MARIADB_VECTOR_INDEX_M = int( + os.environ.get("MARIADB_VECTOR_INDEX_M", "8").strip() or "8" +) # Pooling (MariaDB-Vector) MARIADB_VECTOR_POOL_SIZE = os.environ.get("MARIADB_VECTOR_POOL_SIZE", None) diff --git a/backend/open_webui/retrieval/utils.py b/backend/open_webui/retrieval/utils.py index e19563861b..5030a6eecb 100644 --- a/backend/open_webui/retrieval/utils.py +++ b/backend/open_webui/retrieval/utils.py @@ -590,7 +590,9 @@ def generate_openai_batch_embeddings( if "data" in data: return [elem["embedding"] for elem in data["data"]] else: - raise ValueError("Unexpected OpenAI embeddings response: missing 'data' key") + raise ValueError( + "Unexpected OpenAI embeddings response: missing 'data' key" + ) except Exception as e: log.exception(f"Error generating openai batch embeddings: {e}") return None @@ -767,7 +769,9 @@ def generate_ollama_batch_embeddings( if "embeddings" in data: return data["embeddings"] else: - raise ValueError("Unexpected Ollama embeddings response: missing 'embeddings' key") + raise ValueError( + "Unexpected Ollama embeddings response: missing 'embeddings' key" + ) except Exception as e: log.exception(f"Error generating ollama batch embeddings: {e}") return None diff --git a/backend/open_webui/retrieval/vector/dbs/mariadb_vector.py b/backend/open_webui/retrieval/vector/dbs/mariadb_vector.py index 06d11adec6..b1b8996263 100644 --- a/backend/open_webui/retrieval/vector/dbs/mariadb_vector.py +++ b/backend/open_webui/retrieval/vector/dbs/mariadb_vector.py @@ -22,7 +22,12 @@ from open_webui.config import ( MARIADB_VECTOR_POOL_TIMEOUT, MARIADB_VECTOR_POOL_RECYCLE, ) -from open_webui.retrieval.vector.main import GetResult, SearchResult, VectorDBBase, VectorItem +from open_webui.retrieval.vector.main import ( + GetResult, + SearchResult, + VectorDBBase, + VectorItem, +) from open_webui.retrieval.vector.utils import process_metadata log = logging.getLogger(__name__) @@ -157,8 +162,7 @@ class MariaDBVectorClient(VectorDBBase): with conn.cursor() as cur: try: dist = self.distance_strategy - cur.execute( - f""" + cur.execute(f""" CREATE TABLE IF NOT EXISTS document_chunk ( -- MariaDB Vector requires the table PRIMARY KEY used with a VECTOR INDEX to be <= 256 bytes. -- VARCHAR has internal length/metadata overhead, so VARCHAR(255) can exceed the 256-byte limit. @@ -173,8 +177,7 @@ class MariaDBVectorClient(VectorDBBase): VECTOR INDEX (embedding) M={self.index_m} DISTANCE={dist}, INDEX idx_document_chunk_collection_name (collection_name) ) ENGINE=InnoDB; - """ - ) + """) conn.commit() except Exception as e: conn.rollback() @@ -220,7 +223,11 @@ class MariaDBVectorClient(VectorDBBase): """ Return the MariaDB Vector distance function name for the configured strategy. """ - return "vec_distance_cosine" if self.distance_strategy == "cosine" else "vec_distance_euclidean" + return ( + "vec_distance_cosine" + if self.distance_strategy == "cosine" + else "vec_distance_euclidean" + ) def _score_from_dist(self, dist: float) -> float: """ @@ -442,12 +449,19 @@ class MariaDBVectorClient(VectorDBBase): documents[q_idx].append(rtext) metadatas[q_idx].append(_safe_json(rmeta)) - return SearchResult(ids=ids, distances=distances, documents=documents, metadatas=metadatas) + return SearchResult( + ids=ids, + distances=distances, + documents=documents, + metadatas=metadatas, + ) except Exception as e: log.exception(f"[MARIADB_VECTOR] search() failed: {e}") return None - def query(self, collection_name: str, filter: Dict[str, Any], limit: Optional[int] = None) -> Optional[GetResult]: + def query( + self, collection_name: str, filter: Dict[str, Any], limit: Optional[int] = None + ) -> Optional[GetResult]: """ Retrieve documents by metadata filter (non-vector query). """ @@ -472,7 +486,9 @@ class MariaDBVectorClient(VectorDBBase): metadatas = [[_safe_json(r[2]) for r in rows]] return GetResult(ids=ids, documents=documents, metadatas=metadatas) - def get(self, collection_name: str, limit: Optional[int] = None) -> Optional[GetResult]: + def get( + self, collection_name: str, limit: Optional[int] = None + ) -> Optional[GetResult]: """ Retrieve documents in a collection without filtering (optionally limited). """ @@ -549,7 +565,10 @@ class MariaDBVectorClient(VectorDBBase): try: with self._connect() as conn: with conn.cursor() as cur: - cur.execute("SELECT 1 FROM document_chunk WHERE collection_name = ? LIMIT 1", (collection_name,)) + cur.execute( + "SELECT 1 FROM document_chunk WHERE collection_name = ? LIMIT 1", + (collection_name,), + ) return cur.fetchone() is not None except Exception: return False diff --git a/backend/open_webui/retrieval/vector/factory.py b/backend/open_webui/retrieval/vector/factory.py index f1ead76d84..d92b335864 100644 --- a/backend/open_webui/retrieval/vector/factory.py +++ b/backend/open_webui/retrieval/vector/factory.py @@ -58,7 +58,9 @@ class Vector: return OpenGaussClient() case VectorType.MARIADB_VECTOR: - from open_webui.retrieval.vector.dbs.mariadb_vector import MariaDBVectorClient + from open_webui.retrieval.vector.dbs.mariadb_vector import ( + MariaDBVectorClient, + ) return MariaDBVectorClient() case VectorType.ELASTICSEARCH: diff --git a/backend/open_webui/routers/files.py b/backend/open_webui/routers/files.py index 6e3271d7ec..15eb817703 100644 --- a/backend/open_webui/routers/files.py +++ b/backend/open_webui/routers/files.py @@ -583,6 +583,7 @@ def update_file_data_content_by_id( request, ProcessFileForm(file_id=id, content=form_data.content), user=user, + db=db, ) file = Files.get_file_by_id(id=id, db=db) except Exception as e: diff --git a/backend/open_webui/routers/ollama.py b/backend/open_webui/routers/ollama.py index f1170b8f88..14ff55b109 100644 --- a/backend/open_webui/routers/ollama.py +++ b/backend/open_webui/routers/ollama.py @@ -1747,7 +1747,9 @@ async def download_file_stream( yield f"data: {json.dumps(res)}\n\n" else: - raise RuntimeError("Ollama: Could not create blob, Please try again.") + raise RuntimeError( + "Ollama: Could not create blob, Please try again." + ) # url = "https://huggingface.co/TheBloke/stablelm-zephyr-3b-GGUF/resolve/main/stablelm-zephyr-3b.Q2_K.gguf" diff --git a/backend/open_webui/utils/oauth.py b/backend/open_webui/utils/oauth.py index 4b6568bee7..636ad957d7 100644 --- a/backend/open_webui/utils/oauth.py +++ b/backend/open_webui/utils/oauth.py @@ -1706,7 +1706,9 @@ class OAuthManager: redirect_url = f"{redirect_base_url}/auth" if error_message: - redirect_url = f"{redirect_url}?error={urllib.parse.quote_plus(error_message)}" + redirect_url = ( + f"{redirect_url}?error={urllib.parse.quote_plus(error_message)}" + ) return RedirectResponse(url=redirect_url, headers=response.headers) response = RedirectResponse(url=redirect_url, headers=response.headers) diff --git a/backend/open_webui/utils/task.py b/backend/open_webui/utils/task.py index f5177eb787..0ea525c93e 100644 --- a/backend/open_webui/utils/task.py +++ b/backend/open_webui/utils/task.py @@ -162,9 +162,7 @@ def truncate_content(content: str, max_chars: int, mode: str = "middletruncate") return f"{content[:half]}...{content[-(max_chars - half):]}" -def apply_content_filter( - messages: list[dict], filter_str: str -) -> list[dict]: +def apply_content_filter(messages: list[dict], filter_str: str) -> list[dict]: """Apply a content filter to each message's content. filter_str is like 'middletruncate:500', 'start:200', or 'end:200'. @@ -238,9 +236,7 @@ def replace_messages_variable( else: half = mid // 2 start_msgs = messages[:half] - end_msgs = ( - messages[-half:] if mid % 2 == 0 else messages[-(half + 1) :] - ) + end_msgs = messages[-half:] if mid % 2 == 0 else messages[-(half + 1) :] selected = start_msgs + end_msgs content_filter = middle_filter else: diff --git a/backend/open_webui/utils/webhook.py b/backend/open_webui/utils/webhook.py index 62d35f299f..b3a3c6bcd1 100644 --- a/backend/open_webui/utils/webhook.py +++ b/backend/open_webui/utils/webhook.py @@ -32,8 +32,7 @@ async def post_webhook(name: str, url: str, message: str, event_data: dict) -> b else: user_dict = json.loads(user_data) facts = [ - {"name": name, "value": value} - for name, value in user_dict.items() + {"name": name, "value": value} for name, value in user_dict.items() ] payload = { "@type": "MessageCard", diff --git a/src/lib/components/chat/MessageInput/QueuedMessageItem.svelte b/src/lib/components/chat/MessageInput/QueuedMessageItem.svelte index d1c9850743..ed0adce37e 100644 --- a/src/lib/components/chat/MessageInput/QueuedMessageItem.svelte +++ b/src/lib/components/chat/MessageInput/QueuedMessageItem.svelte @@ -33,13 +33,11 @@ file.url?.startsWith('data') || file.url?.startsWith('http') ? file.url : `${WEBUI_API_BASE_URL}/files/${file.url}${file?.content_type ? '/content' : ''}`} - + {:else} -
+
{file.name ?? 'file'}
{/if} @@ -50,7 +48,9 @@ {#if content}

{content}

{:else if files.length === 0} -

{$i18n.t('Empty message')}

+

+ {$i18n.t('Empty message')} +

{/if}
diff --git a/src/lib/i18n/locales/ar-BH/translation.json b/src/lib/i18n/locales/ar-BH/translation.json index dff6be6fe7..8c940b7a24 100644 --- a/src/lib/i18n/locales/ar-BH/translation.json +++ b/src/lib/i18n/locales/ar-BH/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "نموذج التضمين", "Embedding Model Engine": "تضمين محرك النموذج", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "", diff --git a/src/lib/i18n/locales/ar/translation.json b/src/lib/i18n/locales/ar/translation.json index c98f286a19..db010bd2f0 100644 --- a/src/lib/i18n/locales/ar/translation.json +++ b/src/lib/i18n/locales/ar/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "نموذج التضمين", "Embedding Model Engine": "تضمين محرك النموذج", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "تفعيل توليد الإكمال التلقائي لرسائل الدردشة", diff --git a/src/lib/i18n/locales/bg-BG/translation.json b/src/lib/i18n/locales/bg-BG/translation.json index 9d1d0ec7a1..7d5b9cacf8 100644 --- a/src/lib/i18n/locales/bg-BG/translation.json +++ b/src/lib/i18n/locales/bg-BG/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Модел за вграждане", "Embedding Model Engine": "Двигател на модела за вграждане", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "Активиране на автоматично довършване на съобщения в чата", diff --git a/src/lib/i18n/locales/bn-BD/translation.json b/src/lib/i18n/locales/bn-BD/translation.json index df3b6aaea8..f5c7bef4ad 100644 --- a/src/lib/i18n/locales/bn-BD/translation.json +++ b/src/lib/i18n/locales/bn-BD/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "ইমেজ ইমেবডিং মডেল", "Embedding Model Engine": "ইমেজ ইমেবডিং মডেল ইঞ্জিন", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "", diff --git a/src/lib/i18n/locales/bo-TB/translation.json b/src/lib/i18n/locales/bo-TB/translation.json index 6a4fe45090..768a0de0ca 100644 --- a/src/lib/i18n/locales/bo-TB/translation.json +++ b/src/lib/i18n/locales/bo-TB/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "ཚུད་འཇུག་དཔེ་དབྱིབས།", "Embedding Model Engine": "ཚུད་འཇུག་དཔེ་དབྱིབས་འཕྲུལ་འཁོར།", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "ཁ་བརྡའི་འཕྲིན་ཡིག་གི་ཆེད་དུ་རང་འཚང་བཟོ་སྐྲུན་སྒུལ་བསྐྱོད་བྱེད་པ།", diff --git a/src/lib/i18n/locales/bs-BA/translation.json b/src/lib/i18n/locales/bs-BA/translation.json index a62d7e5d24..1b694a5478 100644 --- a/src/lib/i18n/locales/bs-BA/translation.json +++ b/src/lib/i18n/locales/bs-BA/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Embedding model", "Embedding Model Engine": "Embedding model pogon", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "", diff --git a/src/lib/i18n/locales/ca-ES/translation.json b/src/lib/i18n/locales/ca-ES/translation.json index 89228d5a78..9b297744ed 100644 --- a/src/lib/i18n/locales/ca-ES/translation.json +++ b/src/lib/i18n/locales/ca-ES/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "Peticions concurrents d'incrustació", "Embedding Model": "Model d'incrustació", "Embedding Model Engine": "Motor de model d'incrustació", + "Empty message": "", "Enable All": "Habilitar tot", "Enable API Keys": "Permetre claus API", "Enable autocomplete generation for chat messages": "Activar la generació automàtica per als missatges del xat", diff --git a/src/lib/i18n/locales/ceb-PH/translation.json b/src/lib/i18n/locales/ceb-PH/translation.json index b0ff5202f2..eed49b3f14 100644 --- a/src/lib/i18n/locales/ceb-PH/translation.json +++ b/src/lib/i18n/locales/ceb-PH/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "", "Embedding Model Engine": "", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "", diff --git a/src/lib/i18n/locales/cs-CZ/translation.json b/src/lib/i18n/locales/cs-CZ/translation.json index 8941640667..f8c4ea4007 100644 --- a/src/lib/i18n/locales/cs-CZ/translation.json +++ b/src/lib/i18n/locales/cs-CZ/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Model pro vektorizaci", "Embedding Model Engine": "Jádro modelu pro vektorizaci", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "Povolit generování automatického dokončování pro zprávy v konverzaci", diff --git a/src/lib/i18n/locales/da-DK/translation.json b/src/lib/i18n/locales/da-DK/translation.json index 27e62191dc..343a79c33c 100644 --- a/src/lib/i18n/locales/da-DK/translation.json +++ b/src/lib/i18n/locales/da-DK/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Embedding Model", "Embedding Model Engine": "Embedding Model engine", + "Empty message": "", "Enable All": "", "Enable API Keys": "Aktiver API nøgler", "Enable autocomplete generation for chat messages": "Aktiver autofuldførsel for chatbeskeder", diff --git a/src/lib/i18n/locales/de-DE/translation.json b/src/lib/i18n/locales/de-DE/translation.json index 673bcaaba4..672f451bcf 100644 --- a/src/lib/i18n/locales/de-DE/translation.json +++ b/src/lib/i18n/locales/de-DE/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "Gleichzeitige Embedding Anfragen", "Embedding Model": "Embedding-Modell", "Embedding Model Engine": "Embedding-Modell-Engine", + "Empty message": "", "Enable All": "Alle aktivieren", "Enable API Keys": "API-Schlüssel aktivieren", "Enable autocomplete generation for chat messages": "Autovervollständigung für Chat-Nachrichten aktivieren", diff --git a/src/lib/i18n/locales/dg-DG/translation.json b/src/lib/i18n/locales/dg-DG/translation.json index 8774cee65e..11ebfa8b75 100644 --- a/src/lib/i18n/locales/dg-DG/translation.json +++ b/src/lib/i18n/locales/dg-DG/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "", "Embedding Model Engine": "", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "", diff --git a/src/lib/i18n/locales/el-GR/translation.json b/src/lib/i18n/locales/el-GR/translation.json index 21441dc201..d017f2531e 100644 --- a/src/lib/i18n/locales/el-GR/translation.json +++ b/src/lib/i18n/locales/el-GR/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Μοντέλο Ενσωμάτωσης", "Embedding Model Engine": "Μηχανή Μοντέλου Ενσωμάτωσης", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "Ενεργοποίηση αυτόματης συμπλήρωσης για συνομιλίες", diff --git a/src/lib/i18n/locales/en-GB/translation.json b/src/lib/i18n/locales/en-GB/translation.json index 06b8ac6a1c..8738a4e69a 100644 --- a/src/lib/i18n/locales/en-GB/translation.json +++ b/src/lib/i18n/locales/en-GB/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "", "Embedding Model Engine": "", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "", diff --git a/src/lib/i18n/locales/en-US/translation.json b/src/lib/i18n/locales/en-US/translation.json index 77d52c6446..40b81d8712 100644 --- a/src/lib/i18n/locales/en-US/translation.json +++ b/src/lib/i18n/locales/en-US/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "", "Embedding Model Engine": "", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "", diff --git a/src/lib/i18n/locales/es-ES/translation.json b/src/lib/i18n/locales/es-ES/translation.json index 76765f0047..4b8b8ac5d6 100644 --- a/src/lib/i18n/locales/es-ES/translation.json +++ b/src/lib/i18n/locales/es-ES/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "Número de Peticiones Concurrentes en Incrustración", "Embedding Model": "Modelo de Incrustación", "Embedding Model Engine": "Motor del Modelo de Incrustación", + "Empty message": "", "Enable All": "Habilitar Todo", "Enable API Keys": "Habilitar Claves API", "Enable autocomplete generation for chat messages": "Habilitar generación de autocompletado para mensajes de chat", diff --git a/src/lib/i18n/locales/et-EE/translation.json b/src/lib/i18n/locales/et-EE/translation.json index 535e195b29..a6827ff48a 100644 --- a/src/lib/i18n/locales/et-EE/translation.json +++ b/src/lib/i18n/locales/et-EE/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Manustamise mudel", "Embedding Model Engine": "Manustamise mudeli mootor", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "Luba automaattäitmise genereerimine vestlussõnumitele", diff --git a/src/lib/i18n/locales/eu-ES/translation.json b/src/lib/i18n/locales/eu-ES/translation.json index d46fe503b7..acac50bbda 100644 --- a/src/lib/i18n/locales/eu-ES/translation.json +++ b/src/lib/i18n/locales/eu-ES/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Embedding Eredua", "Embedding Model Engine": "Embedding Eredu Motorea", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "", diff --git a/src/lib/i18n/locales/fa-IR/translation.json b/src/lib/i18n/locales/fa-IR/translation.json index f01fb5f7a5..c14f225200 100644 --- a/src/lib/i18n/locales/fa-IR/translation.json +++ b/src/lib/i18n/locales/fa-IR/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "مدل پیدائش", "Embedding Model Engine": "محرک مدل پیدائش", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "فعال\u200cسازی تولید تکمیل خودکار برای پیام\u200cهای چت", diff --git a/src/lib/i18n/locales/fi-FI/translation.json b/src/lib/i18n/locales/fi-FI/translation.json index a3a549fba2..f2297cdc6a 100644 --- a/src/lib/i18n/locales/fi-FI/translation.json +++ b/src/lib/i18n/locales/fi-FI/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "Samanaikaiset upotuspyynnöt", "Embedding Model": "Upotusmalli", "Embedding Model Engine": "Upotusmallin moottori", + "Empty message": "", "Enable All": "Ota kaikki käyttöön", "Enable API Keys": "Ota API-avaimet käyttöön", "Enable autocomplete generation for chat messages": "Ota automaattinen täydennys käyttöön keskusteluviesteissä", diff --git a/src/lib/i18n/locales/fr-CA/translation.json b/src/lib/i18n/locales/fr-CA/translation.json index 903522f047..66df34c8f7 100644 --- a/src/lib/i18n/locales/fr-CA/translation.json +++ b/src/lib/i18n/locales/fr-CA/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Modèle d'embedding", "Embedding Model Engine": "Moteur de modèle d'embedding", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "Activer la génération des suggestions pour les messages", diff --git a/src/lib/i18n/locales/fr-FR/translation.json b/src/lib/i18n/locales/fr-FR/translation.json index a226b43bc5..9b31e6901a 100644 --- a/src/lib/i18n/locales/fr-FR/translation.json +++ b/src/lib/i18n/locales/fr-FR/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Modèle d'embedding", "Embedding Model Engine": "Moteur de modèle d'embedding", + "Empty message": "", "Enable All": "Activer tout", "Enable API Keys": "Autoriser les clés API", "Enable autocomplete generation for chat messages": "Activer la génération des suggestions pour les messages", diff --git a/src/lib/i18n/locales/gl-ES/translation.json b/src/lib/i18n/locales/gl-ES/translation.json index 63b37f9391..e2425db491 100644 --- a/src/lib/i18n/locales/gl-ES/translation.json +++ b/src/lib/i18n/locales/gl-ES/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Modelo de Embedding", "Embedding Model Engine": "Motor de Modelo de Embedding", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "Habilitar xeneración de autocompletado para mensaxes de chat", diff --git a/src/lib/i18n/locales/he-IL/translation.json b/src/lib/i18n/locales/he-IL/translation.json index ab44c359e8..b8a360efac 100644 --- a/src/lib/i18n/locales/he-IL/translation.json +++ b/src/lib/i18n/locales/he-IL/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "מודל הטמעה", "Embedding Model Engine": "מנוע מודל הטמעה", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "", diff --git a/src/lib/i18n/locales/hi-IN/translation.json b/src/lib/i18n/locales/hi-IN/translation.json index 54938dabca..c3894c9546 100644 --- a/src/lib/i18n/locales/hi-IN/translation.json +++ b/src/lib/i18n/locales/hi-IN/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "मॉडेल अनुकूलन", "Embedding Model Engine": "एंबेडिंग मॉडल इंजन", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "", diff --git a/src/lib/i18n/locales/hr-HR/translation.json b/src/lib/i18n/locales/hr-HR/translation.json index 5bacffb41f..f60e902a1f 100644 --- a/src/lib/i18n/locales/hr-HR/translation.json +++ b/src/lib/i18n/locales/hr-HR/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Embedding model", "Embedding Model Engine": "Embedding model pogon", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "", diff --git a/src/lib/i18n/locales/hu-HU/translation.json b/src/lib/i18n/locales/hu-HU/translation.json index da7cdd4481..9485825248 100644 --- a/src/lib/i18n/locales/hu-HU/translation.json +++ b/src/lib/i18n/locales/hu-HU/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Beágyazási modell", "Embedding Model Engine": "Beágyazási modell motor", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "Automatikus kiegészítés engedélyezése csevegőüzenetekhez", diff --git a/src/lib/i18n/locales/id-ID/translation.json b/src/lib/i18n/locales/id-ID/translation.json index 2ce4e232bb..d6f1dd0b96 100644 --- a/src/lib/i18n/locales/id-ID/translation.json +++ b/src/lib/i18n/locales/id-ID/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Model Penyematan", "Embedding Model Engine": "Mesin Model Penyematan", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "", diff --git a/src/lib/i18n/locales/ie-GA/translation.json b/src/lib/i18n/locales/ie-GA/translation.json index e12c645495..dcc43a8475 100644 --- a/src/lib/i18n/locales/ie-GA/translation.json +++ b/src/lib/i18n/locales/ie-GA/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "Iarratais Chomhuaineacha a Leabú", "Embedding Model": "Samhail Leabháilte", "Embedding Model Engine": "Inneall Samhail Leabaithe", + "Empty message": "", "Enable All": "Cumasaigh Gach Rud", "Enable API Keys": "Cumasaigh Eochracha API", "Enable autocomplete generation for chat messages": "Cumasaigh giniúint uathchríochnaithe le haghaidh teachtaireachtaí comhrá", diff --git a/src/lib/i18n/locales/it-IT/translation.json b/src/lib/i18n/locales/it-IT/translation.json index 135cca43b6..2d6bd18226 100644 --- a/src/lib/i18n/locales/it-IT/translation.json +++ b/src/lib/i18n/locales/it-IT/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Modello Embedding", "Embedding Model Engine": "Motore Modello di Embedding", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "Abilita generazione autocompletamento per i messaggi di chat", diff --git a/src/lib/i18n/locales/ja-JP/translation.json b/src/lib/i18n/locales/ja-JP/translation.json index 71a84cbf04..fc52326773 100644 --- a/src/lib/i18n/locales/ja-JP/translation.json +++ b/src/lib/i18n/locales/ja-JP/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "埋め込みモデル", "Embedding Model Engine": "埋め込みモデルエンジン", + "Empty message": "", "Enable All": "", "Enable API Keys": "API キーを有効にする", "Enable autocomplete generation for chat messages": "チャットメッセージの自動補完を有効にする", diff --git a/src/lib/i18n/locales/ka-GE/translation.json b/src/lib/i18n/locales/ka-GE/translation.json index 5775c767e4..d9834853ed 100644 --- a/src/lib/i18n/locales/ka-GE/translation.json +++ b/src/lib/i18n/locales/ka-GE/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "მოდელის ჩაშენება", "Embedding Model Engine": "ჩაშენებული მოდელის ძრავა", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "", diff --git a/src/lib/i18n/locales/kab-DZ/translation.json b/src/lib/i18n/locales/kab-DZ/translation.json index 7132052c02..06dd0559ba 100644 --- a/src/lib/i18n/locales/kab-DZ/translation.json +++ b/src/lib/i18n/locales/kab-DZ/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Tamudemt n ujmak", "Embedding Model Engine": "Amsedday n tmudemt n ujmak", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "Rmed tasuta tawurmant tummidt i udiwenni iznan", diff --git a/src/lib/i18n/locales/ko-KR/translation.json b/src/lib/i18n/locales/ko-KR/translation.json index cd847b89ce..0016d8e2ec 100644 --- a/src/lib/i18n/locales/ko-KR/translation.json +++ b/src/lib/i18n/locales/ko-KR/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "임베딩 모델", "Embedding Model Engine": "임베딩 모델 엔진", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "채팅 메시지에 대한 자동 완성 생성 활성화", diff --git a/src/lib/i18n/locales/lt-LT/translation.json b/src/lib/i18n/locales/lt-LT/translation.json index 8479aa0f6d..69c413b827 100644 --- a/src/lib/i18n/locales/lt-LT/translation.json +++ b/src/lib/i18n/locales/lt-LT/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Embedding modelis", "Embedding Model Engine": "Embedding modelio variklis", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "", diff --git a/src/lib/i18n/locales/lv-LV/translation.json b/src/lib/i18n/locales/lv-LV/translation.json index 07202c58a6..a6b9888ae7 100644 --- a/src/lib/i18n/locales/lv-LV/translation.json +++ b/src/lib/i18n/locales/lv-LV/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Iegulšanas modelis", "Embedding Model Engine": "Iegulšanas modeļa dzinējs", + "Empty message": "", "Enable All": "", "Enable API Keys": "Iespējot API atslēgas", "Enable autocomplete generation for chat messages": "Iespējot automātisko pabeigšanu tērzēšanas ziņojumiem", diff --git a/src/lib/i18n/locales/ms-MY/translation.json b/src/lib/i18n/locales/ms-MY/translation.json index 91340356df..403999ff7d 100644 --- a/src/lib/i18n/locales/ms-MY/translation.json +++ b/src/lib/i18n/locales/ms-MY/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "Permintaan Serentak Pembenaman", "Embedding Model": "Model Benamkan", "Embedding Model Engine": "Enjin Model Benamkan", + "Empty message": "", "Enable All": "Dayakan Semua", "Enable API Keys": "Dayakan Kunci API", "Enable autocomplete generation for chat messages": "Aktifkan penjanaan auto-lengkap untuk mesej sembang", diff --git a/src/lib/i18n/locales/nb-NO/translation.json b/src/lib/i18n/locales/nb-NO/translation.json index b7e521cd93..0691b1aaa5 100644 --- a/src/lib/i18n/locales/nb-NO/translation.json +++ b/src/lib/i18n/locales/nb-NO/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Innbyggingsmodell", "Embedding Model Engine": "Motor for innbygging av modeller", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "Aktiver automatisk utfylling av chatmeldinger", diff --git a/src/lib/i18n/locales/nl-NL/translation.json b/src/lib/i18n/locales/nl-NL/translation.json index 7013db4a44..70661dcb5f 100644 --- a/src/lib/i18n/locales/nl-NL/translation.json +++ b/src/lib/i18n/locales/nl-NL/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Embedding Model", "Embedding Model Engine": "Embedding Model Engine", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "Automatische aanvullingsgeneratie voor chatberichten inschakelen", diff --git a/src/lib/i18n/locales/pa-IN/translation.json b/src/lib/i18n/locales/pa-IN/translation.json index b824faf43d..98ff23a3f8 100644 --- a/src/lib/i18n/locales/pa-IN/translation.json +++ b/src/lib/i18n/locales/pa-IN/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ", "Embedding Model Engine": "ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ ਇੰਜਣ", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "", diff --git a/src/lib/i18n/locales/pl-PL/translation.json b/src/lib/i18n/locales/pl-PL/translation.json index d2420efd8c..d4e3da9a0f 100644 --- a/src/lib/i18n/locales/pl-PL/translation.json +++ b/src/lib/i18n/locales/pl-PL/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Model embeddingów", "Embedding Model Engine": "Silnik modelu embeddingów", + "Empty message": "", "Enable All": "", "Enable API Keys": "Włącz klucze API", "Enable autocomplete generation for chat messages": "Włącz autouzupełnianie w czacie", diff --git a/src/lib/i18n/locales/pt-BR/translation.json b/src/lib/i18n/locales/pt-BR/translation.json index 2333523217..c29dc729ad 100644 --- a/src/lib/i18n/locales/pt-BR/translation.json +++ b/src/lib/i18n/locales/pt-BR/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "Solicitações Simultâneas de Embedding", "Embedding Model": "Modelo de Embedding", "Embedding Model Engine": "Motor do Modelo de Embedding", + "Empty message": "", "Enable All": "Ativar tudo", "Enable API Keys": "Habilitar Chaves de API", "Enable autocomplete generation for chat messages": "Habilitar geração de preenchimento automático para mensagens do chat", diff --git a/src/lib/i18n/locales/pt-PT/translation.json b/src/lib/i18n/locales/pt-PT/translation.json index b45ec49cc1..4fe00e6f67 100644 --- a/src/lib/i18n/locales/pt-PT/translation.json +++ b/src/lib/i18n/locales/pt-PT/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Modelo de Embedding", "Embedding Model Engine": "Motor de Modelo de Embedding", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "", diff --git a/src/lib/i18n/locales/ro-RO/translation.json b/src/lib/i18n/locales/ro-RO/translation.json index 37cc71aa3c..89e6ce06e0 100644 --- a/src/lib/i18n/locales/ro-RO/translation.json +++ b/src/lib/i18n/locales/ro-RO/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Model de Încapsulare", "Embedding Model Engine": "Motor de Model de Încapsulare", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "Activează generarea automată pentru mesajele de chat", diff --git a/src/lib/i18n/locales/ru-RU/translation.json b/src/lib/i18n/locales/ru-RU/translation.json index 99a5189ae0..5b9872d07e 100644 --- a/src/lib/i18n/locales/ru-RU/translation.json +++ b/src/lib/i18n/locales/ru-RU/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Модель встраивания", "Embedding Model Engine": "Движок модели встраивания", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "Включить генерацию автозаполнения для сообщений чата", diff --git a/src/lib/i18n/locales/sk-SK/translation.json b/src/lib/i18n/locales/sk-SK/translation.json index 693e6734fb..b63dbdf47c 100644 --- a/src/lib/i18n/locales/sk-SK/translation.json +++ b/src/lib/i18n/locales/sk-SK/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Vkladací model (Embedding Model)", "Embedding Model Engine": "", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "", diff --git a/src/lib/i18n/locales/sr-RS/translation.json b/src/lib/i18n/locales/sr-RS/translation.json index 2146eec353..ed38bc8da3 100644 --- a/src/lib/i18n/locales/sr-RS/translation.json +++ b/src/lib/i18n/locales/sr-RS/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Модел уградње", "Embedding Model Engine": "Мотор модела уградње", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "", diff --git a/src/lib/i18n/locales/sv-SE/translation.json b/src/lib/i18n/locales/sv-SE/translation.json index 2bd95feb58..86e715140b 100644 --- a/src/lib/i18n/locales/sv-SE/translation.json +++ b/src/lib/i18n/locales/sv-SE/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Inbäddningsmodell", "Embedding Model Engine": "Motor för inbäddningsmodell", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "Aktivera automatisk komplettering av generering för chattmeddelanden", diff --git a/src/lib/i18n/locales/th-TH/translation.json b/src/lib/i18n/locales/th-TH/translation.json index e2b451c7c2..6b8051c1c5 100644 --- a/src/lib/i18n/locales/th-TH/translation.json +++ b/src/lib/i18n/locales/th-TH/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "โมเดล Embedding", "Embedding Model Engine": "เอ็นจินโมเดล Embedding", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "เปิดใช้งานการเติมข้อความอัตโนมัติสำหรับข้อความแชท", diff --git a/src/lib/i18n/locales/tk-TM/translation.json b/src/lib/i18n/locales/tk-TM/translation.json index 651254fa29..2786872cbd 100644 --- a/src/lib/i18n/locales/tk-TM/translation.json +++ b/src/lib/i18n/locales/tk-TM/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "", "Embedding Model Engine": "", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "", diff --git a/src/lib/i18n/locales/tr-TR/translation.json b/src/lib/i18n/locales/tr-TR/translation.json index 9c0d3c9bd6..c442363e68 100644 --- a/src/lib/i18n/locales/tr-TR/translation.json +++ b/src/lib/i18n/locales/tr-TR/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Gömme Modeli", "Embedding Model Engine": "Gömme Modeli Motoru", + "Empty message": "", "Enable All": "Tümünü Etkinleştir", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "Sohbet mesajları için otomatik tamamlama üretimini etkinleştir", diff --git a/src/lib/i18n/locales/ug-CN/translation.json b/src/lib/i18n/locales/ug-CN/translation.json index 3b45c2202c..d5530c937d 100644 --- a/src/lib/i18n/locales/ug-CN/translation.json +++ b/src/lib/i18n/locales/ug-CN/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "سىڭدۈرۈش مودېلى", "Embedding Model Engine": "سىڭدۈرۈش مودېل ماتورى", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "سۆھبەت ئۇچۇرلىرىغا ئاپتوماتىك تولدۇرۇش قوزغىتىش", diff --git a/src/lib/i18n/locales/uk-UA/translation.json b/src/lib/i18n/locales/uk-UA/translation.json index 6c949f2fee..cdd32362ff 100644 --- a/src/lib/i18n/locales/uk-UA/translation.json +++ b/src/lib/i18n/locales/uk-UA/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Модель вбудовування", "Embedding Model Engine": "Рушій моделі вбудовування ", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "Увімкнути генерацію автозаповнення для повідомлень чату", diff --git a/src/lib/i18n/locales/ur-PK/translation.json b/src/lib/i18n/locales/ur-PK/translation.json index b165ac17fe..2bd69a6b0a 100644 --- a/src/lib/i18n/locales/ur-PK/translation.json +++ b/src/lib/i18n/locales/ur-PK/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "ایمبیڈنگ ماڈل", "Embedding Model Engine": "ایمبیڈنگ ماڈل انجن", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "", diff --git a/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json b/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json index b1168b60df..4fe68bfb54 100644 --- a/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json +++ b/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Ўрнатиш модели", "Embedding Model Engine": "Двигател моделини ўрнатиш", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "Чат хабарлари учун автоматик тўлдиришни яратишни ёқинг", diff --git a/src/lib/i18n/locales/uz-Latn-Uz/translation.json b/src/lib/i18n/locales/uz-Latn-Uz/translation.json index 9087fe70e0..dee9c103c6 100644 --- a/src/lib/i18n/locales/uz-Latn-Uz/translation.json +++ b/src/lib/i18n/locales/uz-Latn-Uz/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "O'rnatish modeli", "Embedding Model Engine": "Dvigatel modelini o'rnatish", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "Chat xabarlari uchun avtomatik to‘ldirishni yaratishni yoqing", diff --git a/src/lib/i18n/locales/vi-VN/translation.json b/src/lib/i18n/locales/vi-VN/translation.json index 5b190c6b1c..ae40e383f1 100644 --- a/src/lib/i18n/locales/vi-VN/translation.json +++ b/src/lib/i18n/locales/vi-VN/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "", "Embedding Model": "Mô hình embedding", "Embedding Model Engine": "Trình xử lý embedding", + "Empty message": "", "Enable All": "", "Enable API Keys": "", "Enable autocomplete generation for chat messages": "Bật tạo tự động hoàn thành cho tin nhắn chat", diff --git a/src/lib/i18n/locales/zh-CN/translation.json b/src/lib/i18n/locales/zh-CN/translation.json index 6ca92acdc0..6300a44f2e 100644 --- a/src/lib/i18n/locales/zh-CN/translation.json +++ b/src/lib/i18n/locales/zh-CN/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "嵌入并发请求数", "Embedding Model": "嵌入模型", "Embedding Model Engine": "嵌入模型引擎", + "Empty message": "", "Enable All": "全部启用", "Enable API Keys": "启用接口密钥", "Enable autocomplete generation for chat messages": "启用对话输入框内容自动补全", diff --git a/src/lib/i18n/locales/zh-TW/translation.json b/src/lib/i18n/locales/zh-TW/translation.json index dcff1e5746..ee1b588ac2 100644 --- a/src/lib/i18n/locales/zh-TW/translation.json +++ b/src/lib/i18n/locales/zh-TW/translation.json @@ -633,6 +633,7 @@ "Embedding Concurrent Requests": "嵌入並發請求數", "Embedding Model": "嵌入模型", "Embedding Model Engine": "嵌入模型引擎", + "Empty message": "", "Enable All": "全部啟用", "Enable API Keys": "啟用 API 金鑰", "Enable autocomplete generation for chat messages": "啟用對話訊息的自動完成",