chore: format

This commit is contained in:
Timothy Jaeryang Baek
2026-03-08 18:14:09 -05:00
parent 2cb28369b7
commit 352391fa76
69 changed files with 124 additions and 33 deletions
+10 -3
View File
@@ -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=<int>)
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)
+6 -2
View File
@@ -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
@@ -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
@@ -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:
+1
View File
@@ -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:
+3 -1
View File
@@ -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"
+3 -1
View File
@@ -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)
+2 -6
View File
@@ -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:
+1 -2
View File
@@ -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",
@@ -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' : ''}`}
<Image
src={fileUrl}
alt=""
imageClassName="size-6 rounded-md object-cover"
/>
<Image src={fileUrl} alt="" imageClassName="size-6 rounded-md object-cover" />
{:else}
<div class="flex items-center px-1.5 py-0.5 rounded-md bg-gray-100 dark:bg-gray-800 text-xs text-gray-500 dark:text-gray-400">
<div
class="flex items-center px-1.5 py-0.5 rounded-md bg-gray-100 dark:bg-gray-800 text-xs text-gray-500 dark:text-gray-400"
>
<span class="max-w-[80px] truncate">{file.name ?? 'file'}</span>
</div>
{/if}
@@ -50,7 +48,9 @@
{#if content}
<p class="text-sm text-gray-600 dark:text-gray-300 truncate">{content}</p>
{:else if files.length === 0}
<p class="text-sm text-gray-400 dark:text-gray-500 truncate italic">{$i18n.t('Empty message')}</p>
<p class="text-sm text-gray-400 dark:text-gray-500 truncate italic">
{$i18n.t('Empty message')}
</p>
{/if}
</div>
@@ -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": "",
+1
View File
@@ -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": "تفعيل توليد الإكمال التلقائي لرسائل الدردشة",
@@ -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": "Активиране на автоматично довършване на съобщения в чата",
@@ -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": "",
@@ -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": "ཁ་བརྡའི་འཕྲིན་ཡིག་གི་ཆེད་དུ་རང་འཚང་བཟོ་སྐྲུན་སྒུལ་བསྐྱོད་བྱེད་པ།",
@@ -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": "",
@@ -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",
@@ -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": "",
@@ -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",
@@ -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",
@@ -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",
@@ -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": "",
@@ -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": "Ενεργοποίηση αυτόματης συμπλήρωσης για συνομιλίες",
@@ -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": "",
@@ -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": "",
@@ -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",
@@ -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",
@@ -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": "",
@@ -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های چت",
@@ -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ä",
@@ -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",
@@ -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",
@@ -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",
@@ -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": "",
@@ -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": "",
@@ -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": "",
@@ -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",
@@ -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": "",
@@ -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á",
@@ -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",
@@ -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": "チャットメッセージの自動補完を有効にする",
@@ -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": "",
@@ -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",
@@ -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": "채팅 메시지에 대한 자동 완성 생성 활성화",
@@ -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": "",
@@ -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",
@@ -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",
@@ -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",
@@ -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",
@@ -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": "",
@@ -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",
@@ -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",
@@ -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": "",
@@ -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",
@@ -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": "Включить генерацию автозаполнения для сообщений чата",
@@ -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": "",
@@ -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": "",
@@ -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",
@@ -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": "เปิดใช้งานการเติมข้อความอัตโนมัติสำหรับข้อความแชท",
@@ -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": "",
@@ -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",
@@ -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": "سۆھبەت ئۇچۇرلىرىغا ئاپتوماتىك تولدۇرۇش قوزغىتىش",
@@ -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": "Увімкнути генерацію автозаповнення для повідомлень чату",
@@ -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": "",
@@ -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": "Чат хабарлари учун автоматик тўлдиришни яратишни ёқинг",
@@ -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 toldirishni yaratishni yoqing",
@@ -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",
@@ -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": "启用对话输入框内容自动补全",
@@ -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": "啟用對話訊息的自動完成",