enh: web search timeout and retry count options in the webui

This commit is contained in:
Vincenzo 2025-11-24 04:40:34 +01:00
parent 819668b42d
commit 9116a76e44
No known key found for this signature in database
GPG key ID: 4EA301B13E762710
63 changed files with 182 additions and 4 deletions

View file

@ -3038,6 +3038,21 @@ ENABLE_WEB_LOADER_SSL_VERIFICATION = PersistentConfig(
os.environ.get("ENABLE_WEB_LOADER_SSL_VERIFICATION", "True").lower() == "true", os.environ.get("ENABLE_WEB_LOADER_SSL_VERIFICATION", "True").lower() == "true",
) )
WEB_LOADER_TIMEOUT = PersistentConfig(
"WEB_LOADER_TIMEOUT",
"rag.web.loader.web_loader_timeout",
int(os.getenv("WEB_LOADER_TIMEOUT", "10000")),
)
WEB_LOADER_RETRY_COUNT = PersistentConfig(
"WEB_LOADER_RETRY_COUNT",
"rag.web.loader.web_loader_retry_count",
int(os.getenv("WEB_LOADER_RETRY_COUNT", "3")),
)
WEB_SEARCH_TRUST_ENV = PersistentConfig( WEB_SEARCH_TRUST_ENV = PersistentConfig(
"WEB_SEARCH_TRUST_ENV", "WEB_SEARCH_TRUST_ENV",
"rag.web.search.trust_env", "rag.web.search.trust_env",

View file

@ -342,6 +342,8 @@ from open_webui.config import (
ENABLE_RAG_HYBRID_SEARCH_ENRICHED_TEXTS, ENABLE_RAG_HYBRID_SEARCH_ENRICHED_TEXTS,
ENABLE_RAG_LOCAL_WEB_FETCH, ENABLE_RAG_LOCAL_WEB_FETCH,
ENABLE_WEB_LOADER_SSL_VERIFICATION, ENABLE_WEB_LOADER_SSL_VERIFICATION,
WEB_LOADER_TIMEOUT,
WEB_LOADER_RETRY_COUNT,
ENABLE_GOOGLE_DRIVE_INTEGRATION, ENABLE_GOOGLE_DRIVE_INTEGRATION,
UPLOAD_DIR, UPLOAD_DIR,
EXTERNAL_WEB_SEARCH_URL, EXTERNAL_WEB_SEARCH_URL,
@ -855,6 +857,8 @@ app.state.config.ENABLE_RAG_HYBRID_SEARCH_ENRICHED_TEXTS = (
ENABLE_RAG_HYBRID_SEARCH_ENRICHED_TEXTS ENABLE_RAG_HYBRID_SEARCH_ENRICHED_TEXTS
) )
app.state.config.ENABLE_WEB_LOADER_SSL_VERIFICATION = ENABLE_WEB_LOADER_SSL_VERIFICATION app.state.config.ENABLE_WEB_LOADER_SSL_VERIFICATION = ENABLE_WEB_LOADER_SSL_VERIFICATION
app.state.config.WEB_LOADER_TIMEOUT = WEB_LOADER_TIMEOUT
app.state.config.WEB_LOADER_RETRY_COUNT = WEB_LOADER_RETRY_COUNT
app.state.config.CONTENT_EXTRACTION_ENGINE = CONTENT_EXTRACTION_ENGINE app.state.config.CONTENT_EXTRACTION_ENGINE = CONTENT_EXTRACTION_ENGINE
app.state.config.DATALAB_MARKER_API_KEY = DATALAB_MARKER_API_KEY app.state.config.DATALAB_MARKER_API_KEY = DATALAB_MARKER_API_KEY

View file

@ -40,6 +40,8 @@ from open_webui.config import (
EXTERNAL_WEB_LOADER_URL, EXTERNAL_WEB_LOADER_URL,
EXTERNAL_WEB_LOADER_API_KEY, EXTERNAL_WEB_LOADER_API_KEY,
WEB_FETCH_FILTER_LIST, WEB_FETCH_FILTER_LIST,
WEB_LOADER_TIMEOUT,
WEB_LOADER_RETRY_COUNT,
) )
from open_webui.env import SRC_LOG_LEVELS from open_webui.env import SRC_LOG_LEVELS
@ -582,7 +584,7 @@ class SafePlaywrightURLLoader(PlaywrightURLLoader, RateLimitMixin, URLProcessing
class SafeWebBaseLoader(WebBaseLoader): class SafeWebBaseLoader(WebBaseLoader):
"""WebBaseLoader with enhanced error handling for URLs.""" """WebBaseLoader with enhanced error handling for URLs."""
def __init__(self, trust_env: bool = False, *args, **kwargs): def __init__(self, trust_env: bool = False, timeout: int = 10000, retries: int = 3, *args, **kwargs):
"""Initialize SafeWebBaseLoader """Initialize SafeWebBaseLoader
Args: Args:
trust_env (bool, optional): set to True if using proxy to make web requests, for example trust_env (bool, optional): set to True if using proxy to make web requests, for example
@ -590,11 +592,14 @@ class SafeWebBaseLoader(WebBaseLoader):
""" """
super().__init__(*args, **kwargs) super().__init__(*args, **kwargs)
self.trust_env = trust_env self.trust_env = trust_env
self.timeout = timeout
self.retries = retries
async def _fetch( async def _fetch(
self, url: str, retries: int = 3, cooldown: int = 2, backoff: float = 1.5 self, url: str, retries: int | None = None, cooldown: int = 2, backoff: float = 1.5
) -> str: ) -> str:
async with aiohttp.ClientSession(trust_env=self.trust_env) as session: retries = retries or self.retries
async with aiohttp.ClientSession(trust_env=self.trust_env, timeout=aiohttp.ClientTimeout(self.timeout / 1000.0)) as session:
for i in range(retries): for i in range(retries):
try: try:
kwargs: Dict = dict( kwargs: Dict = dict(
@ -612,7 +617,7 @@ class SafeWebBaseLoader(WebBaseLoader):
if self.raise_for_status: if self.raise_for_status:
response.raise_for_status() response.raise_for_status()
return await response.text() return await response.text()
except aiohttp.ClientConnectionError as e: except (aiohttp.ClientConnectionError, asyncio.TimeoutError) as e:
if i == retries - 1: if i == retries - 1:
raise raise
else: else:
@ -707,6 +712,8 @@ def get_web_loader(
if WEB_LOADER_ENGINE.value == "" or WEB_LOADER_ENGINE.value == "safe_web": if WEB_LOADER_ENGINE.value == "" or WEB_LOADER_ENGINE.value == "safe_web":
WebLoaderClass = SafeWebBaseLoader WebLoaderClass = SafeWebBaseLoader
web_loader_args["timeout"] = WEB_LOADER_TIMEOUT.value
web_loader_args["retries"] = WEB_LOADER_RETRY_COUNT.value
if WEB_LOADER_ENGINE.value == "playwright": if WEB_LOADER_ENGINE.value == "playwright":
WebLoaderClass = SafePlaywrightURLLoader WebLoaderClass = SafePlaywrightURLLoader
web_loader_args["playwright_timeout"] = PLAYWRIGHT_TIMEOUT.value web_loader_args["playwright_timeout"] = PLAYWRIGHT_TIMEOUT.value

View file

@ -535,6 +535,8 @@ async def get_rag_config(request: Request, user=Depends(get_admin_user)):
"SOUGOU_API_SK": request.app.state.config.SOUGOU_API_SK, "SOUGOU_API_SK": request.app.state.config.SOUGOU_API_SK,
"WEB_LOADER_ENGINE": request.app.state.config.WEB_LOADER_ENGINE, "WEB_LOADER_ENGINE": request.app.state.config.WEB_LOADER_ENGINE,
"ENABLE_WEB_LOADER_SSL_VERIFICATION": request.app.state.config.ENABLE_WEB_LOADER_SSL_VERIFICATION, "ENABLE_WEB_LOADER_SSL_VERIFICATION": request.app.state.config.ENABLE_WEB_LOADER_SSL_VERIFICATION,
"WEB_LOADER_TIMEOUT": request.app.state.config.WEB_LOADER_TIMEOUT,
"WEB_LOADER_RETRY_COUNT": request.app.state.config.WEB_LOADER_RETRY_COUNT,
"PLAYWRIGHT_WS_URL": request.app.state.config.PLAYWRIGHT_WS_URL, "PLAYWRIGHT_WS_URL": request.app.state.config.PLAYWRIGHT_WS_URL,
"PLAYWRIGHT_TIMEOUT": request.app.state.config.PLAYWRIGHT_TIMEOUT, "PLAYWRIGHT_TIMEOUT": request.app.state.config.PLAYWRIGHT_TIMEOUT,
"FIRECRAWL_API_KEY": request.app.state.config.FIRECRAWL_API_KEY, "FIRECRAWL_API_KEY": request.app.state.config.FIRECRAWL_API_KEY,
@ -593,6 +595,8 @@ class WebConfig(BaseModel):
SOUGOU_API_SK: Optional[str] = None SOUGOU_API_SK: Optional[str] = None
WEB_LOADER_ENGINE: Optional[str] = None WEB_LOADER_ENGINE: Optional[str] = None
ENABLE_WEB_LOADER_SSL_VERIFICATION: Optional[bool] = None ENABLE_WEB_LOADER_SSL_VERIFICATION: Optional[bool] = None
WEB_LOADER_TIMEOUT: Optional[int] = None
WEB_LOADER_RETRY_COUNT: Optional[int] = None
PLAYWRIGHT_WS_URL: Optional[str] = None PLAYWRIGHT_WS_URL: Optional[str] = None
PLAYWRIGHT_TIMEOUT: Optional[int] = None PLAYWRIGHT_TIMEOUT: Optional[int] = None
FIRECRAWL_API_KEY: Optional[str] = None FIRECRAWL_API_KEY: Optional[str] = None
@ -1129,6 +1133,12 @@ async def update_rag_config(
request.app.state.config.ENABLE_WEB_LOADER_SSL_VERIFICATION = ( request.app.state.config.ENABLE_WEB_LOADER_SSL_VERIFICATION = (
form_data.web.ENABLE_WEB_LOADER_SSL_VERIFICATION form_data.web.ENABLE_WEB_LOADER_SSL_VERIFICATION
) )
request.app.state.config.WEB_LOADER_TIMEOUT = (
form_data.web.WEB_LOADER_TIMEOUT
)
request.app.state.config.WEB_LOADER_RETRY_COUNT = (
form_data.web.WEB_LOADER_RETRY_COUNT
)
request.app.state.config.PLAYWRIGHT_WS_URL = form_data.web.PLAYWRIGHT_WS_URL request.app.state.config.PLAYWRIGHT_WS_URL = form_data.web.PLAYWRIGHT_WS_URL
request.app.state.config.PLAYWRIGHT_TIMEOUT = form_data.web.PLAYWRIGHT_TIMEOUT request.app.state.config.PLAYWRIGHT_TIMEOUT = form_data.web.PLAYWRIGHT_TIMEOUT
request.app.state.config.FIRECRAWL_API_KEY = form_data.web.FIRECRAWL_API_KEY request.app.state.config.FIRECRAWL_API_KEY = form_data.web.FIRECRAWL_API_KEY
@ -1271,6 +1281,8 @@ async def update_rag_config(
"SOUGOU_API_SK": request.app.state.config.SOUGOU_API_SK, "SOUGOU_API_SK": request.app.state.config.SOUGOU_API_SK,
"WEB_LOADER_ENGINE": request.app.state.config.WEB_LOADER_ENGINE, "WEB_LOADER_ENGINE": request.app.state.config.WEB_LOADER_ENGINE,
"ENABLE_WEB_LOADER_SSL_VERIFICATION": request.app.state.config.ENABLE_WEB_LOADER_SSL_VERIFICATION, "ENABLE_WEB_LOADER_SSL_VERIFICATION": request.app.state.config.ENABLE_WEB_LOADER_SSL_VERIFICATION,
"WEB_LOADER_TIMEOUT": request.app.state.config.WEB_LOADER_TIMEOUT,
"WEB_LOADER_RETRY_COUNT": request.app.state.config.WEB_LOADER_RETRY_COUNT,
"PLAYWRIGHT_WS_URL": request.app.state.config.PLAYWRIGHT_WS_URL, "PLAYWRIGHT_WS_URL": request.app.state.config.PLAYWRIGHT_WS_URL,
"PLAYWRIGHT_TIMEOUT": request.app.state.config.PLAYWRIGHT_TIMEOUT, "PLAYWRIGHT_TIMEOUT": request.app.state.config.PLAYWRIGHT_TIMEOUT,
"FIRECRAWL_API_KEY": request.app.state.config.FIRECRAWL_API_KEY, "FIRECRAWL_API_KEY": request.app.state.config.FIRECRAWL_API_KEY,

View file

@ -775,6 +775,30 @@
<Switch bind:state={webConfig.ENABLE_WEB_LOADER_SSL_VERIFICATION} /> <Switch bind:state={webConfig.ENABLE_WEB_LOADER_SSL_VERIFICATION} />
</div> </div>
</div> </div>
<div class="mb-2.5 w-full">
<div class=" self-center text-xs font-medium mb-1">
{$i18n.t('Request Timeout (ms)')}
</div>
<input
class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-hidden"
placeholder={$i18n.t('Request Timeout (ms)')}
bind:value={webConfig.WEB_LOADER_TIMEOUT}
required
/>
</div>
<div class="mb-2.5 w-full">
<div class=" self-center text-xs font-medium mb-1">
{$i18n.t('Retry Count')}
</div>
<input
class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-hidden"
placeholder={$i18n.t('Retry Count')}
bind:value={webConfig.WEB_LOADER_RETRY_COUNT}
required
/>
</div>
{:else if webConfig.WEB_LOADER_ENGINE === 'playwright'} {:else if webConfig.WEB_LOADER_ENGINE === 'playwright'}
<div class="mb-2.5 flex w-full flex-col"> <div class="mb-2.5 flex w-full flex-col">
<div> <div>

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "", "Reply in Thread": "",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "إعادة تقييم النموذج", "Reranking Model": "إعادة تقييم النموذج",
@ -1364,6 +1365,7 @@
"Retrieved {{count}} sources_many": "", "Retrieved {{count}} sources_many": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "", "Rich Text Input for Chat": "",
"RK": "", "RK": "",
"Role": "منصب", "Role": "منصب",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "الرد داخل سلسلة الرسائل", "Reply in Thread": "الرد داخل سلسلة الرسائل",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "إعادة تقييم النموذج", "Reranking Model": "إعادة تقييم النموذج",
@ -1364,6 +1365,7 @@
"Retrieved {{count}} sources_many": "", "Retrieved {{count}} sources_many": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "إدخال نص منسق للمحادثة", "Rich Text Input for Chat": "إدخال نص منسق للمحادثة",
"RK": "RK", "RK": "RK",
"Role": "منصب", "Role": "منصب",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "Отговори в тред", "Reply in Thread": "Отговори в тред",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "Двигател за пренареждане", "Reranking Engine": "Двигател за пренареждане",
"Reranking Model": "Модел за преподреждане", "Reranking Model": "Модел за преподреждане",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "", "Retrieved {{count}} sources_one": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "Богат текстов вход за чат", "Rich Text Input for Chat": "Богат текстов вход за чат",
"RK": "RK", "RK": "RK",
"Role": "Роля", "Role": "Роля",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "", "Reply in Thread": "",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "রির্যাক্টিং মডেল", "Reranking Model": "রির্যাক্টিং মডেল",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "", "Retrieved {{count}} sources_one": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "", "Rich Text Input for Chat": "",
"RK": "", "RK": "",
"Role": "পদবি", "Role": "পদবি",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "བརྗོད་གཞིའི་ནང་ལན་འདེབས།", "Reply in Thread": "བརྗོད་གཞིའི་ནང་ལན་འདེབས།",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "བསྐྱར་སྒྲིག་དཔེ་དབྱིབས།", "Reranking Model": "བསྐྱར་སྒྲིག་དཔེ་དབྱིབས།",
@ -1359,6 +1360,7 @@
"Retrieved {{count}} sources": "", "Retrieved {{count}} sources": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "ཁ་བརྡའི་ཆེད་དུ་ཡིག་རྐྱང་ཕུན་སུམ་ཚོགས་པའི་ནང་འཇུག", "Rich Text Input for Chat": "ཁ་བརྡའི་ཆེད་དུ་ཡིག་རྐྱང་ཕུན་སུམ་ཚོགས་པའི་ནང་འཇུག",
"RK": "RK", "RK": "RK",
"Role": "གནས་ཚད།", "Role": "གནས་ཚད།",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "", "Reply in Thread": "",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "Model za ponovno rangiranje", "Reranking Model": "Model za ponovno rangiranje",
@ -1361,6 +1362,7 @@
"Retrieved {{count}} sources_few": "", "Retrieved {{count}} sources_few": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "", "Rich Text Input for Chat": "",
"RK": "", "RK": "",
"Role": "Uloga", "Role": "Uloga",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "Respondre al fil", "Reply in Thread": "Respondre al fil",
"Reply to thread...": "Respondra al fil...", "Reply to thread...": "Respondra al fil...",
"Replying to {{NAME}}": "Responent a {{NAME}}", "Replying to {{NAME}}": "Responent a {{NAME}}",
"Request Timeout (ms)": "",
"required": "necessari", "required": "necessari",
"Reranking Engine": "Motor de valoració", "Reranking Engine": "Motor de valoració",
"Reranking Model": "Model de reavaluació", "Reranking Model": "Model de reavaluació",
@ -1361,6 +1362,7 @@
"Retrieved {{count}} sources_many": "S'han obtingut {{count}} sources_many", "Retrieved {{count}} sources_many": "S'han obtingut {{count}} sources_many",
"Retrieved {{count}} sources_other": "S'han obtingut {{count}} sources_other", "Retrieved {{count}} sources_other": "S'han obtingut {{count}} sources_other",
"Retrieved 1 source": "S'ha obtingut una font", "Retrieved 1 source": "S'ha obtingut una font",
"Retry Count": "",
"Rich Text Input for Chat": "Entrada de text ric per al xat", "Rich Text Input for Chat": "Entrada de text ric per al xat",
"RK": "RK", "RK": "RK",
"Role": "Rol", "Role": "Rol",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "", "Reply in Thread": "",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "", "Reranking Model": "",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "", "Retrieved {{count}} sources_one": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "", "Rich Text Input for Chat": "",
"RK": "", "RK": "",
"Role": "Papel", "Role": "Papel",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "Odpovědět ve vlákně", "Reply in Thread": "Odpovědět ve vlákně",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "Jádro pro přehodnocení", "Reranking Engine": "Jádro pro přehodnocení",
"Reranking Model": "Model pro přehodnocení", "Reranking Model": "Model pro přehodnocení",
@ -1362,6 +1363,7 @@
"Retrieved {{count}} sources_many": "", "Retrieved {{count}} sources_many": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "Pokročilé formátování vstupního pole konverzace", "Rich Text Input for Chat": "Pokročilé formátování vstupního pole konverzace",
"RK": "RK", "RK": "RK",
"Role": "Role", "Role": "Role",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "Svar i tråd", "Reply in Thread": "Svar i tråd",
"Reply to thread...": "Svar på tråd...", "Reply to thread...": "Svar på tråd...",
"Replying to {{NAME}}": "Svarer {{NAME}}", "Replying to {{NAME}}": "Svarer {{NAME}}",
"Request Timeout (ms)": "",
"required": "påkrævet", "required": "påkrævet",
"Reranking Engine": "Omarrangerings engine", "Reranking Engine": "Omarrangerings engine",
"Reranking Model": "Omarrangeringsmodel", "Reranking Model": "Omarrangeringsmodel",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "Fandt {{count}} sources_one", "Retrieved {{count}} sources_one": "Fandt {{count}} sources_one",
"Retrieved {{count}} sources_other": "Fandt {{count}} sources_other", "Retrieved {{count}} sources_other": "Fandt {{count}} sources_other",
"Retrieved 1 source": "Fandt en kildehenvisning", "Retrieved 1 source": "Fandt en kildehenvisning",
"Retry Count": "",
"Rich Text Input for Chat": "Rich text input til chat", "Rich Text Input for Chat": "Rich text input til chat",
"RK": "RK", "RK": "RK",
"Role": "Rolle", "Role": "Rolle",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "Im Thread antworten", "Reply in Thread": "Im Thread antworten",
"Reply to thread...": "Im Thread antworten...", "Reply to thread...": "Im Thread antworten...",
"Replying to {{NAME}}": "{{NAME}} antworten", "Replying to {{NAME}}": "{{NAME}} antworten",
"Request Timeout (ms)": "",
"required": "benötigt", "required": "benötigt",
"Reranking Engine": "Reranking-Engine", "Reranking Engine": "Reranking-Engine",
"Reranking Model": "Reranking-Modell", "Reranking Model": "Reranking-Modell",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "{{count}} Quelle abgerufen", "Retrieved {{count}} sources_one": "{{count}} Quelle abgerufen",
"Retrieved {{count}} sources_other": "{{count}} Quellen abgerufen", "Retrieved {{count}} sources_other": "{{count}} Quellen abgerufen",
"Retrieved 1 source": "1 Quelle abgerufen", "Retrieved 1 source": "1 Quelle abgerufen",
"Retry Count": "",
"Rich Text Input for Chat": "Rich-Text-Eingabe für Chats", "Rich Text Input for Chat": "Rich-Text-Eingabe für Chats",
"RK": "RK", "RK": "RK",
"Role": "Rolle", "Role": "Rolle",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "", "Reply in Thread": "",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "", "Reranking Model": "",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "", "Retrieved {{count}} sources_one": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "", "Rich Text Input for Chat": "",
"RK": "", "RK": "",
"Role": "Role", "Role": "Role",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "Απάντηση στο Νήμα Συζήτησης", "Reply in Thread": "Απάντηση στο Νήμα Συζήτησης",
"Reply to thread...": "Απάντηση στο νήμα συζήτησης...", "Reply to thread...": "Απάντηση στο νήμα συζήτησης...",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "απαιτείται", "required": "απαιτείται",
"Reranking Engine": "Μηχανή Επαναταξινόμησης", "Reranking Engine": "Μηχανή Επαναταξινόμησης",
"Reranking Model": "Μοντέλο Επαναταξινόμησης", "Reranking Model": "Μοντέλο Επαναταξινόμησης",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "", "Retrieved {{count}} sources_one": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "Πλούσιο Εισαγωγή Κειμένου για Συνομιλία", "Rich Text Input for Chat": "Πλούσιο Εισαγωγή Κειμένου για Συνομιλία",
"RK": "", "RK": "",
"Role": "Ρόλος", "Role": "Ρόλος",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "", "Reply in Thread": "",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "", "Reranking Model": "",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "", "Retrieved {{count}} sources_one": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "", "Rich Text Input for Chat": "",
"RK": "", "RK": "",
"Role": "", "Role": "",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "", "Reply in Thread": "",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "", "Reranking Model": "",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "", "Retrieved {{count}} sources_one": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "", "Rich Text Input for Chat": "",
"RK": "", "RK": "",
"Role": "", "Role": "",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "Responder en Hilo", "Reply in Thread": "Responder en Hilo",
"Reply to thread...": "Responder al hilo...", "Reply to thread...": "Responder al hilo...",
"Replying to {{NAME}}": "Responder a {{NAME}}", "Replying to {{NAME}}": "Responder a {{NAME}}",
"Request Timeout (ms)": "",
"required": "requerido", "required": "requerido",
"Reranking Engine": "Motor de Reclasificación", "Reranking Engine": "Motor de Reclasificación",
"Reranking Model": "Modelo de Reclasificación", "Reranking Model": "Modelo de Reclasificación",
@ -1361,6 +1362,7 @@
"Retrieved {{count}} sources_many": "Recuperadas {{count}} fuentes múltiples", "Retrieved {{count}} sources_many": "Recuperadas {{count}} fuentes múltiples",
"Retrieved {{count}} sources_other": "Recuperadas {{count}} otras fuentes", "Retrieved {{count}} sources_other": "Recuperadas {{count}} otras fuentes",
"Retrieved 1 source": "Recuperada una fuente", "Retrieved 1 source": "Recuperada una fuente",
"Retry Count": "",
"Rich Text Input for Chat": "Entrada de Texto Enriquecido para el Chat", "Rich Text Input for Chat": "Entrada de Texto Enriquecido para el Chat",
"RK": "RK", "RK": "RK",
"Role": "Rol", "Role": "Rol",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "Vasta lõimes", "Reply in Thread": "Vasta lõimes",
"Reply to thread...": "Reply kuni thread...", "Reply to thread...": "Reply kuni thread...",
"Replying to {{NAME}}": "Replying kuni {{NAME}}", "Replying to {{NAME}}": "Replying kuni {{NAME}}",
"Request Timeout (ms)": "",
"required": "required", "required": "required",
"Reranking Engine": "Reranking Engine", "Reranking Engine": "Reranking Engine",
"Reranking Model": "Ümberjärjestamise mudel", "Reranking Model": "Ümberjärjestamise mudel",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "Retrieved {{count}} allikad_one", "Retrieved {{count}} sources_one": "Retrieved {{count}} allikad_one",
"Retrieved {{count}} sources_other": "Retrieved {{count}} allikad_other", "Retrieved {{count}} sources_other": "Retrieved {{count}} allikad_other",
"Retrieved 1 source": "Retrieved 1 allikas", "Retrieved 1 source": "Retrieved 1 allikas",
"Retry Count": "",
"Rich Text Input for Chat": "Rikasteksti sisend vestluse jaoks", "Rich Text Input for Chat": "Rikasteksti sisend vestluse jaoks",
"RK": "RK", "RK": "RK",
"Role": "Roll", "Role": "Roll",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "", "Reply in Thread": "",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "Berrantolatze modeloa", "Reranking Model": "Berrantolatze modeloa",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "", "Retrieved {{count}} sources_one": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "Testu aberastuko sarrera txaterako", "Rich Text Input for Chat": "Testu aberastuko sarrera txaterako",
"RK": "RK", "RK": "RK",
"Role": "Rola", "Role": "Rola",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "پاسخ در رشته", "Reply in Thread": "پاسخ در رشته",
"Reply to thread...": "پاسخ به رشته...", "Reply to thread...": "پاسخ به رشته...",
"Replying to {{NAME}}": "در حال پاسخ به {{NAME}}", "Replying to {{NAME}}": "در حال پاسخ به {{NAME}}",
"Request Timeout (ms)": "",
"required": "مورد نیاز", "required": "مورد نیاز",
"Reranking Engine": "موتور رتبه\u200cبندی مجدد", "Reranking Engine": "موتور رتبه\u200cبندی مجدد",
"Reranking Model": "مدل ری\u200cشناسی مجدد غیرفعال است", "Reranking Model": "مدل ری\u200cشناسی مجدد غیرفعال است",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "{{count}} منبع بازیابی شد", "Retrieved {{count}} sources_one": "{{count}} منبع بازیابی شد",
"Retrieved {{count}} sources_other": "{{count}} منبع بازیابی شد", "Retrieved {{count}} sources_other": "{{count}} منبع بازیابی شد",
"Retrieved 1 source": "۱ منبع بازیابی شد", "Retrieved 1 source": "۱ منبع بازیابی شد",
"Retry Count": "",
"Rich Text Input for Chat": "ورودی متن غنی برای چت", "Rich Text Input for Chat": "ورودی متن غنی برای چت",
"RK": "RK", "RK": "RK",
"Role": "نقش", "Role": "نقش",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "Vastaa ketjussa", "Reply in Thread": "Vastaa ketjussa",
"Reply to thread...": "Vastaa ketjussa...", "Reply to thread...": "Vastaa ketjussa...",
"Replying to {{NAME}}": "Vastaa {{NAME}}", "Replying to {{NAME}}": "Vastaa {{NAME}}",
"Request Timeout (ms)": "",
"required": "vaaditaan", "required": "vaaditaan",
"Reranking Engine": "Uudelleenpisteytymismallin moottori", "Reranking Engine": "Uudelleenpisteytymismallin moottori",
"Reranking Model": "Uudelleenpisteytymismalli", "Reranking Model": "Uudelleenpisteytymismalli",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "Noudettu {{count}} sources_one", "Retrieved {{count}} sources_one": "Noudettu {{count}} sources_one",
"Retrieved {{count}} sources_other": "Noudettu {{count}} sources_other", "Retrieved {{count}} sources_other": "Noudettu {{count}} sources_other",
"Retrieved 1 source": "1 lähde noudettu", "Retrieved 1 source": "1 lähde noudettu",
"Retry Count": "",
"Rich Text Input for Chat": "Rikasteksti-kenttä chattiin", "Rich Text Input for Chat": "Rikasteksti-kenttä chattiin",
"RK": "RK", "RK": "RK",
"Role": "Rooli", "Role": "Rooli",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "Répondre dans le fil de discussion", "Reply in Thread": "Répondre dans le fil de discussion",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "Moteur de ré-ranking", "Reranking Engine": "Moteur de ré-ranking",
"Reranking Model": "Modèle de ré-ranking", "Reranking Model": "Modèle de ré-ranking",
@ -1361,6 +1362,7 @@
"Retrieved {{count}} sources_many": "", "Retrieved {{count}} sources_many": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "Saisie de texte enrichi pour la conversation", "Rich Text Input for Chat": "Saisie de texte enrichi pour la conversation",
"RK": "Rang", "RK": "Rang",
"Role": "Rôle", "Role": "Rôle",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "Répondre dans le fil de discussion", "Reply in Thread": "Répondre dans le fil de discussion",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "requis", "required": "requis",
"Reranking Engine": "Moteur de ré-ranking", "Reranking Engine": "Moteur de ré-ranking",
"Reranking Model": "Modèle de ré-ranking", "Reranking Model": "Modèle de ré-ranking",
@ -1361,6 +1362,7 @@
"Retrieved {{count}} sources_many": "", "Retrieved {{count}} sources_many": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "Une source récupérée", "Retrieved 1 source": "Une source récupérée",
"Retry Count": "",
"Rich Text Input for Chat": "Saisie de texte enrichi pour la conversation", "Rich Text Input for Chat": "Saisie de texte enrichi pour la conversation",
"RK": "Rang", "RK": "Rang",
"Role": "Rôle", "Role": "Rôle",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "Responder no hilo", "Reply in Thread": "Responder no hilo",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "Modelo de reranking", "Reranking Model": "Modelo de reranking",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "", "Retrieved {{count}} sources_one": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "Entrada de texto enriquecido para chat", "Rich Text Input for Chat": "Entrada de texto enriquecido para chat",
"RK": "RK", "RK": "RK",
"Role": "Rol", "Role": "Rol",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "", "Reply in Thread": "",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "מודל דירוג מחדש", "Reranking Model": "מודל דירוג מחדש",
@ -1361,6 +1362,7 @@
"Retrieved {{count}} sources_two": "", "Retrieved {{count}} sources_two": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "", "Rich Text Input for Chat": "",
"RK": "", "RK": "",
"Role": "תפקיד", "Role": "תפקיד",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "", "Reply in Thread": "",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "रीरैकिंग मोड", "Reranking Model": "रीरैकिंग मोड",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "", "Retrieved {{count}} sources_one": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "", "Rich Text Input for Chat": "",
"RK": "", "RK": "",
"Role": "भूमिका", "Role": "भूमिका",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "", "Reply in Thread": "",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "Model za ponovno rangiranje", "Reranking Model": "Model za ponovno rangiranje",
@ -1361,6 +1362,7 @@
"Retrieved {{count}} sources_few": "", "Retrieved {{count}} sources_few": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "", "Rich Text Input for Chat": "",
"RK": "", "RK": "",
"Role": "Uloga", "Role": "Uloga",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "Válasz szálban", "Reply in Thread": "Válasz szálban",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "Újrarangsoroló modell", "Reranking Model": "Újrarangsoroló modell",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "", "Retrieved {{count}} sources_one": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "Formázott szövegbevitel a chathez", "Rich Text Input for Chat": "Formázott szövegbevitel a chathez",
"RK": "RK", "RK": "RK",
"Role": "Szerep", "Role": "Szerep",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "", "Reply in Thread": "",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "Model Pemeringkatan Ulang", "Reranking Model": "Model Pemeringkatan Ulang",
@ -1359,6 +1360,7 @@
"Retrieved {{count}} sources": "", "Retrieved {{count}} sources": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "", "Rich Text Input for Chat": "",
"RK": "", "RK": "",
"Role": "Peran", "Role": "Peran",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "Freagra i Snáithe", "Reply in Thread": "Freagra i Snáithe",
"Reply to thread...": "Freagra ar an snáithe...", "Reply to thread...": "Freagra ar an snáithe...",
"Replying to {{NAME}}": "Ag freagairt do {{NAME}}", "Replying to {{NAME}}": "Ag freagairt do {{NAME}}",
"Request Timeout (ms)": "",
"required": "riachtanach", "required": "riachtanach",
"Reranking Engine": "Inneall Athrangúcháin", "Reranking Engine": "Inneall Athrangúcháin",
"Reranking Model": "Samhail Athrangú", "Reranking Model": "Samhail Athrangú",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "Aisghafa {{count}} foinsí_aon", "Retrieved {{count}} sources_one": "Aisghafa {{count}} foinsí_aon",
"Retrieved {{count}} sources_other": "Aisghafa {{count}} foinsí_eile", "Retrieved {{count}} sources_other": "Aisghafa {{count}} foinsí_eile",
"Retrieved 1 source": "Aisghafa 1 fhoinse", "Retrieved 1 source": "Aisghafa 1 fhoinse",
"Retry Count": "",
"Rich Text Input for Chat": "Ionchur Saibhir Téacs don Chomhrá", "Rich Text Input for Chat": "Ionchur Saibhir Téacs don Chomhrá",
"RK": "RK", "RK": "RK",
"Role": "Ról", "Role": "Ról",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "Rispondi nel thread", "Reply in Thread": "Rispondi nel thread",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "Timeout richiesta (ms)",
"required": "", "required": "",
"Reranking Engine": "Engine di Riclassificazione", "Reranking Engine": "Engine di Riclassificazione",
"Reranking Model": "Modello di Riclassificazione", "Reranking Model": "Modello di Riclassificazione",
@ -1361,6 +1362,7 @@
"Retrieved {{count}} sources_many": "", "Retrieved {{count}} sources_many": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "Numero di tentativi",
"Rich Text Input for Chat": "Input di testo ricco per la chat", "Rich Text Input for Chat": "Input di testo ricco per la chat",
"RK": "RK", "RK": "RK",
"Role": "Ruolo", "Role": "Ruolo",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "スレッドで返信", "Reply in Thread": "スレッドで返信",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "リランクエンジン", "Reranking Engine": "リランクエンジン",
"Reranking Model": "リランクモデル", "Reranking Model": "リランクモデル",
@ -1359,6 +1360,7 @@
"Retrieved {{count}} sources": "", "Retrieved {{count}} sources": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "チャットのリッチテキスト入力", "Rich Text Input for Chat": "チャットのリッチテキスト入力",
"RK": "", "RK": "",
"Role": "ロール", "Role": "ロール",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "ნაკადში პასუხი", "Reply in Thread": "ნაკადში პასუხი",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "აუცილებელია", "required": "აუცილებელია",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "Reranking მოდელი", "Reranking Model": "Reranking მოდელი",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "", "Retrieved {{count}} sources_one": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "", "Rich Text Input for Chat": "",
"RK": "RK", "RK": "RK",
"Role": "როლი", "Role": "როლი",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "Err deg udiwenni", "Reply in Thread": "Err deg udiwenni",
"Reply to thread...": "Err i udiwenni…", "Reply to thread...": "Err i udiwenni…",
"Replying to {{NAME}}": "Tiririt i {{NAME}}", "Replying to {{NAME}}": "Tiririt i {{NAME}}",
"Request Timeout (ms)": "",
"required": "yettwasra", "required": "yettwasra",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "", "Reranking Model": "",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "", "Retrieved {{count}} sources_one": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "Yufa-d 1 n uɣbalu", "Retrieved 1 source": "Yufa-d 1 n uɣbalu",
"Retry Count": "",
"Rich Text Input for Chat": "Aḍris anesbaɣur", "Rich Text Input for Chat": "Aḍris anesbaɣur",
"RK": "RK", "RK": "RK",
"Role": "Tamlilt", "Role": "Tamlilt",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "스레드로 답장하기", "Reply in Thread": "스레드로 답장하기",
"Reply to thread...": "스레드로 답장하기...", "Reply to thread...": "스레드로 답장하기...",
"Replying to {{NAME}}": "{{NAME}}에게 답장하는 중", "Replying to {{NAME}}": "{{NAME}}에게 답장하는 중",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "Reranking 엔진", "Reranking Engine": "Reranking 엔진",
"Reranking Model": "Reranking 모델", "Reranking Model": "Reranking 모델",
@ -1359,6 +1360,7 @@
"Retrieved {{count}} sources": "", "Retrieved {{count}} sources": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "검색된 source 1개", "Retrieved 1 source": "검색된 source 1개",
"Retry Count": "",
"Rich Text Input for Chat": "다양한 텍스트 서식 사용", "Rich Text Input for Chat": "다양한 텍스트 서식 사용",
"RK": "RK", "RK": "RK",
"Role": "역할", "Role": "역할",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "", "Reply in Thread": "",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "Reranking modelis", "Reranking Model": "Reranking modelis",
@ -1362,6 +1363,7 @@
"Retrieved {{count}} sources_many": "", "Retrieved {{count}} sources_many": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "", "Rich Text Input for Chat": "",
"RK": "", "RK": "",
"Role": "Rolė", "Role": "Rolė",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "", "Reply in Thread": "",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "Model 'Reranking'", "Reranking Model": "Model 'Reranking'",
@ -1359,6 +1360,7 @@
"Retrieved {{count}} sources": "", "Retrieved {{count}} sources": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "", "Rich Text Input for Chat": "",
"RK": "", "RK": "",
"Role": "Peranan", "Role": "Peranan",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "Svar i tråd", "Reply in Thread": "Svar i tråd",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "Omrangeringsmodell", "Reranking Model": "Omrangeringsmodell",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "", "Retrieved {{count}} sources_one": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "Rik tekstinndata for chat", "Rich Text Input for Chat": "Rik tekstinndata for chat",
"RK": "RK", "RK": "RK",
"Role": "Rolle", "Role": "Rolle",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "Antwoord in draad", "Reply in Thread": "Antwoord in draad",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "Reranking Model", "Reranking Model": "Reranking Model",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "", "Retrieved {{count}} sources_one": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "Rijke tekstinvoer voor chatten", "Rich Text Input for Chat": "Rijke tekstinvoer voor chatten",
"RK": "RK", "RK": "RK",
"Role": "Rol", "Role": "Rol",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "", "Reply in Thread": "",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "ਮਾਡਲ ਮੁੜ ਰੈਂਕਿੰਗ", "Reranking Model": "ਮਾਡਲ ਮੁੜ ਰੈਂਕਿੰਗ",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "", "Retrieved {{count}} sources_one": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "", "Rich Text Input for Chat": "",
"RK": "", "RK": "",
"Role": "ਭੂਮਿਕਾ", "Role": "ਭੂਮਿਕਾ",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "Odpowiedz w wątku", "Reply in Thread": "Odpowiedz w wątku",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "Poprawa rankingu modelu", "Reranking Model": "Poprawa rankingu modelu",
@ -1362,6 +1363,7 @@
"Retrieved {{count}} sources_many": "", "Retrieved {{count}} sources_many": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "Pole do wprowadzania tekstu sformatowanego dla czatu", "Rich Text Input for Chat": "Pole do wprowadzania tekstu sformatowanego dla czatu",
"RK": "RK", "RK": "RK",
"Role": "Rola", "Role": "Rola",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "Responder no tópico", "Reply in Thread": "Responder no tópico",
"Reply to thread...": "Responder ao tópico...", "Reply to thread...": "Responder ao tópico...",
"Replying to {{NAME}}": "Respondendo para {{NAME}}", "Replying to {{NAME}}": "Respondendo para {{NAME}}",
"Request Timeout (ms)": "",
"required": "obrigatório", "required": "obrigatório",
"Reranking Engine": "Motor de Reclassificação", "Reranking Engine": "Motor de Reclassificação",
"Reranking Model": "Modelo de Reclassificação", "Reranking Model": "Modelo de Reclassificação",
@ -1361,6 +1362,7 @@
"Retrieved {{count}} sources_many": "", "Retrieved {{count}} sources_many": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "1 fonte recuperada", "Retrieved 1 source": "1 fonte recuperada",
"Retry Count": "",
"Rich Text Input for Chat": "Entrada de rich text para o chat", "Rich Text Input for Chat": "Entrada de rich text para o chat",
"RK": "", "RK": "",
"Role": "Função", "Role": "Função",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "", "Reply in Thread": "",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "Modelo de Reranking", "Reranking Model": "Modelo de Reranking",
@ -1361,6 +1362,7 @@
"Retrieved {{count}} sources_many": "", "Retrieved {{count}} sources_many": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "", "Rich Text Input for Chat": "",
"RK": "", "RK": "",
"Role": "Função", "Role": "Função",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "", "Reply in Thread": "",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "Model de Rearanjare", "Reranking Model": "Model de Rearanjare",
@ -1361,6 +1362,7 @@
"Retrieved {{count}} sources_few": "", "Retrieved {{count}} sources_few": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "Introducere text îmbogățit pentru chat", "Rich Text Input for Chat": "Introducere text îmbogățit pentru chat",
"RK": "RK", "RK": "RK",
"Role": "Rol", "Role": "Rol",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "Ответить в обсуждении", "Reply in Thread": "Ответить в обсуждении",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "обязательно", "required": "обязательно",
"Reranking Engine": "Движок реранжирования", "Reranking Engine": "Движок реранжирования",
"Reranking Model": "Модель реранжирования", "Reranking Model": "Модель реранжирования",
@ -1362,6 +1363,7 @@
"Retrieved {{count}} sources_many": "Найдено {{count}} источников", "Retrieved {{count}} sources_many": "Найдено {{count}} источников",
"Retrieved {{count}} sources_other": "Найдено {{count}} источников", "Retrieved {{count}} sources_other": "Найдено {{count}} источников",
"Retrieved 1 source": "Найден 1 источник", "Retrieved 1 source": "Найден 1 источник",
"Retry Count": "",
"Rich Text Input for Chat": "Ввод обогащённого текста (Rich text) в чат", "Rich Text Input for Chat": "Ввод обогащённого текста (Rich text) в чат",
"RK": "RK", "RK": "RK",
"Role": "Роль", "Role": "Роль",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "", "Reply in Thread": "",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "Model na prehodnotenie poradia", "Reranking Model": "Model na prehodnotenie poradia",
@ -1362,6 +1363,7 @@
"Retrieved {{count}} sources_many": "", "Retrieved {{count}} sources_many": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "Vstup pre chat vo formáte Rich Text", "Rich Text Input for Chat": "Vstup pre chat vo formáte Rich Text",
"RK": "RK", "RK": "RK",
"Role": "Funkcia", "Role": "Funkcia",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "", "Reply in Thread": "",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "Модел поновног рангирања", "Reranking Model": "Модел поновног рангирања",
@ -1361,6 +1362,7 @@
"Retrieved {{count}} sources_few": "", "Retrieved {{count}} sources_few": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "Богат унос текста у ћаскању", "Rich Text Input for Chat": "Богат унос текста у ћаскању",
"RK": "", "RK": "",
"Role": "Улога", "Role": "Улога",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "Svara i tråd", "Reply in Thread": "Svara i tråd",
"Reply to thread...": "Svara i tråd...", "Reply to thread...": "Svara i tråd...",
"Replying to {{NAME}}": "Svarar {{NAME}}", "Replying to {{NAME}}": "Svarar {{NAME}}",
"Request Timeout (ms)": "",
"required": "obligatoriskt", "required": "obligatoriskt",
"Reranking Engine": "Omrankningsmotor", "Reranking Engine": "Omrankningsmotor",
"Reranking Model": "Reranking modell", "Reranking Model": "Reranking modell",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "Hämtade från {{count}} källa", "Retrieved {{count}} sources_one": "Hämtade från {{count}} källa",
"Retrieved {{count}} sources_other": "Hämtade från {{count}} källor", "Retrieved {{count}} sources_other": "Hämtade från {{count}} källor",
"Retrieved 1 source": "Hämtade från en källa", "Retrieved 1 source": "Hämtade från en källa",
"Retry Count": "",
"Rich Text Input for Chat": "Rich Text-inmatning för chatt", "Rich Text Input for Chat": "Rich Text-inmatning för chatt",
"RK": "RK", "RK": "RK",
"Role": "Roll", "Role": "Roll",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "ตอบกลับในเธรด", "Reply in Thread": "ตอบกลับในเธรด",
"Reply to thread...": "ตอบกลับเธรด...", "Reply to thread...": "ตอบกลับเธรด...",
"Replying to {{NAME}}": "กำลังตอบกลับ {{NAME}}", "Replying to {{NAME}}": "กำลังตอบกลับ {{NAME}}",
"Request Timeout (ms)": "",
"required": "จำเป็น", "required": "จำเป็น",
"Reranking Engine": "เอนจิน Reranking", "Reranking Engine": "เอนจิน Reranking",
"Reranking Model": "โมเดล Reranking", "Reranking Model": "โมเดล Reranking",
@ -1359,6 +1360,7 @@
"Retrieved {{count}} sources": "ดึงข้อมูลจาก {{count}} แหล่งข้อมูลแล้ว", "Retrieved {{count}} sources": "ดึงข้อมูลจาก {{count}} แหล่งข้อมูลแล้ว",
"Retrieved {{count}} sources_other": "เรียกดูที่มา {{count}} รายการ (อื่นๆ)", "Retrieved {{count}} sources_other": "เรียกดูที่มา {{count}} รายการ (อื่นๆ)",
"Retrieved 1 source": "ดึงมาแล้ว 1 แหล่งข้อมูล", "Retrieved 1 source": "ดึงมาแล้ว 1 แหล่งข้อมูล",
"Retry Count": "",
"Rich Text Input for Chat": "ช่องป้อนข้อความแบบ Rich Text สำหรับแชท", "Rich Text Input for Chat": "ช่องป้อนข้อความแบบ Rich Text สำหรับแชท",
"RK": "RK", "RK": "RK",
"Role": "บทบาท", "Role": "บทบาท",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "", "Reply in Thread": "",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "", "Reranking Model": "",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "", "Retrieved {{count}} sources_one": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "", "Rich Text Input for Chat": "",
"RK": "", "RK": "",
"Role": "Roli", "Role": "Roli",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "Konuya Yanıtla", "Reply in Thread": "Konuya Yanıtla",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "Yeniden Sıralama Modeli", "Reranking Model": "Yeniden Sıralama Modeli",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "", "Retrieved {{count}} sources_one": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "Sohbet için Zengin Metin Girişi", "Rich Text Input for Chat": "Sohbet için Zengin Metin Girişi",
"RK": "RK", "RK": "RK",
"Role": "Rol", "Role": "Rol",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "تارماقتا ئىنكاس قايتۇرۇش", "Reply in Thread": "تارماقتا ئىنكاس قايتۇرۇش",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "قايتا تەرتىپلەش ماتورى", "Reranking Engine": "قايتا تەرتىپلەش ماتورى",
"Reranking Model": "قايتا تەرتىپلەش مودېلى", "Reranking Model": "قايتا تەرتىپلەش مودېلى",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "", "Retrieved {{count}} sources_one": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "سۆھبەت ئۈچۈن مول تېكست كىرگۈزۈش", "Rich Text Input for Chat": "سۆھبەت ئۈچۈن مول تېكست كىرگۈزۈش",
"RK": "RK", "RK": "RK",
"Role": "رول", "Role": "رول",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "Відповісти в потоці", "Reply in Thread": "Відповісти в потоці",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "Модель переранжування", "Reranking Model": "Модель переранжування",
@ -1362,6 +1363,7 @@
"Retrieved {{count}} sources_many": "", "Retrieved {{count}} sources_many": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "Ввід тексту з форматуванням для чату", "Rich Text Input for Chat": "Ввід тексту з форматуванням для чату",
"RK": "RK", "RK": "RK",
"Role": "Роль", "Role": "Роль",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "", "Reply in Thread": "",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "دوبارہ درجہ بندی کا ماڈل", "Reranking Model": "دوبارہ درجہ بندی کا ماڈل",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "", "Retrieved {{count}} sources_one": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "چیٹ کے لیے رچ ٹیکسٹ ان پٹ", "Rich Text Input for Chat": "چیٹ کے لیے رچ ٹیکسٹ ان پٹ",
"RK": "آر کے", "RK": "آر کے",
"Role": "کردار", "Role": "کردار",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "Мавзуда жавоб беринг", "Reply in Thread": "Мавзуда жавоб беринг",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "Двигателни қайта тартиблаш", "Reranking Engine": "Двигателни қайта тартиблаш",
"Reranking Model": "Қайта тартиблаш модели", "Reranking Model": "Қайта тартиблаш модели",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "", "Retrieved {{count}} sources_one": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "Чат учун бой матн киритиш", "Rich Text Input for Chat": "Чат учун бой матн киритиш",
"RK": "RK", "RK": "RK",
"Role": "Рол", "Role": "Рол",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "Mavzuda javob bering", "Reply in Thread": "Mavzuda javob bering",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "Dvigatelni qayta tartiblash", "Reranking Engine": "Dvigatelni qayta tartiblash",
"Reranking Model": "Qayta tartiblash modeli", "Reranking Model": "Qayta tartiblash modeli",
@ -1360,6 +1361,7 @@
"Retrieved {{count}} sources_one": "", "Retrieved {{count}} sources_one": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "Chat uchun boy matn kiritish", "Rich Text Input for Chat": "Chat uchun boy matn kiritish",
"RK": "RK", "RK": "RK",
"Role": "Rol", "Role": "Rol",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "Trả lời trong Luồng", "Reply in Thread": "Trả lời trong Luồng",
"Reply to thread...": "", "Reply to thread...": "",
"Replying to {{NAME}}": "", "Replying to {{NAME}}": "",
"Request Timeout (ms)": "",
"required": "", "required": "",
"Reranking Engine": "", "Reranking Engine": "",
"Reranking Model": "Reranking Model", "Reranking Model": "Reranking Model",
@ -1359,6 +1360,7 @@
"Retrieved {{count}} sources": "", "Retrieved {{count}} sources": "",
"Retrieved {{count}} sources_other": "", "Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "", "Retrieved 1 source": "",
"Retry Count": "",
"Rich Text Input for Chat": "Nhập Văn bản Đa dạng cho Chat", "Rich Text Input for Chat": "Nhập Văn bản Đa dạng cho Chat",
"RK": "RK", "RK": "RK",
"Role": "Vai trò", "Role": "Vai trò",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "回复主题", "Reply in Thread": "回复主题",
"Reply to thread...": "回复主题...", "Reply to thread...": "回复主题...",
"Replying to {{NAME}}": "回复 {{NAME}}", "Replying to {{NAME}}": "回复 {{NAME}}",
"Request Timeout (ms)": "",
"required": "必填", "required": "必填",
"Reranking Engine": "重新排名引擎", "Reranking Engine": "重新排名引擎",
"Reranking Model": "重新排名模型", "Reranking Model": "重新排名模型",
@ -1359,6 +1360,7 @@
"Retrieved {{count}} sources": "检索到 {{count}} 个引用来源", "Retrieved {{count}} sources": "检索到 {{count}} 个引用来源",
"Retrieved {{count}} sources_other": "检索到 {{count}} 个引用来源", "Retrieved {{count}} sources_other": "检索到 {{count}} 个引用来源",
"Retrieved 1 source": "检索到 1 个引用来源", "Retrieved 1 source": "检索到 1 个引用来源",
"Retry Count": "",
"Rich Text Input for Chat": "富文本对话框", "Rich Text Input for Chat": "富文本对话框",
"RK": "排名", "RK": "排名",
"Role": "角色", "Role": "角色",

View file

@ -1339,6 +1339,7 @@
"Reply in Thread": "在討論串中回覆", "Reply in Thread": "在討論串中回覆",
"Reply to thread...": "回覆討論串...", "Reply to thread...": "回覆討論串...",
"Replying to {{NAME}}": "回覆 {{NAME}}", "Replying to {{NAME}}": "回覆 {{NAME}}",
"Request Timeout (ms)": "",
"required": "必填", "required": "必填",
"Reranking Engine": "重新排序引擎", "Reranking Engine": "重新排序引擎",
"Reranking Model": "重新排序模型", "Reranking Model": "重新排序模型",
@ -1359,6 +1360,7 @@
"Retrieved {{count}} sources": "搜尋到 {{count}} 個來源", "Retrieved {{count}} sources": "搜尋到 {{count}} 個來源",
"Retrieved {{count}} sources_other": "搜索到 {{count}} 個來源", "Retrieved {{count}} sources_other": "搜索到 {{count}} 個來源",
"Retrieved 1 source": "搜索到 1 個來源", "Retrieved 1 source": "搜索到 1 個來源",
"Retry Count": "",
"Rich Text Input for Chat": "使用富文字輸入對話", "Rich Text Input for Chat": "使用富文字輸入對話",
"RK": "RK", "RK": "RK",
"Role": "角色", "Role": "角色",