Commit 06cbe337 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

feat: youtube loader language env var

parent d3822f78
...@@ -92,6 +92,7 @@ from config import ( ...@@ -92,6 +92,7 @@ from config import (
CHUNK_OVERLAP, CHUNK_OVERLAP,
RAG_TEMPLATE, RAG_TEMPLATE,
ENABLE_RAG_LOCAL_WEB_FETCH, ENABLE_RAG_LOCAL_WEB_FETCH,
YOUTUBE_LOADER_LANGUAGE,
) )
from constants import ERROR_MESSAGES from constants import ERROR_MESSAGES
...@@ -124,7 +125,7 @@ app.state.OPENAI_API_KEY = RAG_OPENAI_API_KEY ...@@ -124,7 +125,7 @@ app.state.OPENAI_API_KEY = RAG_OPENAI_API_KEY
app.state.PDF_EXTRACT_IMAGES = PDF_EXTRACT_IMAGES app.state.PDF_EXTRACT_IMAGES = PDF_EXTRACT_IMAGES
app.state.YOUTUBE_LOADER_LANGUAGE = ["en"] app.state.YOUTUBE_LOADER_LANGUAGE = YOUTUBE_LOADER_LANGUAGE
app.state.YOUTUBE_LOADER_TRANSLATION = None app.state.YOUTUBE_LOADER_TRANSLATION = None
......
...@@ -493,13 +493,6 @@ RAG_RERANKING_MODEL_TRUST_REMOTE_CODE = ( ...@@ -493,13 +493,6 @@ RAG_RERANKING_MODEL_TRUST_REMOTE_CODE = (
os.environ.get("RAG_RERANKING_MODEL_TRUST_REMOTE_CODE", "").lower() == "true" os.environ.get("RAG_RERANKING_MODEL_TRUST_REMOTE_CODE", "").lower() == "true"
) )
# device type embedding models - "cpu" (default), "cuda" (nvidia gpu required) or "mps" (apple silicon) - choosing this right can lead to better performance
USE_CUDA = os.environ.get("USE_CUDA_DOCKER", "false")
if USE_CUDA.lower() == "true":
DEVICE_TYPE = "cuda"
else:
DEVICE_TYPE = "cpu"
if CHROMA_HTTP_HOST != "": if CHROMA_HTTP_HOST != "":
CHROMA_CLIENT = chromadb.HttpClient( CHROMA_CLIENT = chromadb.HttpClient(
...@@ -519,6 +512,16 @@ else: ...@@ -519,6 +512,16 @@ else:
database=CHROMA_DATABASE, database=CHROMA_DATABASE,
) )
# device type embedding models - "cpu" (default), "cuda" (nvidia gpu required) or "mps" (apple silicon) - choosing this right can lead to better performance
USE_CUDA = os.environ.get("USE_CUDA_DOCKER", "false")
if USE_CUDA.lower() == "true":
DEVICE_TYPE = "cuda"
else:
DEVICE_TYPE = "cpu"
CHUNK_SIZE = int(os.environ.get("CHUNK_SIZE", "1500")) CHUNK_SIZE = int(os.environ.get("CHUNK_SIZE", "1500"))
CHUNK_OVERLAP = int(os.environ.get("CHUNK_OVERLAP", "100")) CHUNK_OVERLAP = int(os.environ.get("CHUNK_OVERLAP", "100"))
...@@ -545,6 +548,8 @@ ENABLE_RAG_LOCAL_WEB_FETCH = ( ...@@ -545,6 +548,8 @@ ENABLE_RAG_LOCAL_WEB_FETCH = (
os.getenv("ENABLE_RAG_LOCAL_WEB_FETCH", "False").lower() == "true" os.getenv("ENABLE_RAG_LOCAL_WEB_FETCH", "False").lower() == "true"
) )
YOUTUBE_LOADER_LANGUAGE = os.getenv("YOUTUBE_LOADER_LANGUAGE", "en").split(",")
#################################### ####################################
# Transcribe # Transcribe
#################################### ####################################
......
...@@ -171,6 +171,7 @@ ...@@ -171,6 +171,7 @@
"Enter Chunk Overlap": "أدخل Chunk المتداخل", "Enter Chunk Overlap": "أدخل Chunk المتداخل",
"Enter Chunk Size": "أدخل Chunk الحجم", "Enter Chunk Size": "أدخل Chunk الحجم",
"Enter Image Size (e.g. 512x512)": "أدخل حجم الصورة (e.g. 512x512)", "Enter Image Size (e.g. 512x512)": "أدخل حجم الصورة (e.g. 512x512)",
"Enter language codes": "",
"Enter LiteLLM API Base URL (litellm_params.api_base)": "أدخل عنوان URL الأساسي لواجهة برمجة تطبيقات LiteLLM (litellm_params.api_base)", "Enter LiteLLM API Base URL (litellm_params.api_base)": "أدخل عنوان URL الأساسي لواجهة برمجة تطبيقات LiteLLM (litellm_params.api_base)",
"Enter LiteLLM API Key (litellm_params.api_key)": "أدخل مفتاح LiteLLM API (litellm_params.api_key)", "Enter LiteLLM API Key (litellm_params.api_key)": "أدخل مفتاح LiteLLM API (litellm_params.api_key)",
"Enter LiteLLM API RPM (litellm_params.rpm)": "أدخل LiteLLM API RPM (litllm_params.rpm)", "Enter LiteLLM API RPM (litellm_params.rpm)": "أدخل LiteLLM API RPM (litllm_params.rpm)",
...@@ -356,7 +357,6 @@ ...@@ -356,7 +357,6 @@
"Reranking model set to \"{{reranking_model}}\"": "تم ضبط نموذج إعادة الترتيب على \"{{reranking_model}}\"", "Reranking model set to \"{{reranking_model}}\"": "تم ضبط نموذج إعادة الترتيب على \"{{reranking_model}}\"",
"Reset Vector Storage": "إعادة تعيين تخزين المتجهات", "Reset Vector Storage": "إعادة تعيين تخزين المتجهات",
"Response AutoCopy to Clipboard": "النسخ التلقائي للاستجابة إلى الحافظة", "Response AutoCopy to Clipboard": "النسخ التلقائي للاستجابة إلى الحافظة",
"Retrieval Augmented Generation Settings": "",
"Role": "منصب", "Role": "منصب",
"Rosé Pine": "Rosé Pine", "Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn", "Rosé Pine Dawn": "Rosé Pine Dawn",
...@@ -473,6 +473,7 @@ ...@@ -473,6 +473,7 @@
"Version": "إصدار", "Version": "إصدار",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "تحذير: إذا قمت بتحديث أو تغيير نموذج التضمين الخاص بك، فستحتاج إلى إعادة استيراد كافة المستندات.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "تحذير: إذا قمت بتحديث أو تغيير نموذج التضمين الخاص بك، فستحتاج إلى إعادة استيراد كافة المستندات.",
"Web": "Web", "Web": "Web",
"Web Loader Settings": "",
"Web Params": "", "Web Params": "",
"Webhook URL": "Webhook الرابط", "Webhook URL": "Webhook الرابط",
"WebUI Add-ons": "WebUI الأضافات", "WebUI Add-ons": "WebUI الأضافات",
...@@ -489,5 +490,6 @@ ...@@ -489,5 +490,6 @@
"You have shared this chat": "", "You have shared this chat": "",
"You're a helpful assistant.": "مساعدك المفيد هنا", "You're a helpful assistant.": "مساعدك المفيد هنا",
"You're now logged in.": "لقد قمت الآن بتسجيل الدخول.", "You're now logged in.": "لقد قمت الآن بتسجيل الدخول.",
"Youtube": "Youtube" "Youtube": "Youtube",
"Youtube Loader Settings": ""
} }
...@@ -171,6 +171,7 @@ ...@@ -171,6 +171,7 @@
"Enter Chunk Overlap": "Въведете Chunk Overlap", "Enter Chunk Overlap": "Въведете Chunk Overlap",
"Enter Chunk Size": "Въведете Chunk Size", "Enter Chunk Size": "Въведете Chunk Size",
"Enter Image Size (e.g. 512x512)": "Въведете размер на изображението (напр. 512x512)", "Enter Image Size (e.g. 512x512)": "Въведете размер на изображението (напр. 512x512)",
"Enter language codes": "",
"Enter LiteLLM API Base URL (litellm_params.api_base)": "Въведете LiteLLM API Base URL (litellm_params.api_base)", "Enter LiteLLM API Base URL (litellm_params.api_base)": "Въведете LiteLLM API Base URL (litellm_params.api_base)",
"Enter LiteLLM API Key (litellm_params.api_key)": "Въведете LiteLLM API Key (litellm_params.api_key)", "Enter LiteLLM API Key (litellm_params.api_key)": "Въведете LiteLLM API Key (litellm_params.api_key)",
"Enter LiteLLM API RPM (litellm_params.rpm)": "Въведете LiteLLM API RPM (litellm_params.rpm)", "Enter LiteLLM API RPM (litellm_params.rpm)": "Въведете LiteLLM API RPM (litellm_params.rpm)",
...@@ -356,7 +357,6 @@ ...@@ -356,7 +357,6 @@
"Reranking model set to \"{{reranking_model}}\"": "", "Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "Ресет Vector Storage", "Reset Vector Storage": "Ресет Vector Storage",
"Response AutoCopy to Clipboard": "Аувтоматично копиране на отговор в клипборда", "Response AutoCopy to Clipboard": "Аувтоматично копиране на отговор в клипборда",
"Retrieval Augmented Generation Settings": "",
"Role": "Роля", "Role": "Роля",
"Rosé Pine": "Rosé Pine", "Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn", "Rosé Pine Dawn": "Rosé Pine Dawn",
...@@ -473,6 +473,7 @@ ...@@ -473,6 +473,7 @@
"Version": "Версия", "Version": "Версия",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "Уеб", "Web": "Уеб",
"Web Loader Settings": "",
"Web Params": "", "Web Params": "",
"Webhook URL": "", "Webhook URL": "",
"WebUI Add-ons": "WebUI Добавки", "WebUI Add-ons": "WebUI Добавки",
...@@ -489,5 +490,6 @@ ...@@ -489,5 +490,6 @@
"You have shared this chat": "", "You have shared this chat": "",
"You're a helpful assistant.": "Вие сте полезен асистент.", "You're a helpful assistant.": "Вие сте полезен асистент.",
"You're now logged in.": "Сега, вие влязохте в системата.", "You're now logged in.": "Сега, вие влязохте в системата.",
"Youtube": "" "Youtube": "",
"Youtube Loader Settings": ""
} }
...@@ -171,6 +171,7 @@ ...@@ -171,6 +171,7 @@
"Enter Chunk Overlap": "চাঙ্ক ওভারল্যাপ লিখুন", "Enter Chunk Overlap": "চাঙ্ক ওভারল্যাপ লিখুন",
"Enter Chunk Size": "চাংক সাইজ লিখুন", "Enter Chunk Size": "চাংক সাইজ লিখুন",
"Enter Image Size (e.g. 512x512)": "ছবির মাপ লিখুন (যেমন 512x512)", "Enter Image Size (e.g. 512x512)": "ছবির মাপ লিখুন (যেমন 512x512)",
"Enter language codes": "",
"Enter LiteLLM API Base URL (litellm_params.api_base)": "LiteLLM এপিআই বেজ ইউআরএল লিখুন (litellm_params.api_base)", "Enter LiteLLM API Base URL (litellm_params.api_base)": "LiteLLM এপিআই বেজ ইউআরএল লিখুন (litellm_params.api_base)",
"Enter LiteLLM API Key (litellm_params.api_key)": "LiteLLM এপিআই কোড লিখুন (litellm_params.api_key)", "Enter LiteLLM API Key (litellm_params.api_key)": "LiteLLM এপিআই কোড লিখুন (litellm_params.api_key)",
"Enter LiteLLM API RPM (litellm_params.rpm)": "LiteLLM এপিআই RPM দিন (litellm_params.rpm)", "Enter LiteLLM API RPM (litellm_params.rpm)": "LiteLLM এপিআই RPM দিন (litellm_params.rpm)",
...@@ -356,7 +357,6 @@ ...@@ -356,7 +357,6 @@
"Reranking model set to \"{{reranking_model}}\"": "", "Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "ভেক্টর স্টোরেজ রিসেট করুন", "Reset Vector Storage": "ভেক্টর স্টোরেজ রিসেট করুন",
"Response AutoCopy to Clipboard": "রেসপন্সগুলো স্বয়ংক্রিভাবে ক্লিপবোর্ডে কপি হবে", "Response AutoCopy to Clipboard": "রেসপন্সগুলো স্বয়ংক্রিভাবে ক্লিপবোর্ডে কপি হবে",
"Retrieval Augmented Generation Settings": "",
"Role": "পদবি", "Role": "পদবি",
"Rosé Pine": "রোজ পাইন", "Rosé Pine": "রোজ পাইন",
"Rosé Pine Dawn": "ভোরের রোজ পাইন", "Rosé Pine Dawn": "ভোরের রোজ পাইন",
...@@ -473,6 +473,7 @@ ...@@ -473,6 +473,7 @@
"Version": "ভার্সন", "Version": "ভার্সন",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "ওয়েব", "Web": "ওয়েব",
"Web Loader Settings": "",
"Web Params": "", "Web Params": "",
"Webhook URL": "", "Webhook URL": "",
"WebUI Add-ons": "WebUI এড-অনসমূহ", "WebUI Add-ons": "WebUI এড-অনসমূহ",
...@@ -489,5 +490,6 @@ ...@@ -489,5 +490,6 @@
"You have shared this chat": "", "You have shared this chat": "",
"You're a helpful assistant.": "আপনি একজন উপকারী এসিস্ট্যান্ট", "You're a helpful assistant.": "আপনি একজন উপকারী এসিস্ট্যান্ট",
"You're now logged in.": "আপনি এখন লগইন করা অবস্থায় আছেন", "You're now logged in.": "আপনি এখন লগইন করা অবস্থায় আছেন",
"Youtube": "" "Youtube": "",
"Youtube Loader Settings": ""
} }
...@@ -171,6 +171,7 @@ ...@@ -171,6 +171,7 @@
"Enter Chunk Overlap": "Introdueix el Solapament de Blocs", "Enter Chunk Overlap": "Introdueix el Solapament de Blocs",
"Enter Chunk Size": "Introdueix la Mida del Bloc", "Enter Chunk Size": "Introdueix la Mida del Bloc",
"Enter Image Size (e.g. 512x512)": "Introdueix la Mida de la Imatge (p. ex. 512x512)", "Enter Image Size (e.g. 512x512)": "Introdueix la Mida de la Imatge (p. ex. 512x512)",
"Enter language codes": "",
"Enter LiteLLM API Base URL (litellm_params.api_base)": "Introdueix l'URL Base de LiteLLM API (litellm_params.api_base)", "Enter LiteLLM API Base URL (litellm_params.api_base)": "Introdueix l'URL Base de LiteLLM API (litellm_params.api_base)",
"Enter LiteLLM API Key (litellm_params.api_key)": "Introdueix la Clau de LiteLLM API (litellm_params.api_key)", "Enter LiteLLM API Key (litellm_params.api_key)": "Introdueix la Clau de LiteLLM API (litellm_params.api_key)",
"Enter LiteLLM API RPM (litellm_params.rpm)": "Introdueix RPM de LiteLLM API (litellm_params.rpm)", "Enter LiteLLM API RPM (litellm_params.rpm)": "Introdueix RPM de LiteLLM API (litellm_params.rpm)",
...@@ -356,7 +357,6 @@ ...@@ -356,7 +357,6 @@
"Reranking model set to \"{{reranking_model}}\"": "", "Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "Reinicia l'Emmagatzematge de Vectors", "Reset Vector Storage": "Reinicia l'Emmagatzematge de Vectors",
"Response AutoCopy to Clipboard": "Resposta AutoCopiar al Portapapers", "Response AutoCopy to Clipboard": "Resposta AutoCopiar al Portapapers",
"Retrieval Augmented Generation Settings": "",
"Role": "Rol", "Role": "Rol",
"Rosé Pine": "Rosé Pine", "Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Albada Rosé Pine", "Rosé Pine Dawn": "Albada Rosé Pine",
...@@ -473,6 +473,7 @@ ...@@ -473,6 +473,7 @@
"Version": "Versió", "Version": "Versió",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "Web", "Web": "Web",
"Web Loader Settings": "",
"Web Params": "", "Web Params": "",
"Webhook URL": "", "Webhook URL": "",
"WebUI Add-ons": "Complements de WebUI", "WebUI Add-ons": "Complements de WebUI",
...@@ -489,5 +490,6 @@ ...@@ -489,5 +490,6 @@
"You have shared this chat": "", "You have shared this chat": "",
"You're a helpful assistant.": "Ets un assistent útil.", "You're a helpful assistant.": "Ets un assistent útil.",
"You're now logged in.": "Ara estàs connectat.", "You're now logged in.": "Ara estàs connectat.",
"Youtube": "" "Youtube": "",
"Youtube Loader Settings": ""
} }
...@@ -171,6 +171,7 @@ ...@@ -171,6 +171,7 @@
"Enter Chunk Overlap": "Gib den Chunk Overlap ein", "Enter Chunk Overlap": "Gib den Chunk Overlap ein",
"Enter Chunk Size": "Gib die Chunk Size ein", "Enter Chunk Size": "Gib die Chunk Size ein",
"Enter Image Size (e.g. 512x512)": "Gib die Bildgröße ein (z.B. 512x512)", "Enter Image Size (e.g. 512x512)": "Gib die Bildgröße ein (z.B. 512x512)",
"Enter language codes": "",
"Enter LiteLLM API Base URL (litellm_params.api_base)": "Gib die LiteLLM API BASE URL ein (litellm_params.api_base)", "Enter LiteLLM API Base URL (litellm_params.api_base)": "Gib die LiteLLM API BASE URL ein (litellm_params.api_base)",
"Enter LiteLLM API Key (litellm_params.api_key)": "Gib den LiteLLM API Key ein (litellm_params.api_key)", "Enter LiteLLM API Key (litellm_params.api_key)": "Gib den LiteLLM API Key ein (litellm_params.api_key)",
"Enter LiteLLM API RPM (litellm_params.rpm)": "Gib die LiteLLM API RPM ein (litellm_params.rpm)", "Enter LiteLLM API RPM (litellm_params.rpm)": "Gib die LiteLLM API RPM ein (litellm_params.rpm)",
...@@ -356,7 +357,6 @@ ...@@ -356,7 +357,6 @@
"Reranking model set to \"{{reranking_model}}\"": "", "Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "Vektorspeicher zurücksetzen", "Reset Vector Storage": "Vektorspeicher zurücksetzen",
"Response AutoCopy to Clipboard": "Antwort automatisch in die Zwischenablage kopieren", "Response AutoCopy to Clipboard": "Antwort automatisch in die Zwischenablage kopieren",
"Retrieval Augmented Generation Settings": "Retrieval Augmented Generation Einstellungen",
"Role": "Rolle", "Role": "Rolle",
"Rosé Pine": "Rosé Pine", "Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn", "Rosé Pine Dawn": "Rosé Pine Dawn",
...@@ -473,6 +473,7 @@ ...@@ -473,6 +473,7 @@
"Version": "Version", "Version": "Version",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Warnung: Wenn du dein Einbettungsmodell aktualisierst oder änderst, musst du alle Dokumente erneut importieren.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "Warnung: Wenn du dein Einbettungsmodell aktualisierst oder änderst, musst du alle Dokumente erneut importieren.",
"Web": "Web", "Web": "Web",
"Web Loader Settings": "",
"Web Params": "Web Parameter", "Web Params": "Web Parameter",
"Webhook URL": "Webhook URL", "Webhook URL": "Webhook URL",
"WebUI Add-ons": "WebUI-Add-Ons", "WebUI Add-ons": "WebUI-Add-Ons",
...@@ -489,5 +490,6 @@ ...@@ -489,5 +490,6 @@
"You have shared this chat": "Du hast diesen Chat", "You have shared this chat": "Du hast diesen Chat",
"You're a helpful assistant.": "Du bist ein hilfreicher Assistent.", "You're a helpful assistant.": "Du bist ein hilfreicher Assistent.",
"You're now logged in.": "Du bist nun eingeloggt.", "You're now logged in.": "Du bist nun eingeloggt.",
"Youtube": "YouTube" "Youtube": "YouTube",
"Youtube Loader Settings": ""
} }
...@@ -171,6 +171,7 @@ ...@@ -171,6 +171,7 @@
"Enter Chunk Overlap": "Enter Overlap of Chunks", "Enter Chunk Overlap": "Enter Overlap of Chunks",
"Enter Chunk Size": "Enter Size of Chunk", "Enter Chunk Size": "Enter Size of Chunk",
"Enter Image Size (e.g. 512x512)": "Enter Size of Wow (e.g. 512x512)", "Enter Image Size (e.g. 512x512)": "Enter Size of Wow (e.g. 512x512)",
"Enter language codes": "",
"Enter LiteLLM API Base URL (litellm_params.api_base)": "Enter Base URL of LiteLLM API (litellm_params.api_base)", "Enter LiteLLM API Base URL (litellm_params.api_base)": "Enter Base URL of LiteLLM API (litellm_params.api_base)",
"Enter LiteLLM API Key (litellm_params.api_key)": "Enter API Bark of LiteLLM (litellm_params.api_key)", "Enter LiteLLM API Key (litellm_params.api_key)": "Enter API Bark of LiteLLM (litellm_params.api_key)",
"Enter LiteLLM API RPM (litellm_params.rpm)": "Enter RPM of LiteLLM API (litellm_params.rpm)", "Enter LiteLLM API RPM (litellm_params.rpm)": "Enter RPM of LiteLLM API (litellm_params.rpm)",
...@@ -356,7 +357,6 @@ ...@@ -356,7 +357,6 @@
"Reranking model set to \"{{reranking_model}}\"": "", "Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "Reset Vector Storage", "Reset Vector Storage": "Reset Vector Storage",
"Response AutoCopy to Clipboard": "Copy Bark Auto Bark", "Response AutoCopy to Clipboard": "Copy Bark Auto Bark",
"Retrieval Augmented Generation Settings": "",
"Role": "Role", "Role": "Role",
"Rosé Pine": "Rosé Pine", "Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn", "Rosé Pine Dawn": "Rosé Pine Dawn",
...@@ -473,6 +473,7 @@ ...@@ -473,6 +473,7 @@
"Version": "Version much version", "Version": "Version much version",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "Web very web", "Web": "Web very web",
"Web Loader Settings": "",
"Web Params": "", "Web Params": "",
"Webhook URL": "", "Webhook URL": "",
"WebUI Add-ons": "WebUI Add-ons very add-ons", "WebUI Add-ons": "WebUI Add-ons very add-ons",
...@@ -489,5 +490,6 @@ ...@@ -489,5 +490,6 @@
"You have shared this chat": "", "You have shared this chat": "",
"You're a helpful assistant.": "You're a helpful assistant. Much helpful.", "You're a helpful assistant.": "You're a helpful assistant. Much helpful.",
"You're now logged in.": "You're now logged in. Much logged.", "You're now logged in.": "You're now logged in. Much logged.",
"Youtube": "" "Youtube": "",
"Youtube Loader Settings": ""
} }
...@@ -171,6 +171,7 @@ ...@@ -171,6 +171,7 @@
"Enter Chunk Overlap": "", "Enter Chunk Overlap": "",
"Enter Chunk Size": "", "Enter Chunk Size": "",
"Enter Image Size (e.g. 512x512)": "", "Enter Image Size (e.g. 512x512)": "",
"Enter language codes": "",
"Enter LiteLLM API Base URL (litellm_params.api_base)": "", "Enter LiteLLM API Base URL (litellm_params.api_base)": "",
"Enter LiteLLM API Key (litellm_params.api_key)": "", "Enter LiteLLM API Key (litellm_params.api_key)": "",
"Enter LiteLLM API RPM (litellm_params.rpm)": "", "Enter LiteLLM API RPM (litellm_params.rpm)": "",
...@@ -356,7 +357,6 @@ ...@@ -356,7 +357,6 @@
"Reranking model set to \"{{reranking_model}}\"": "", "Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "", "Reset Vector Storage": "",
"Response AutoCopy to Clipboard": "", "Response AutoCopy to Clipboard": "",
"Retrieval Augmented Generation Settings": "",
"Role": "", "Role": "",
"Rosé Pine": "", "Rosé Pine": "",
"Rosé Pine Dawn": "", "Rosé Pine Dawn": "",
...@@ -473,6 +473,7 @@ ...@@ -473,6 +473,7 @@
"Version": "", "Version": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "", "Web": "",
"Web Loader Settings": "",
"Web Params": "", "Web Params": "",
"Webhook URL": "", "Webhook URL": "",
"WebUI Add-ons": "", "WebUI Add-ons": "",
...@@ -489,5 +490,6 @@ ...@@ -489,5 +490,6 @@
"You have shared this chat": "", "You have shared this chat": "",
"You're a helpful assistant.": "", "You're a helpful assistant.": "",
"You're now logged in.": "", "You're now logged in.": "",
"Youtube": "" "Youtube": "",
"Youtube Loader Settings": ""
} }
...@@ -171,6 +171,7 @@ ...@@ -171,6 +171,7 @@
"Enter Chunk Overlap": "", "Enter Chunk Overlap": "",
"Enter Chunk Size": "", "Enter Chunk Size": "",
"Enter Image Size (e.g. 512x512)": "", "Enter Image Size (e.g. 512x512)": "",
"Enter language codes": "",
"Enter LiteLLM API Base URL (litellm_params.api_base)": "", "Enter LiteLLM API Base URL (litellm_params.api_base)": "",
"Enter LiteLLM API Key (litellm_params.api_key)": "", "Enter LiteLLM API Key (litellm_params.api_key)": "",
"Enter LiteLLM API RPM (litellm_params.rpm)": "", "Enter LiteLLM API RPM (litellm_params.rpm)": "",
...@@ -356,7 +357,6 @@ ...@@ -356,7 +357,6 @@
"Reranking model set to \"{{reranking_model}}\"": "", "Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "", "Reset Vector Storage": "",
"Response AutoCopy to Clipboard": "", "Response AutoCopy to Clipboard": "",
"Retrieval Augmented Generation Settings": "",
"Role": "", "Role": "",
"Rosé Pine": "", "Rosé Pine": "",
"Rosé Pine Dawn": "", "Rosé Pine Dawn": "",
...@@ -473,6 +473,7 @@ ...@@ -473,6 +473,7 @@
"Version": "", "Version": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "", "Web": "",
"Web Loader Settings": "",
"Web Params": "", "Web Params": "",
"Webhook URL": "", "Webhook URL": "",
"WebUI Add-ons": "", "WebUI Add-ons": "",
...@@ -489,5 +490,6 @@ ...@@ -489,5 +490,6 @@
"You have shared this chat": "", "You have shared this chat": "",
"You're a helpful assistant.": "", "You're a helpful assistant.": "",
"You're now logged in.": "", "You're now logged in.": "",
"Youtube": "" "Youtube": "",
"Youtube Loader Settings": ""
} }
...@@ -171,6 +171,7 @@ ...@@ -171,6 +171,7 @@
"Enter Chunk Overlap": "Ingresar superposición de fragmentos", "Enter Chunk Overlap": "Ingresar superposición de fragmentos",
"Enter Chunk Size": "Ingrese el tamaño del fragmento", "Enter Chunk Size": "Ingrese el tamaño del fragmento",
"Enter Image Size (e.g. 512x512)": "Ingrese el tamaño de la imagen (p.ej. 512x512)", "Enter Image Size (e.g. 512x512)": "Ingrese el tamaño de la imagen (p.ej. 512x512)",
"Enter language codes": "",
"Enter LiteLLM API Base URL (litellm_params.api_base)": "Ingrese la URL base de la API LiteLLM (litellm_params.api_base)", "Enter LiteLLM API Base URL (litellm_params.api_base)": "Ingrese la URL base de la API LiteLLM (litellm_params.api_base)",
"Enter LiteLLM API Key (litellm_params.api_key)": "Ingrese la clave API LiteLLM (litellm_params.api_key)", "Enter LiteLLM API Key (litellm_params.api_key)": "Ingrese la clave API LiteLLM (litellm_params.api_key)",
"Enter LiteLLM API RPM (litellm_params.rpm)": "Ingrese el RPM de la API LiteLLM (litellm_params.rpm)", "Enter LiteLLM API RPM (litellm_params.rpm)": "Ingrese el RPM de la API LiteLLM (litellm_params.rpm)",
...@@ -356,7 +357,6 @@ ...@@ -356,7 +357,6 @@
"Reranking model set to \"{{reranking_model}}\"": "", "Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "Restablecer almacenamiento vectorial", "Reset Vector Storage": "Restablecer almacenamiento vectorial",
"Response AutoCopy to Clipboard": "Copiar respuesta automáticamente al portapapeles", "Response AutoCopy to Clipboard": "Copiar respuesta automáticamente al portapapeles",
"Retrieval Augmented Generation Settings": "",
"Role": "Rol", "Role": "Rol",
"Rosé Pine": "Rosé Pine", "Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn", "Rosé Pine Dawn": "Rosé Pine Dawn",
...@@ -473,6 +473,7 @@ ...@@ -473,6 +473,7 @@
"Version": "Versión", "Version": "Versión",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "Web", "Web": "Web",
"Web Loader Settings": "",
"Web Params": "", "Web Params": "",
"Webhook URL": "", "Webhook URL": "",
"WebUI Add-ons": "WebUI Add-ons", "WebUI Add-ons": "WebUI Add-ons",
...@@ -489,5 +490,6 @@ ...@@ -489,5 +490,6 @@
"You have shared this chat": "", "You have shared this chat": "",
"You're a helpful assistant.": "Eres un asistente útil.", "You're a helpful assistant.": "Eres un asistente útil.",
"You're now logged in.": "Has iniciado sesión.", "You're now logged in.": "Has iniciado sesión.",
"Youtube": "" "Youtube": "",
"Youtube Loader Settings": ""
} }
...@@ -171,6 +171,7 @@ ...@@ -171,6 +171,7 @@
"Enter Chunk Overlap": "مقدار Chunk Overlap را وارد کنید", "Enter Chunk Overlap": "مقدار Chunk Overlap را وارد کنید",
"Enter Chunk Size": "مقدار Chunk Size را وارد کنید", "Enter Chunk Size": "مقدار Chunk Size را وارد کنید",
"Enter Image Size (e.g. 512x512)": "اندازه تصویر را وارد کنید (مثال: 512x512)", "Enter Image Size (e.g. 512x512)": "اندازه تصویر را وارد کنید (مثال: 512x512)",
"Enter language codes": "",
"Enter LiteLLM API Base URL (litellm_params.api_base)": "URL پایه مربوط به LiteLLM API را وارد کنید (litellm_params.api_base)", "Enter LiteLLM API Base URL (litellm_params.api_base)": "URL پایه مربوط به LiteLLM API را وارد کنید (litellm_params.api_base)",
"Enter LiteLLM API Key (litellm_params.api_key)": "کلید API مربوط به LiteLLM را وارد کنید (litellm_params.api_key)", "Enter LiteLLM API Key (litellm_params.api_key)": "کلید API مربوط به LiteLLM را وارد کنید (litellm_params.api_key)",
"Enter LiteLLM API RPM (litellm_params.rpm)": "RPM API مربوط به LiteLLM را وارد کنید (litellm_params.rpm)", "Enter LiteLLM API RPM (litellm_params.rpm)": "RPM API مربوط به LiteLLM را وارد کنید (litellm_params.rpm)",
...@@ -356,7 +357,6 @@ ...@@ -356,7 +357,6 @@
"Reranking model set to \"{{reranking_model}}\"": "", "Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "بازنشانی ذخیره سازی برداری", "Reset Vector Storage": "بازنشانی ذخیره سازی برداری",
"Response AutoCopy to Clipboard": "کپی خودکار پاسخ به کلیپ بورد", "Response AutoCopy to Clipboard": "کپی خودکار پاسخ به کلیپ بورد",
"Retrieval Augmented Generation Settings": "",
"Role": "نقش", "Role": "نقش",
"Rosé Pine": "Rosé Pine", "Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn", "Rosé Pine Dawn": "Rosé Pine Dawn",
...@@ -473,6 +473,7 @@ ...@@ -473,6 +473,7 @@
"Version": "نسخه", "Version": "نسخه",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "وب", "Web": "وب",
"Web Loader Settings": "",
"Web Params": "", "Web Params": "",
"Webhook URL": "", "Webhook URL": "",
"WebUI Add-ons": "WebUI افزونه\u200cهای", "WebUI Add-ons": "WebUI افزونه\u200cهای",
...@@ -489,5 +490,6 @@ ...@@ -489,5 +490,6 @@
"You have shared this chat": "", "You have shared this chat": "",
"You're a helpful assistant.": "تو یک دستیار سودمند هستی.", "You're a helpful assistant.": "تو یک دستیار سودمند هستی.",
"You're now logged in.": "شما اکنون وارد شده\u200cاید.", "You're now logged in.": "شما اکنون وارد شده\u200cاید.",
"Youtube": "" "Youtube": "",
"Youtube Loader Settings": ""
} }
...@@ -171,6 +171,7 @@ ...@@ -171,6 +171,7 @@
"Enter Chunk Overlap": "Syötä osien päällekkäisyys", "Enter Chunk Overlap": "Syötä osien päällekkäisyys",
"Enter Chunk Size": "Syötä osien koko", "Enter Chunk Size": "Syötä osien koko",
"Enter Image Size (e.g. 512x512)": "Syötä kuvan koko (esim. 512x512)", "Enter Image Size (e.g. 512x512)": "Syötä kuvan koko (esim. 512x512)",
"Enter language codes": "",
"Enter LiteLLM API Base URL (litellm_params.api_base)": "Syötä LiteLLM-APIn perus-URL (litellm_params.api_base)", "Enter LiteLLM API Base URL (litellm_params.api_base)": "Syötä LiteLLM-APIn perus-URL (litellm_params.api_base)",
"Enter LiteLLM API Key (litellm_params.api_key)": "Syötä LiteLLM-APIn avain (litellm_params.api_key)", "Enter LiteLLM API Key (litellm_params.api_key)": "Syötä LiteLLM-APIn avain (litellm_params.api_key)",
"Enter LiteLLM API RPM (litellm_params.rpm)": "Syötä LiteLLM-APIn RPM (litellm_params.rpm)", "Enter LiteLLM API RPM (litellm_params.rpm)": "Syötä LiteLLM-APIn RPM (litellm_params.rpm)",
...@@ -356,7 +357,6 @@ ...@@ -356,7 +357,6 @@
"Reranking model set to \"{{reranking_model}}\"": "\"{{reranking_model}}\" valittu uudelleenpisteytysmalliksi", "Reranking model set to \"{{reranking_model}}\"": "\"{{reranking_model}}\" valittu uudelleenpisteytysmalliksi",
"Reset Vector Storage": "Tyhjennä vektorivarasto", "Reset Vector Storage": "Tyhjennä vektorivarasto",
"Response AutoCopy to Clipboard": "Vastauksen automaattikopiointi leikepöydälle", "Response AutoCopy to Clipboard": "Vastauksen automaattikopiointi leikepöydälle",
"Retrieval Augmented Generation Settings": "RAG-generointiasetukset",
"Role": "Rooli", "Role": "Rooli",
"Rosé Pine": "Rosee-mänty", "Rosé Pine": "Rosee-mänty",
"Rosé Pine Dawn": "Aamuinen Rosee-mänty", "Rosé Pine Dawn": "Aamuinen Rosee-mänty",
...@@ -473,6 +473,7 @@ ...@@ -473,6 +473,7 @@
"Version": "Versio", "Version": "Versio",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Varoitus: Jos päivität tai vaihdat upotusmallia, sinun on tuotava kaikki asiakirjat uudelleen.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "Varoitus: Jos päivität tai vaihdat upotusmallia, sinun on tuotava kaikki asiakirjat uudelleen.",
"Web": "Web", "Web": "Web",
"Web Loader Settings": "",
"Web Params": "Web-parametrit", "Web Params": "Web-parametrit",
"Webhook URL": "Webhook-URL", "Webhook URL": "Webhook-URL",
"WebUI Add-ons": "WebUI-lisäosat", "WebUI Add-ons": "WebUI-lisäosat",
...@@ -489,5 +490,6 @@ ...@@ -489,5 +490,6 @@
"You have shared this chat": "Olet jakanut tämän keskustelun", "You have shared this chat": "Olet jakanut tämän keskustelun",
"You're a helpful assistant.": "Olet avulias apulainen.", "You're a helpful assistant.": "Olet avulias apulainen.",
"You're now logged in.": "Olet nyt kirjautunut sisään.", "You're now logged in.": "Olet nyt kirjautunut sisään.",
"Youtube": "Youtube" "Youtube": "Youtube",
"Youtube Loader Settings": ""
} }
...@@ -171,6 +171,7 @@ ...@@ -171,6 +171,7 @@
"Enter Chunk Overlap": "Entrez le chevauchement de bloc", "Enter Chunk Overlap": "Entrez le chevauchement de bloc",
"Enter Chunk Size": "Entrez la taille du bloc", "Enter Chunk Size": "Entrez la taille du bloc",
"Enter Image Size (e.g. 512x512)": "Entrez la taille de l'image (p. ex. 512x512)", "Enter Image Size (e.g. 512x512)": "Entrez la taille de l'image (p. ex. 512x512)",
"Enter language codes": "",
"Enter LiteLLM API Base URL (litellm_params.api_base)": "Entrez l'URL de base de l'API LiteLLM (litellm_params.api_base)", "Enter LiteLLM API Base URL (litellm_params.api_base)": "Entrez l'URL de base de l'API LiteLLM (litellm_params.api_base)",
"Enter LiteLLM API Key (litellm_params.api_key)": "Entrez la clé API LiteLLM (litellm_params.api_key)", "Enter LiteLLM API Key (litellm_params.api_key)": "Entrez la clé API LiteLLM (litellm_params.api_key)",
"Enter LiteLLM API RPM (litellm_params.rpm)": "Entrez le RPM de l'API LiteLLM (litellm_params.rpm)", "Enter LiteLLM API RPM (litellm_params.rpm)": "Entrez le RPM de l'API LiteLLM (litellm_params.rpm)",
...@@ -356,7 +357,6 @@ ...@@ -356,7 +357,6 @@
"Reranking model set to \"{{reranking_model}}\"": "", "Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "Réinitialiser le stockage vectoriel", "Reset Vector Storage": "Réinitialiser le stockage vectoriel",
"Response AutoCopy to Clipboard": "Copie automatique de la réponse vers le presse-papiers", "Response AutoCopy to Clipboard": "Copie automatique de la réponse vers le presse-papiers",
"Retrieval Augmented Generation Settings": "",
"Role": "Rôle", "Role": "Rôle",
"Rosé Pine": "Pin Rosé", "Rosé Pine": "Pin Rosé",
"Rosé Pine Dawn": "Aube Pin Rosé", "Rosé Pine Dawn": "Aube Pin Rosé",
...@@ -473,6 +473,7 @@ ...@@ -473,6 +473,7 @@
"Version": "Version", "Version": "Version",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "Web", "Web": "Web",
"Web Loader Settings": "",
"Web Params": "", "Web Params": "",
"Webhook URL": "", "Webhook URL": "",
"WebUI Add-ons": "Add-ons WebUI", "WebUI Add-ons": "Add-ons WebUI",
...@@ -489,5 +490,6 @@ ...@@ -489,5 +490,6 @@
"You have shared this chat": "", "You have shared this chat": "",
"You're a helpful assistant.": "Vous êtes un assistant utile", "You're a helpful assistant.": "Vous êtes un assistant utile",
"You're now logged in.": "Vous êtes maintenant connecté.", "You're now logged in.": "Vous êtes maintenant connecté.",
"Youtube": "" "Youtube": "",
"Youtube Loader Settings": ""
} }
...@@ -171,6 +171,7 @@ ...@@ -171,6 +171,7 @@
"Enter Chunk Overlap": "Entrez le chevauchement de bloc", "Enter Chunk Overlap": "Entrez le chevauchement de bloc",
"Enter Chunk Size": "Entrez la taille du bloc", "Enter Chunk Size": "Entrez la taille du bloc",
"Enter Image Size (e.g. 512x512)": "Entrez la taille de l'image (p. ex. 512x512)", "Enter Image Size (e.g. 512x512)": "Entrez la taille de l'image (p. ex. 512x512)",
"Enter language codes": "",
"Enter LiteLLM API Base URL (litellm_params.api_base)": "Entrez l'URL de base de l'API LiteLLM (litellm_params.api_base)", "Enter LiteLLM API Base URL (litellm_params.api_base)": "Entrez l'URL de base de l'API LiteLLM (litellm_params.api_base)",
"Enter LiteLLM API Key (litellm_params.api_key)": "Entrez la clé API LiteLLM (litellm_params.api_key)", "Enter LiteLLM API Key (litellm_params.api_key)": "Entrez la clé API LiteLLM (litellm_params.api_key)",
"Enter LiteLLM API RPM (litellm_params.rpm)": "Entrez le RPM de l'API LiteLLM (litellm_params.rpm)", "Enter LiteLLM API RPM (litellm_params.rpm)": "Entrez le RPM de l'API LiteLLM (litellm_params.rpm)",
...@@ -356,7 +357,6 @@ ...@@ -356,7 +357,6 @@
"Reranking model set to \"{{reranking_model}}\"": "", "Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "Réinitialiser le stockage de vecteur", "Reset Vector Storage": "Réinitialiser le stockage de vecteur",
"Response AutoCopy to Clipboard": "Copie automatique de la réponse dans le presse-papiers", "Response AutoCopy to Clipboard": "Copie automatique de la réponse dans le presse-papiers",
"Retrieval Augmented Generation Settings": "",
"Role": "Rôle", "Role": "Rôle",
"Rosé Pine": "Pin Rosé", "Rosé Pine": "Pin Rosé",
"Rosé Pine Dawn": "Aube Pin Rosé", "Rosé Pine Dawn": "Aube Pin Rosé",
...@@ -473,6 +473,7 @@ ...@@ -473,6 +473,7 @@
"Version": "Version", "Version": "Version",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "Web", "Web": "Web",
"Web Loader Settings": "",
"Web Params": "", "Web Params": "",
"Webhook URL": "", "Webhook URL": "",
"WebUI Add-ons": "Add-ons WebUI", "WebUI Add-ons": "Add-ons WebUI",
...@@ -489,5 +490,6 @@ ...@@ -489,5 +490,6 @@
"You have shared this chat": "", "You have shared this chat": "",
"You're a helpful assistant.": "Vous êtes un assistant utile", "You're a helpful assistant.": "Vous êtes un assistant utile",
"You're now logged in.": "Vous êtes maintenant connecté.", "You're now logged in.": "Vous êtes maintenant connecté.",
"Youtube": "" "Youtube": "",
"Youtube Loader Settings": ""
} }
...@@ -171,6 +171,7 @@ ...@@ -171,6 +171,7 @@
"Enter Chunk Overlap": "चंक ओवरलैप दर्ज करें", "Enter Chunk Overlap": "चंक ओवरलैप दर्ज करें",
"Enter Chunk Size": "खंड आकार दर्ज करें", "Enter Chunk Size": "खंड आकार दर्ज करें",
"Enter Image Size (e.g. 512x512)": "छवि का आकार दर्ज करें (उदा. 512x512)", "Enter Image Size (e.g. 512x512)": "छवि का आकार दर्ज करें (उदा. 512x512)",
"Enter language codes": "",
"Enter LiteLLM API Base URL (litellm_params.api_base)": "LiteLLM API Base URL दर्ज करें (litellm_params.api_base)", "Enter LiteLLM API Base URL (litellm_params.api_base)": "LiteLLM API Base URL दर्ज करें (litellm_params.api_base)",
"Enter LiteLLM API Key (litellm_params.api_key)": "LiteLLM API Key दर्ज करें (litellm_params.api_key)", "Enter LiteLLM API Key (litellm_params.api_key)": "LiteLLM API Key दर्ज करें (litellm_params.api_key)",
"Enter LiteLLM API RPM (litellm_params.rpm)": "LiteLLM API RPM दर्ज करें (litellm_params.rpm) ", "Enter LiteLLM API RPM (litellm_params.rpm)": "LiteLLM API RPM दर्ज करें (litellm_params.rpm) ",
...@@ -356,7 +357,6 @@ ...@@ -356,7 +357,6 @@
"Reranking model set to \"{{reranking_model}}\"": "रीरैंकिंग मॉडल को \"{{reranking_model}}\" पर \u200b\u200bसेट किया गया", "Reranking model set to \"{{reranking_model}}\"": "रीरैंकिंग मॉडल को \"{{reranking_model}}\" पर \u200b\u200bसेट किया गया",
"Reset Vector Storage": "वेक्टर संग्रहण रीसेट करें", "Reset Vector Storage": "वेक्टर संग्रहण रीसेट करें",
"Response AutoCopy to Clipboard": "क्लिपबोर्ड पर प्रतिक्रिया ऑटोकॉपी", "Response AutoCopy to Clipboard": "क्लिपबोर्ड पर प्रतिक्रिया ऑटोकॉपी",
"Retrieval Augmented Generation Settings": "",
"Role": "भूमिका", "Role": "भूमिका",
"Rosé Pine": "", "Rosé Pine": "",
"Rosé Pine Dawn": "", "Rosé Pine Dawn": "",
...@@ -473,6 +473,7 @@ ...@@ -473,6 +473,7 @@
"Version": "संस्करण", "Version": "संस्करण",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "चेतावनी: यदि आप अपने एम्बेडिंग मॉडल को अपडेट या बदलते हैं, तो आपको सभी दस्तावेज़ों को फिर से आयात करने की आवश्यकता होगी।", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "चेतावनी: यदि आप अपने एम्बेडिंग मॉडल को अपडेट या बदलते हैं, तो आपको सभी दस्तावेज़ों को फिर से आयात करने की आवश्यकता होगी।",
"Web": "वेब", "Web": "वेब",
"Web Loader Settings": "",
"Web Params": "", "Web Params": "",
"Webhook URL": "", "Webhook URL": "",
"WebUI Add-ons": "", "WebUI Add-ons": "",
...@@ -489,5 +490,6 @@ ...@@ -489,5 +490,6 @@
"You have shared this chat": "", "You have shared this chat": "",
"You're a helpful assistant.": "आप एक सहायक सहायक हैं", "You're a helpful assistant.": "आप एक सहायक सहायक हैं",
"You're now logged in.": "अब आप लॉग इन हो गए हैं", "You're now logged in.": "अब आप लॉग इन हो गए हैं",
"Youtube": "" "Youtube": "",
"Youtube Loader Settings": ""
} }
...@@ -171,6 +171,7 @@ ...@@ -171,6 +171,7 @@
"Enter Chunk Overlap": "Inserisci la sovrapposizione chunk", "Enter Chunk Overlap": "Inserisci la sovrapposizione chunk",
"Enter Chunk Size": "Inserisci la dimensione chunk", "Enter Chunk Size": "Inserisci la dimensione chunk",
"Enter Image Size (e.g. 512x512)": "Inserisci la dimensione dell'immagine (ad esempio 512x512)", "Enter Image Size (e.g. 512x512)": "Inserisci la dimensione dell'immagine (ad esempio 512x512)",
"Enter language codes": "",
"Enter LiteLLM API Base URL (litellm_params.api_base)": "Inserisci l'URL base dell'API LiteLLM (litellm_params.api_base)", "Enter LiteLLM API Base URL (litellm_params.api_base)": "Inserisci l'URL base dell'API LiteLLM (litellm_params.api_base)",
"Enter LiteLLM API Key (litellm_params.api_key)": "Inserisci la chiave API LiteLLM (litellm_params.api_key)", "Enter LiteLLM API Key (litellm_params.api_key)": "Inserisci la chiave API LiteLLM (litellm_params.api_key)",
"Enter LiteLLM API RPM (litellm_params.rpm)": "Inserisci LiteLLM API RPM (litellm_params.rpm)", "Enter LiteLLM API RPM (litellm_params.rpm)": "Inserisci LiteLLM API RPM (litellm_params.rpm)",
...@@ -356,7 +357,6 @@ ...@@ -356,7 +357,6 @@
"Reranking model set to \"{{reranking_model}}\"": "", "Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "Reimposta archivio vettoriale", "Reset Vector Storage": "Reimposta archivio vettoriale",
"Response AutoCopy to Clipboard": "Copia automatica della risposta negli appunti", "Response AutoCopy to Clipboard": "Copia automatica della risposta negli appunti",
"Retrieval Augmented Generation Settings": "",
"Role": "Ruolo", "Role": "Ruolo",
"Rosé Pine": "Rosé Pine", "Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn", "Rosé Pine Dawn": "Rosé Pine Dawn",
...@@ -473,6 +473,7 @@ ...@@ -473,6 +473,7 @@
"Version": "Versione", "Version": "Versione",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "Web", "Web": "Web",
"Web Loader Settings": "",
"Web Params": "", "Web Params": "",
"Webhook URL": "", "Webhook URL": "",
"WebUI Add-ons": "Componenti aggiuntivi WebUI", "WebUI Add-ons": "Componenti aggiuntivi WebUI",
...@@ -489,5 +490,6 @@ ...@@ -489,5 +490,6 @@
"You have shared this chat": "", "You have shared this chat": "",
"You're a helpful assistant.": "Sei un assistente utile.", "You're a helpful assistant.": "Sei un assistente utile.",
"You're now logged in.": "Ora hai effettuato l'accesso.", "You're now logged in.": "Ora hai effettuato l'accesso.",
"Youtube": "" "Youtube": "",
"Youtube Loader Settings": ""
} }
...@@ -171,6 +171,7 @@ ...@@ -171,6 +171,7 @@
"Enter Chunk Overlap": "チャンクオーバーラップを入力してください", "Enter Chunk Overlap": "チャンクオーバーラップを入力してください",
"Enter Chunk Size": "チャンクサイズを入力してください", "Enter Chunk Size": "チャンクサイズを入力してください",
"Enter Image Size (e.g. 512x512)": "画像サイズを入力してください (例: 512x512)", "Enter Image Size (e.g. 512x512)": "画像サイズを入力してください (例: 512x512)",
"Enter language codes": "",
"Enter LiteLLM API Base URL (litellm_params.api_base)": "LiteLLM API ベース URL を入力してください (litellm_params.api_base)", "Enter LiteLLM API Base URL (litellm_params.api_base)": "LiteLLM API ベース URL を入力してください (litellm_params.api_base)",
"Enter LiteLLM API Key (litellm_params.api_key)": "LiteLLM API キーを入力してください (litellm_params.api_key)", "Enter LiteLLM API Key (litellm_params.api_key)": "LiteLLM API キーを入力してください (litellm_params.api_key)",
"Enter LiteLLM API RPM (litellm_params.rpm)": "LiteLLM API RPM を入力してください (litellm_params.rpm)", "Enter LiteLLM API RPM (litellm_params.rpm)": "LiteLLM API RPM を入力してください (litellm_params.rpm)",
...@@ -356,7 +357,6 @@ ...@@ -356,7 +357,6 @@
"Reranking model set to \"{{reranking_model}}\"": "", "Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "ベクトルストレージをリセット", "Reset Vector Storage": "ベクトルストレージをリセット",
"Response AutoCopy to Clipboard": "クリップボードへの応答の自動コピー", "Response AutoCopy to Clipboard": "クリップボードへの応答の自動コピー",
"Retrieval Augmented Generation Settings": "",
"Role": "役割", "Role": "役割",
"Rosé Pine": "Rosé Pine", "Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn", "Rosé Pine Dawn": "Rosé Pine Dawn",
...@@ -473,6 +473,7 @@ ...@@ -473,6 +473,7 @@
"Version": "バージョン", "Version": "バージョン",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "ウェブ", "Web": "ウェブ",
"Web Loader Settings": "",
"Web Params": "", "Web Params": "",
"Webhook URL": "", "Webhook URL": "",
"WebUI Add-ons": "WebUI アドオン", "WebUI Add-ons": "WebUI アドオン",
...@@ -489,5 +490,6 @@ ...@@ -489,5 +490,6 @@
"You have shared this chat": "", "You have shared this chat": "",
"You're a helpful assistant.": "あなたは役に立つアシスタントです。", "You're a helpful assistant.": "あなたは役に立つアシスタントです。",
"You're now logged in.": "ログインしました。", "You're now logged in.": "ログインしました。",
"Youtube": "" "Youtube": "",
"Youtube Loader Settings": ""
} }
...@@ -171,6 +171,7 @@ ...@@ -171,6 +171,7 @@
"Enter Chunk Overlap": "შეიყვანეთ ნაწილის გადახურვა", "Enter Chunk Overlap": "შეიყვანეთ ნაწილის გადახურვა",
"Enter Chunk Size": "შეიყვანე ბლოკის ზომა", "Enter Chunk Size": "შეიყვანე ბლოკის ზომა",
"Enter Image Size (e.g. 512x512)": "შეიყვანეთ სურათის ზომა (მაგ. 512x512)", "Enter Image Size (e.g. 512x512)": "შეიყვანეთ სურათის ზომა (მაგ. 512x512)",
"Enter language codes": "",
"Enter LiteLLM API Base URL (litellm_params.api_base)": "შეიყვანეთ LiteLLM API ბაზის მისამართი (litellm_params.api_base)", "Enter LiteLLM API Base URL (litellm_params.api_base)": "შეიყვანეთ LiteLLM API ბაზის მისამართი (litellm_params.api_base)",
"Enter LiteLLM API Key (litellm_params.api_key)": "შეიყვანეთ LiteLLM API გასაღები (litellm_params.api_key)", "Enter LiteLLM API Key (litellm_params.api_key)": "შეიყვანეთ LiteLLM API გასაღები (litellm_params.api_key)",
"Enter LiteLLM API RPM (litellm_params.rpm)": "შეიყვანეთ LiteLLM API RPM (litellm_params.rpm)", "Enter LiteLLM API RPM (litellm_params.rpm)": "შეიყვანეთ LiteLLM API RPM (litellm_params.rpm)",
...@@ -356,7 +357,6 @@ ...@@ -356,7 +357,6 @@
"Reranking model set to \"{{reranking_model}}\"": "", "Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "ვექტორული მეხსიერების გადატვირთვა", "Reset Vector Storage": "ვექტორული მეხსიერების გადატვირთვა",
"Response AutoCopy to Clipboard": "პასუხის ავტომატური კოპირება ბუფერში", "Response AutoCopy to Clipboard": "პასუხის ავტომატური კოპირება ბუფერში",
"Retrieval Augmented Generation Settings": "",
"Role": "როლი", "Role": "როლი",
"Rosé Pine": "ვარდისფერი ფიჭვის ხე", "Rosé Pine": "ვარდისფერი ფიჭვის ხე",
"Rosé Pine Dawn": "ვარდისფერი ფიჭვის გარიჟრაჟი", "Rosé Pine Dawn": "ვარდისფერი ფიჭვის გარიჟრაჟი",
...@@ -473,6 +473,7 @@ ...@@ -473,6 +473,7 @@
"Version": "ვერსია", "Version": "ვერსია",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "ვები", "Web": "ვები",
"Web Loader Settings": "",
"Web Params": "", "Web Params": "",
"Webhook URL": "", "Webhook URL": "",
"WebUI Add-ons": "WebUI დანამატები", "WebUI Add-ons": "WebUI დანამატები",
...@@ -489,5 +490,6 @@ ...@@ -489,5 +490,6 @@
"You have shared this chat": "", "You have shared this chat": "",
"You're a helpful assistant.": "თქვენ სასარგებლო ასისტენტი ხართ.", "You're a helpful assistant.": "თქვენ სასარგებლო ასისტენტი ხართ.",
"You're now logged in.": "თქვენ შესული ხართ.", "You're now logged in.": "თქვენ შესული ხართ.",
"Youtube": "" "Youtube": "",
"Youtube Loader Settings": ""
} }
...@@ -171,6 +171,7 @@ ...@@ -171,6 +171,7 @@
"Enter Chunk Overlap": "청크 오버랩 입력", "Enter Chunk Overlap": "청크 오버랩 입력",
"Enter Chunk Size": "청크 크기 입력", "Enter Chunk Size": "청크 크기 입력",
"Enter Image Size (e.g. 512x512)": "이미지 크기 입력(예: 512x512)", "Enter Image Size (e.g. 512x512)": "이미지 크기 입력(예: 512x512)",
"Enter language codes": "",
"Enter LiteLLM API Base URL (litellm_params.api_base)": "LiteLLM API 기본 URL 입력(litellm_params.api_base)", "Enter LiteLLM API Base URL (litellm_params.api_base)": "LiteLLM API 기본 URL 입력(litellm_params.api_base)",
"Enter LiteLLM API Key (litellm_params.api_key)": "LiteLLM API 키 입력(litellm_params.api_key)", "Enter LiteLLM API Key (litellm_params.api_key)": "LiteLLM API 키 입력(litellm_params.api_key)",
"Enter LiteLLM API RPM (litellm_params.rpm)": "LiteLLM API RPM 입력(litellm_params.rpm)", "Enter LiteLLM API RPM (litellm_params.rpm)": "LiteLLM API RPM 입력(litellm_params.rpm)",
...@@ -356,7 +357,6 @@ ...@@ -356,7 +357,6 @@
"Reranking model set to \"{{reranking_model}}\"": "", "Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "벡터 스토리지 초기화", "Reset Vector Storage": "벡터 스토리지 초기화",
"Response AutoCopy to Clipboard": "응답 자동 클립보드 복사", "Response AutoCopy to Clipboard": "응답 자동 클립보드 복사",
"Retrieval Augmented Generation Settings": "",
"Role": "역할", "Role": "역할",
"Rosé Pine": "로제 파인", "Rosé Pine": "로제 파인",
"Rosé Pine Dawn": "로제 파인 던", "Rosé Pine Dawn": "로제 파인 던",
...@@ -473,6 +473,7 @@ ...@@ -473,6 +473,7 @@
"Version": "버전", "Version": "버전",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "웹", "Web": "웹",
"Web Loader Settings": "",
"Web Params": "", "Web Params": "",
"Webhook URL": "", "Webhook URL": "",
"WebUI Add-ons": "WebUI 애드온", "WebUI Add-ons": "WebUI 애드온",
...@@ -489,5 +490,6 @@ ...@@ -489,5 +490,6 @@
"You have shared this chat": "", "You have shared this chat": "",
"You're a helpful assistant.": "당신은 유용한 어시스턴트입니다.", "You're a helpful assistant.": "당신은 유용한 어시스턴트입니다.",
"You're now logged in.": "로그인되었습니다.", "You're now logged in.": "로그인되었습니다.",
"Youtube": "" "Youtube": "",
"Youtube Loader Settings": ""
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment