mirror of
https://github.com/open-webui/open-webui.git
synced 2025-04-11 21:39:07 +02:00
chore: format
This commit is contained in:
parent
f6f8c08cb0
commit
e41a2682f5
@ -17,7 +17,11 @@ from open_webui.retrieval.vector.connector import VECTOR_DB_CLIENT
|
||||
from open_webui.utils.misc import get_last_user_message
|
||||
from open_webui.models.users import UserModel
|
||||
|
||||
from open_webui.env import SRC_LOG_LEVELS, OFFLINE_MODE, ENABLE_FORWARD_USER_INFO_HEADERS
|
||||
from open_webui.env import (
|
||||
SRC_LOG_LEVELS,
|
||||
OFFLINE_MODE,
|
||||
ENABLE_FORWARD_USER_INFO_HEADERS,
|
||||
)
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
log.setLevel(SRC_LOG_LEVELS["RAG"])
|
||||
@ -62,10 +66,7 @@ class VectorSearchRetriever(BaseRetriever):
|
||||
|
||||
|
||||
def query_doc(
|
||||
collection_name: str,
|
||||
query_embedding: list[float],
|
||||
k: int,
|
||||
user: UserModel=None
|
||||
collection_name: str, query_embedding: list[float], k: int, user: UserModel = None
|
||||
):
|
||||
try:
|
||||
result = VECTOR_DB_CLIENT.search(
|
||||
@ -258,7 +259,7 @@ def get_embedding_function(
|
||||
embedding_function,
|
||||
url,
|
||||
key,
|
||||
embedding_batch_size
|
||||
embedding_batch_size,
|
||||
):
|
||||
if embedding_engine == "":
|
||||
return lambda query, user=None: embedding_function.encode(query).tolist()
|
||||
@ -269,14 +270,16 @@ def get_embedding_function(
|
||||
text=query,
|
||||
url=url,
|
||||
key=key,
|
||||
user=user
|
||||
user=user,
|
||||
)
|
||||
|
||||
def generate_multiple(query, user, func):
|
||||
if isinstance(query, list):
|
||||
embeddings = []
|
||||
for i in range(0, len(query), embedding_batch_size):
|
||||
embeddings.extend(func(query[i : i + embedding_batch_size], user=user))
|
||||
embeddings.extend(
|
||||
func(query[i : i + embedding_batch_size], user=user)
|
||||
)
|
||||
return embeddings
|
||||
else:
|
||||
return func(query, user)
|
||||
@ -428,7 +431,11 @@ def get_model_path(model: str, update_model: bool = False):
|
||||
|
||||
|
||||
def generate_openai_batch_embeddings(
|
||||
model: str, texts: list[str], url: str = "https://api.openai.com/v1", key: str = "", user: UserModel = None
|
||||
model: str,
|
||||
texts: list[str],
|
||||
url: str = "https://api.openai.com/v1",
|
||||
key: str = "",
|
||||
user: UserModel = None,
|
||||
) -> Optional[list[list[float]]]:
|
||||
try:
|
||||
r = requests.post(
|
||||
@ -506,7 +513,13 @@ def generate_embeddings(engine: str, model: str, text: Union[str, list[str]], **
|
||||
)
|
||||
else:
|
||||
embeddings = generate_ollama_batch_embeddings(
|
||||
**{"model": model, "texts": [text], "url": url, "key": key, "user": user}
|
||||
**{
|
||||
"model": model,
|
||||
"texts": [text],
|
||||
"url": url,
|
||||
"key": key,
|
||||
"user": user,
|
||||
}
|
||||
)
|
||||
return embeddings[0] if isinstance(text, str) else embeddings
|
||||
elif engine == "openai":
|
||||
|
@ -46,7 +46,9 @@ def search_exa(
|
||||
}
|
||||
|
||||
try:
|
||||
response = requests.post(f"{EXA_API_BASE}/search", headers=headers, json=payload)
|
||||
response = requests.post(
|
||||
f"{EXA_API_BASE}/search", headers=headers, json=payload
|
||||
)
|
||||
response.raise_for_status()
|
||||
data = response.json()
|
||||
|
||||
|
@ -195,7 +195,7 @@ async def update_file_data_content_by_id(
|
||||
process_file(
|
||||
request,
|
||||
ProcessFileForm(file_id=id, content=form_data.content),
|
||||
user=user
|
||||
user=user,
|
||||
)
|
||||
file = Files.get_file_by_id(id=id)
|
||||
except Exception as e:
|
||||
|
@ -291,7 +291,7 @@ def add_file_to_knowledge_by_id(
|
||||
process_file(
|
||||
request,
|
||||
ProcessFileForm(file_id=form_data.file_id, collection_name=id),
|
||||
user=user
|
||||
user=user,
|
||||
)
|
||||
except Exception as e:
|
||||
log.debug(e)
|
||||
@ -376,7 +376,7 @@ def update_file_from_knowledge_by_id(
|
||||
process_file(
|
||||
request,
|
||||
ProcessFileForm(file_id=form_data.file_id, collection_name=id),
|
||||
user=user
|
||||
user=user,
|
||||
)
|
||||
except Exception as e:
|
||||
raise HTTPException(
|
||||
|
@ -160,7 +160,9 @@ async def update_memory_by_id(
|
||||
{
|
||||
"id": memory.id,
|
||||
"text": memory.content,
|
||||
"vector": request.app.state.EMBEDDING_FUNCTION(memory.content, user),
|
||||
"vector": request.app.state.EMBEDDING_FUNCTION(
|
||||
memory.content, user
|
||||
),
|
||||
"metadata": {
|
||||
"created_at": memory.created_at,
|
||||
"updated_at": memory.updated_at,
|
||||
|
@ -666,7 +666,7 @@ def save_docs_to_vector_db(
|
||||
overwrite: bool = False,
|
||||
split: bool = True,
|
||||
add: bool = False,
|
||||
user = None,
|
||||
user=None,
|
||||
) -> bool:
|
||||
def _get_docs_info(docs: list[Document]) -> str:
|
||||
docs_info = set()
|
||||
@ -782,8 +782,7 @@ def save_docs_to_vector_db(
|
||||
)
|
||||
|
||||
embeddings = embedding_function(
|
||||
list(map(lambda x: x.replace("\n", " "), texts)),
|
||||
user = user
|
||||
list(map(lambda x: x.replace("\n", " "), texts)), user=user
|
||||
)
|
||||
|
||||
items = [
|
||||
@ -941,7 +940,7 @@ def process_file(
|
||||
"hash": hash,
|
||||
},
|
||||
add=(True if form_data.collection_name else False),
|
||||
user=user
|
||||
user=user,
|
||||
)
|
||||
|
||||
if result:
|
||||
@ -1032,7 +1031,9 @@ def process_youtube_video(
|
||||
content = " ".join([doc.page_content for doc in docs])
|
||||
log.debug(f"text_content: {content}")
|
||||
|
||||
save_docs_to_vector_db(request, docs, collection_name, overwrite=True, user=user)
|
||||
save_docs_to_vector_db(
|
||||
request, docs, collection_name, overwrite=True, user=user
|
||||
)
|
||||
|
||||
return {
|
||||
"status": True,
|
||||
@ -1073,7 +1074,9 @@ def process_web(
|
||||
content = " ".join([doc.page_content for doc in docs])
|
||||
|
||||
log.debug(f"text_content: {content}")
|
||||
save_docs_to_vector_db(request, docs, collection_name, overwrite=True, user=user)
|
||||
save_docs_to_vector_db(
|
||||
request, docs, collection_name, overwrite=True, user=user
|
||||
)
|
||||
|
||||
return {
|
||||
"status": True,
|
||||
@ -1289,7 +1292,9 @@ def process_web_search(
|
||||
requests_per_second=request.app.state.config.RAG_WEB_SEARCH_CONCURRENT_REQUESTS,
|
||||
)
|
||||
docs = loader.load()
|
||||
save_docs_to_vector_db(request, docs, collection_name, overwrite=True, user=user)
|
||||
save_docs_to_vector_db(
|
||||
request, docs, collection_name, overwrite=True, user=user
|
||||
)
|
||||
|
||||
return {
|
||||
"status": True,
|
||||
@ -1323,7 +1328,9 @@ def query_doc_handler(
|
||||
return query_doc_with_hybrid_search(
|
||||
collection_name=form_data.collection_name,
|
||||
query=form_data.query,
|
||||
embedding_function=lambda query: request.app.state.EMBEDDING_FUNCTION(query, user=user),
|
||||
embedding_function=lambda query: request.app.state.EMBEDDING_FUNCTION(
|
||||
query, user=user
|
||||
),
|
||||
k=form_data.k if form_data.k else request.app.state.config.TOP_K,
|
||||
reranking_function=request.app.state.rf,
|
||||
r=(
|
||||
@ -1331,14 +1338,16 @@ def query_doc_handler(
|
||||
if form_data.r
|
||||
else request.app.state.config.RELEVANCE_THRESHOLD
|
||||
),
|
||||
user=user
|
||||
user=user,
|
||||
)
|
||||
else:
|
||||
return query_doc(
|
||||
collection_name=form_data.collection_name,
|
||||
query_embedding=request.app.state.EMBEDDING_FUNCTION(form_data.query, user=user),
|
||||
query_embedding=request.app.state.EMBEDDING_FUNCTION(
|
||||
form_data.query, user=user
|
||||
),
|
||||
k=form_data.k if form_data.k else request.app.state.config.TOP_K,
|
||||
user=user
|
||||
user=user,
|
||||
)
|
||||
except Exception as e:
|
||||
log.exception(e)
|
||||
@ -1367,7 +1376,9 @@ def query_collection_handler(
|
||||
return query_collection_with_hybrid_search(
|
||||
collection_names=form_data.collection_names,
|
||||
queries=[form_data.query],
|
||||
embedding_function=lambda query: request.app.state.EMBEDDING_FUNCTION(query, user=user),
|
||||
embedding_function=lambda query: request.app.state.EMBEDDING_FUNCTION(
|
||||
query, user=user
|
||||
),
|
||||
k=form_data.k if form_data.k else request.app.state.config.TOP_K,
|
||||
reranking_function=request.app.state.rf,
|
||||
r=(
|
||||
@ -1380,7 +1391,9 @@ def query_collection_handler(
|
||||
return query_collection(
|
||||
collection_names=form_data.collection_names,
|
||||
queries=[form_data.query],
|
||||
embedding_function=lambda query: request.app.state.EMBEDDING_FUNCTION(query,user=user),
|
||||
embedding_function=lambda query: request.app.state.EMBEDDING_FUNCTION(
|
||||
query, user=user
|
||||
),
|
||||
k=form_data.k if form_data.k else request.app.state.config.TOP_K,
|
||||
)
|
||||
|
||||
|
@ -634,7 +634,9 @@ async def chat_completion_files_handler(
|
||||
lambda: get_sources_from_files(
|
||||
files=files,
|
||||
queries=queries,
|
||||
embedding_function=lambda query: request.app.state.EMBEDDING_FUNCTION(query,user=user),
|
||||
embedding_function=lambda query: request.app.state.EMBEDDING_FUNCTION(
|
||||
query, user=user
|
||||
),
|
||||
k=request.app.state.config.TOP_K,
|
||||
reranking_function=request.app.state.rf,
|
||||
r=request.app.state.config.RELEVANCE_THRESHOLD,
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "الإفتراضي",
|
||||
"Default (Open AI)": "",
|
||||
"Default (SentenceTransformers)": "(SentenceTransformers) الإفتراضي",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "النموذج الافتراضي",
|
||||
"Default model updated": "الإفتراضي تحديث الموديل",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "أدخل الChunk Overlap",
|
||||
"Enter Chunk Size": "أدخل Chunk الحجم",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "أدخل عنوان URL ل Github Raw",
|
||||
"Enter Google PSE API Key": "أدخل مفتاح واجهة برمجة تطبيقات PSE من Google",
|
||||
"Enter Google PSE Engine Id": "أدخل معرف محرك PSE من Google",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "عقوبة التردد",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "",
|
||||
"Function deleted successfully": "",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "المزيد",
|
||||
"Name": "الأسم",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "دردشة جديدة",
|
||||
"New Folder": "",
|
||||
"New Password": "كلمة المرور الجديدة",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "أخر 30 يوم",
|
||||
"Previous 7 days": "أخر 7 أيام",
|
||||
"Profile Image": "صورة الملف الشخصي",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "موجه (على سبيل المثال: أخبرني بحقيقة ممتعة عن الإمبراطورية الرومانية)",
|
||||
"Prompt Content": "محتوى عاجل",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "По подразбиране",
|
||||
"Default (Open AI)": "",
|
||||
"Default (SentenceTransformers)": "По подразбиране (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Модел по подразбиране",
|
||||
"Default model updated": "Моделът по подразбиране е обновен",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Въведете Chunk Overlap",
|
||||
"Enter Chunk Size": "Въведете Chunk Size",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Въведете URL адреса на Github Raw",
|
||||
"Enter Google PSE API Key": "Въведете Google PSE API ключ",
|
||||
"Enter Google PSE Engine Id": "Въведете идентификатор на двигателя на Google PSE",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "Наказание за честота",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "",
|
||||
"Function deleted successfully": "",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Повече",
|
||||
"Name": "Име",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "Нов чат",
|
||||
"New Folder": "",
|
||||
"New Password": "Нова парола",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "Предыдущите 30 дни",
|
||||
"Previous 7 days": "Предыдущите 7 дни",
|
||||
"Profile Image": "Профилна снимка",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Промпт (напр. Обмисли ме забавна факт за Римската империя)",
|
||||
"Prompt Content": "Съдържание на промпта",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "ডিফল্ট",
|
||||
"Default (Open AI)": "",
|
||||
"Default (SentenceTransformers)": "ডিফল্ট (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "ডিফল্ট মডেল",
|
||||
"Default model updated": "ডিফল্ট মডেল আপডেট হয়েছে",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "চাঙ্ক ওভারল্যাপ লিখুন",
|
||||
"Enter Chunk Size": "চাংক সাইজ লিখুন",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "গিটহাব কাঁচা URL লিখুন",
|
||||
"Enter Google PSE API Key": "গুগল পিএসই এপিআই কী লিখুন",
|
||||
"Enter Google PSE Engine Id": "গুগল পিএসই ইঞ্জিন আইডি লিখুন",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "ফ্রিকোয়েন্সি পেনাল্টি",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "",
|
||||
"Function deleted successfully": "",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "আরো",
|
||||
"Name": "নাম",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "নতুন চ্যাট",
|
||||
"New Folder": "",
|
||||
"New Password": "নতুন পাসওয়ার্ড",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "পূর্ব ৩০ দিন",
|
||||
"Previous 7 days": "পূর্ব ৭ দিন",
|
||||
"Profile Image": "প্রোফাইল ইমেজ",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "প্রম্প্ট (উদাহরণস্বরূপ, আমি রোমান ইমপার্টের সম্পর্কে একটি উপস্থিতি জানতে বল)",
|
||||
"Prompt Content": "প্রম্পট কন্টেন্ট",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Per defecte",
|
||||
"Default (Open AI)": "Per defecte (Open AI)",
|
||||
"Default (SentenceTransformers)": "Per defecte (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Model per defecte",
|
||||
"Default model updated": "Model per defecte actualitzat",
|
||||
"Default Models": "Models per defecte",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Introdueix la mida de solapament de blocs",
|
||||
"Enter Chunk Size": "Introdueix la mida del bloc",
|
||||
"Enter description": "Introdueix la descripció",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Introdueix l'URL en brut de Github",
|
||||
"Enter Google PSE API Key": "Introdueix la clau API de Google PSE",
|
||||
"Enter Google PSE Engine Id": "Introdueix l'identificador del motor PSE de Google",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "Error en accedir a Google Drive: {{error}}",
|
||||
"Error uploading file: {{error}}": "Error en pujar l'arxiu: {{error}}",
|
||||
"Evaluations": "Avaluacions",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Exemple: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Exemple: TOTS",
|
||||
"Example: mail": "Exemple: mail",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "Formata les teves variables utilitzant claudàtors així:",
|
||||
"Frequency Penalty": "Penalització per freqüència",
|
||||
"Function": "Funció",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "La funció s'ha creat correctament",
|
||||
"Function deleted successfully": "La funció s'ha eliminat correctament",
|
||||
"Function Description": "Descripció de la funció",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Més",
|
||||
"Name": "Nom",
|
||||
"Name your knowledge base": "Anomena la teva base de coneixement",
|
||||
"Native": "",
|
||||
"New Chat": "Nou xat",
|
||||
"New Folder": "Nova carpeta",
|
||||
"New Password": "Nova contrasenya",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "30 dies anteriors",
|
||||
"Previous 7 days": "7 dies anteriors",
|
||||
"Profile Image": "Imatge de perfil",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Indicació (p.ex. Digues-me quelcom divertit sobre l'Imperi Romà)",
|
||||
"Prompt Content": "Contingut de la indicació",
|
||||
"Prompt created successfully": "Indicació creada correctament",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Pinaagi sa default",
|
||||
"Default (Open AI)": "",
|
||||
"Default (SentenceTransformers)": "",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "",
|
||||
"Default model updated": "Gi-update nga default template",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Pagsulod sa block overlap",
|
||||
"Enter Chunk Size": "Isulod ang block size",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "",
|
||||
"Enter Google PSE API Key": "",
|
||||
"Enter Google PSE Engine Id": "",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "",
|
||||
"Function deleted successfully": "",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "",
|
||||
"Name": "Ngalan",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "Bag-ong diskusyon",
|
||||
"New Folder": "",
|
||||
"New Password": "Bag-ong Password",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "",
|
||||
"Previous 7 days": "",
|
||||
"Profile Image": "",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
|
||||
"Prompt Content": "Ang sulod sa prompt",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Výchozí hodnoty nebo nastavení.",
|
||||
"Default (Open AI)": "Výchozí (Open AI)",
|
||||
"Default (SentenceTransformers)": "Výchozí (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Výchozí model",
|
||||
"Default model updated": "Výchozí model aktualizován.",
|
||||
"Default Models": "Výchozí modely",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Zadejte překryv části",
|
||||
"Enter Chunk Size": "Zadejte velikost bloku",
|
||||
"Enter description": "Zadejte popis",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Zadejte URL adresu Github Raw",
|
||||
"Enter Google PSE API Key": "Zadejte klíč rozhraní API Google PSE",
|
||||
"Enter Google PSE Engine Id": "Zadejte ID vyhledávacího mechanismu Google PSE",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "Hodnocení",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "Formátujte své proměnné pomocí závorek takto:",
|
||||
"Frequency Penalty": "Penalizace frekvence",
|
||||
"Function": "Funkce",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "Funkce byla úspěšně vytvořena.",
|
||||
"Function deleted successfully": "Funkce byla úspěšně odstraněna",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Více",
|
||||
"Name": "Jméno",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "Nový chat",
|
||||
"New Folder": "",
|
||||
"New Password": "Nové heslo",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "Předchozích 30 dnů",
|
||||
"Previous 7 days": "Předchozích 7 dní",
|
||||
"Profile Image": "Profilový obrázek",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (např. Řekni mi zábavný fakt o Římské říši)",
|
||||
"Prompt Content": "Obsah promptu",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Standard",
|
||||
"Default (Open AI)": "Standard (Open AI)",
|
||||
"Default (SentenceTransformers)": "Standard (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Standard model",
|
||||
"Default model updated": "Standard model opdateret",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Indtast overlapning af tekststykker",
|
||||
"Enter Chunk Size": "Indtast størrelse af tekststykker",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Indtast Github Raw URL",
|
||||
"Enter Google PSE API Key": "Indtast Google PSE API-nøgle",
|
||||
"Enter Google PSE Engine Id": "Indtast Google PSE Engine ID",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "Hyppighedsstraf",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "Funktion oprettet.",
|
||||
"Function deleted successfully": "Funktion slettet.",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Mere",
|
||||
"Name": "Navn",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "Ny chat",
|
||||
"New Folder": "",
|
||||
"New Password": "Ny adgangskode",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "Seneste 30 dage",
|
||||
"Previous 7 days": "Seneste 7 dage",
|
||||
"Profile Image": "Profilbillede",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (f.eks. Fortæl mig en sjov kendsgerning om Romerriget)",
|
||||
"Prompt Content": "Promptindhold",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Standard",
|
||||
"Default (Open AI)": "Standard (Open AI)",
|
||||
"Default (SentenceTransformers)": "Standard (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Standardmodell",
|
||||
"Default model updated": "Standardmodell aktualisiert",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Geben Sie die Blocküberlappung ein",
|
||||
"Enter Chunk Size": "Geben Sie die Blockgröße ein",
|
||||
"Enter description": "Geben Sie eine Beschreibung ein",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Geben Sie die Github Raw-URL ein",
|
||||
"Enter Google PSE API Key": "Geben Sie den Google PSE-API-Schlüssel ein",
|
||||
"Enter Google PSE Engine Id": "Geben Sie die Google PSE-Engine-ID ein",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "Evaluationen",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Beispiel: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Beispiel: ALL",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "Formatieren Sie Ihre Variablen mit Klammern, wie hier:",
|
||||
"Frequency Penalty": "Frequenzstrafe",
|
||||
"Function": "Funktion",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "Funktion erfolgreich erstellt",
|
||||
"Function deleted successfully": "Funktion erfolgreich gelöscht",
|
||||
"Function Description": "Funktionsbeschreibung",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Mehr",
|
||||
"Name": "Name",
|
||||
"Name your knowledge base": "Benennen Sie Ihren Wissensspeicher",
|
||||
"Native": "",
|
||||
"New Chat": "Neue Unterhaltung",
|
||||
"New Folder": "",
|
||||
"New Password": "Neues Passwort",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "Vorherige 30 Tage",
|
||||
"Previous 7 days": "Vorherige 7 Tage",
|
||||
"Profile Image": "Profilbild",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (z. B. \"Erzähle mir eine interessante Tatsache über das Römische Reich\")",
|
||||
"Prompt Content": "Prompt-Inhalt",
|
||||
"Prompt created successfully": "Prompt erfolgreich erstellt",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Default",
|
||||
"Default (Open AI)": "",
|
||||
"Default (SentenceTransformers)": "",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "",
|
||||
"Default model updated": "Default model much updated",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Enter Overlap of Chunks",
|
||||
"Enter Chunk Size": "Enter Size of Chunk",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "",
|
||||
"Enter Google PSE API Key": "",
|
||||
"Enter Google PSE Engine Id": "",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "",
|
||||
"Function deleted successfully": "",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "",
|
||||
"Name": "Name",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "New Bark",
|
||||
"New Folder": "",
|
||||
"New Password": "New Barkword",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "",
|
||||
"Previous 7 days": "",
|
||||
"Profile Image": "",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
|
||||
"Prompt Content": "Prompt Content",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Προεπιλογή",
|
||||
"Default (Open AI)": "Προεπιλογή (Open AI)",
|
||||
"Default (SentenceTransformers)": "Προεπιλογή (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Προεπιλεγμένο Μοντέλο",
|
||||
"Default model updated": "Το προεπιλεγμένο μοντέλο ενημερώθηκε",
|
||||
"Default Models": "Προεπιλεγμένα Μοντέλα",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Εισάγετε την Επικάλυψη Τμημάτων",
|
||||
"Enter Chunk Size": "Εισάγετε το Μέγεθος Τμημάτων",
|
||||
"Enter description": "Εισάγετε την περιγραφή",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Εισάγετε το Github Raw URL",
|
||||
"Enter Google PSE API Key": "Εισάγετε το Κλειδί API Google PSE",
|
||||
"Enter Google PSE Engine Id": "Εισάγετε το Αναγνωριστικό Μηχανής Google PSE",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "Αξιολογήσεις",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Παράδειγμα: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Παράδειγμα: ALL",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "Μορφοποιήστε τις μεταβλητές σας χρησιμοποιώντας αγκύλες όπως αυτό:",
|
||||
"Frequency Penalty": "Ποινή Συχνότητας",
|
||||
"Function": "Λειτουργία",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "Η λειτουργία δημιουργήθηκε με επιτυχία",
|
||||
"Function deleted successfully": "Η λειτουργία διαγράφηκε με επιτυχία",
|
||||
"Function Description": "Περιγραφή Λειτουργίας",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Περισσότερα",
|
||||
"Name": "Όνομα",
|
||||
"Name your knowledge base": "Ονομάστε τη βάση γνώσης σας",
|
||||
"Native": "",
|
||||
"New Chat": "Νέα Συνομιλία",
|
||||
"New Folder": "",
|
||||
"New Password": "Νέος Κωδικός",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "Προηγούμενες 30 ημέρες",
|
||||
"Previous 7 days": "Προηγούμενες 7 ημέρες",
|
||||
"Profile Image": "Εικόνα Προφίλ",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Προτροπή (π.χ. Πες μου ένα διασκεδαστικό γεγονός για την Ρωμαϊκή Αυτοκρατορία)",
|
||||
"Prompt Content": "Περιεχόμενο Προτροπής",
|
||||
"Prompt created successfully": "Η προτροπή δημιουργήθηκε με επιτυχία",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "",
|
||||
"Default (Open AI)": "",
|
||||
"Default (SentenceTransformers)": "",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "",
|
||||
"Default model updated": "",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "",
|
||||
"Enter Chunk Size": "",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "",
|
||||
"Enter Google PSE API Key": "",
|
||||
"Enter Google PSE Engine Id": "",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "",
|
||||
"Function deleted successfully": "",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "",
|
||||
"Name": "",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "",
|
||||
"New Folder": "",
|
||||
"New Password": "",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "",
|
||||
"Previous 7 days": "",
|
||||
"Profile Image": "",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
|
||||
"Prompt Content": "",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "",
|
||||
"Default (Open AI)": "",
|
||||
"Default (SentenceTransformers)": "",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "",
|
||||
"Default model updated": "",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "",
|
||||
"Enter Chunk Size": "",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "",
|
||||
"Enter Google PSE API Key": "",
|
||||
"Enter Google PSE Engine Id": "",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "",
|
||||
"Function deleted successfully": "",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "",
|
||||
"Name": "",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "",
|
||||
"New Folder": "",
|
||||
"New Password": "",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "",
|
||||
"Previous 7 days": "",
|
||||
"Profile Image": "",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
|
||||
"Prompt Content": "",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Por defecto",
|
||||
"Default (Open AI)": "Predeterminado (Open AI)",
|
||||
"Default (SentenceTransformers)": "Predeterminado (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Modelo predeterminado",
|
||||
"Default model updated": "El modelo por defecto ha sido actualizado",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Ingresar superposición de fragmentos",
|
||||
"Enter Chunk Size": "Ingrese el tamaño del fragmento",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Ingresa la URL sin procesar de Github",
|
||||
"Enter Google PSE API Key": "Ingrese la clave API de Google PSE",
|
||||
"Enter Google PSE Engine Id": "Introduzca el ID del motor PSE de Google",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "Penalización de frecuencia",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "Función creada exitosamente",
|
||||
"Function deleted successfully": "Función borrada exitosamente",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Más",
|
||||
"Name": "Nombre",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "Nuevo Chat",
|
||||
"New Folder": "",
|
||||
"New Password": "Nueva Contraseña",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "Últimos 30 días",
|
||||
"Previous 7 days": "Últimos 7 días",
|
||||
"Profile Image": "Imagen de perfil",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (por ejemplo, cuéntame una cosa divertida sobre el Imperio Romano)",
|
||||
"Prompt Content": "Contenido del Prompt",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Lehenetsia",
|
||||
"Default (Open AI)": "Lehenetsia (Open AI)",
|
||||
"Default (SentenceTransformers)": "Lehenetsia (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Eredu Lehenetsia",
|
||||
"Default model updated": "Eredu lehenetsia eguneratu da",
|
||||
"Default Models": "Eredu Lehenetsiak",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Sartu Zatien Gainjartzea (chunk overlap)",
|
||||
"Enter Chunk Size": "Sartu Zati Tamaina",
|
||||
"Enter description": "Sartu deskribapena",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Sartu Github Raw URLa",
|
||||
"Enter Google PSE API Key": "Sartu Google PSE API Gakoa",
|
||||
"Enter Google PSE Engine Id": "Sartu Google PSE Motor IDa",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "Ebaluazioak",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Adibidea: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Adibidea: GUZTIAK",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "Formateatu zure aldagaiak kortxeteak erabiliz honela:",
|
||||
"Frequency Penalty": "Maiztasun Zigorra",
|
||||
"Function": "Funtzioa",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "Funtzioa ongi sortu da",
|
||||
"Function deleted successfully": "Funtzioa ongi ezabatu da",
|
||||
"Function Description": "Funtzioaren Deskribapena",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Gehiago",
|
||||
"Name": "Izena",
|
||||
"Name your knowledge base": "Izendatu zure ezagutza-basea",
|
||||
"Native": "",
|
||||
"New Chat": "Txat berria",
|
||||
"New Folder": "",
|
||||
"New Password": "Pasahitz berria",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "Aurreko 30 egunak",
|
||||
"Previous 7 days": "Aurreko 7 egunak",
|
||||
"Profile Image": "Profil irudia",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt-a (adib. Kontatu datu dibertigarri bat Erromatar Inperioari buruz)",
|
||||
"Prompt Content": "Prompt edukia",
|
||||
"Prompt created successfully": "Prompt-a ongi sortu da",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "پیشفرض",
|
||||
"Default (Open AI)": "",
|
||||
"Default (SentenceTransformers)": "پیشفرض (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "مدل پیشفرض",
|
||||
"Default model updated": "مدل پیشفرض به\u200cروزرسانی شد",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "مقدار Chunk Overlap را وارد کنید",
|
||||
"Enter Chunk Size": "مقدار Chunk Size را وارد کنید",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "ادرس Github Raw را وارد کنید",
|
||||
"Enter Google PSE API Key": "کلید API گوگل PSE را وارد کنید",
|
||||
"Enter Google PSE Engine Id": "شناسه موتور PSE گوگل را وارد کنید",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "مجازات فرکانس",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "",
|
||||
"Function deleted successfully": "",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "بیشتر",
|
||||
"Name": "نام",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "گپ جدید",
|
||||
"New Folder": "",
|
||||
"New Password": "رمز عبور جدید",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "30 روز قبل",
|
||||
"Previous 7 days": "7 روز قبل",
|
||||
"Profile Image": "تصویر پروفایل",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "پیشنهاد (برای مثال: به من بگوید چیزی که برای من یک کاربرد داره درباره ایران)",
|
||||
"Prompt Content": "محتویات پرامپت",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Oletus",
|
||||
"Default (Open AI)": "Oletus (Open AI)",
|
||||
"Default (SentenceTransformers)": "Oletus (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Oletusmalli",
|
||||
"Default model updated": "Oletusmalli päivitetty",
|
||||
"Default Models": "Oletusmallit",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Syötä osien päällekkäisyys",
|
||||
"Enter Chunk Size": "Syötä osien koko",
|
||||
"Enter description": "Kirjoita kuvaus",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Kirjoita Github Raw -URL-osoite",
|
||||
"Enter Google PSE API Key": "Kirjoita Google PSE API -avain",
|
||||
"Enter Google PSE Engine Id": "Kirjoita Google PSE -moottorin tunnus",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "Arvioinnit",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Esimerkki: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Esimerkki: KAIKKI",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "Muotoile muuttujasi hakasulkeilla tällä tavalla:",
|
||||
"Frequency Penalty": "Taajuussakko",
|
||||
"Function": "Toiminto",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "Toiminto luotu onnistuneesti",
|
||||
"Function deleted successfully": "Toiminto poistettu onnistuneesti",
|
||||
"Function Description": "Toiminnon kuvaus",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Lisää",
|
||||
"Name": "Nimi",
|
||||
"Name your knowledge base": "Anna tietokannalle nimi",
|
||||
"Native": "",
|
||||
"New Chat": "Uusi keskustelu",
|
||||
"New Folder": "",
|
||||
"New Password": "Uusi salasana",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "Edelliset 30 päivää",
|
||||
"Previous 7 days": "Edelliset 7 päivää",
|
||||
"Profile Image": "Profiilikuva",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Kehote (esim. Kerro hauska fakta Rooman valtakunnasta)",
|
||||
"Prompt Content": "Kehotteen sisältö",
|
||||
"Prompt created successfully": "Kehote luotu onnistuneesti",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Par défaut",
|
||||
"Default (Open AI)": "",
|
||||
"Default (SentenceTransformers)": "Par défaut (Sentence Transformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Modèle standard",
|
||||
"Default model updated": "Modèle par défaut mis à jour",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Entrez le chevauchement de chunk",
|
||||
"Enter Chunk Size": "Entrez la taille de bloc",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Entrez l'URL brute de GitHub",
|
||||
"Enter Google PSE API Key": "Entrez la clé API Google PSE",
|
||||
"Enter Google PSE Engine Id": "Entrez l'identifiant du moteur Google PSE",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "Pénalité de fréquence",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "La fonction a été créée avec succès",
|
||||
"Function deleted successfully": "Fonction supprimée avec succès",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Plus de",
|
||||
"Name": "Nom",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "Nouvelle conversation",
|
||||
"New Folder": "",
|
||||
"New Password": "Nouveau mot de passe",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "30 derniers jours",
|
||||
"Previous 7 days": "7 derniers jours",
|
||||
"Profile Image": "Image de profil",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (par ex. Dites-moi un fait amusant à propos de l'Empire romain)",
|
||||
"Prompt Content": "Contenu du prompt",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Par défaut",
|
||||
"Default (Open AI)": "Par défaut (OpenAI)",
|
||||
"Default (SentenceTransformers)": "Par défaut (Sentence Transformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Modèle standard",
|
||||
"Default model updated": "Modèle par défaut mis à jour",
|
||||
"Default Models": "Modèles par défaut",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Entrez le chevauchement des chunks",
|
||||
"Enter Chunk Size": "Entrez la taille des chunks",
|
||||
"Enter description": "Entrez la description",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Entrez l'URL brute de GitHub",
|
||||
"Enter Google PSE API Key": "Entrez la clé API Google PSE",
|
||||
"Enter Google PSE Engine Id": "Entrez l'identifiant du moteur Google PSE",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "Erreur d'accès à Google Drive : {{error}}",
|
||||
"Error uploading file: {{error}}": "Erreur de téléversement du fichier : {{error}}",
|
||||
"Evaluations": "Évaluations",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Exemple: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Exemple: TOUS",
|
||||
"Example: mail": "Exemple: mail",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "Formatez vos variables en utilisant des parenthèses comme ceci :",
|
||||
"Frequency Penalty": "Pénalité de fréquence",
|
||||
"Function": "Fonction",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "La fonction a été créée avec succès",
|
||||
"Function deleted successfully": "Fonction supprimée avec succès",
|
||||
"Function Description": "Description de la fonction",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Plus",
|
||||
"Name": "Nom d'utilisateur",
|
||||
"Name your knowledge base": "Nommez votre base de connaissances",
|
||||
"Native": "",
|
||||
"New Chat": "Nouvelle conversation",
|
||||
"New Folder": "Nouveau dossier",
|
||||
"New Password": "Nouveau mot de passe",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "30 derniers jours",
|
||||
"Previous 7 days": "7 derniers jours",
|
||||
"Profile Image": "Image de profil",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (par ex. Dites-moi un fait amusant à propos de l'Empire romain)",
|
||||
"Prompt Content": "Contenu du prompt",
|
||||
"Prompt created successfully": "Prompt créé avec succès",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "ברירת מחדל",
|
||||
"Default (Open AI)": "",
|
||||
"Default (SentenceTransformers)": "ברירת מחדל (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "מודל ברירת מחדל",
|
||||
"Default model updated": "המודל המוגדר כברירת מחדל עודכן",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "הזן חפיפת נתונים",
|
||||
"Enter Chunk Size": "הזן גודל נתונים",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "הזן כתובת URL של Github Raw",
|
||||
"Enter Google PSE API Key": "הזן מפתח API של Google PSE",
|
||||
"Enter Google PSE Engine Id": "הזן את מזהה מנוע PSE של Google",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "עונש תדירות",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "",
|
||||
"Function deleted successfully": "",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "עוד",
|
||||
"Name": "שם",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "צ'אט חדש",
|
||||
"New Folder": "",
|
||||
"New Password": "סיסמה חדשה",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "30 הימים הקודמים",
|
||||
"Previous 7 days": "7 הימים הקודמים",
|
||||
"Profile Image": "תמונת פרופיל",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "פקודה (למשל, ספר לי עובדה מעניינת על האימפריה הרומית)",
|
||||
"Prompt Content": "תוכן הפקודה",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "डिफ़ॉल्ट",
|
||||
"Default (Open AI)": "",
|
||||
"Default (SentenceTransformers)": "डिफ़ॉल्ट (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "डिफ़ॉल्ट मॉडल",
|
||||
"Default model updated": "डिफ़ॉल्ट मॉडल अपडेट किया गया",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "चंक ओवरलैप दर्ज करें",
|
||||
"Enter Chunk Size": "खंड आकार दर्ज करें",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Github Raw URL दर्ज करें",
|
||||
"Enter Google PSE API Key": "Google PSE API कुंजी दर्ज करें",
|
||||
"Enter Google PSE Engine Id": "Google PSE इंजन आईडी दर्ज करें",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "फ्रीक्वेंसी पेनल्टी",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "",
|
||||
"Function deleted successfully": "",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "और..",
|
||||
"Name": "नाम",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "नई चैट",
|
||||
"New Folder": "",
|
||||
"New Password": "नया पासवर्ड",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "पिछले 30 दिन",
|
||||
"Previous 7 days": "पिछले 7 दिन",
|
||||
"Profile Image": "प्रोफ़ाइल छवि",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "प्रॉम्प्ट (उदाहरण के लिए मुझे रोमन साम्राज्य के बारे में एक मजेदार तथ्य बताएं)",
|
||||
"Prompt Content": "प्रॉम्प्ट सामग्री",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Zadano",
|
||||
"Default (Open AI)": "",
|
||||
"Default (SentenceTransformers)": "Zadano (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Zadani model",
|
||||
"Default model updated": "Zadani model ažuriran",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Unesite preklapanje dijelova",
|
||||
"Enter Chunk Size": "Unesite veličinu dijela",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Unesite Github sirovi URL",
|
||||
"Enter Google PSE API Key": "Unesite Google PSE API ključ",
|
||||
"Enter Google PSE Engine Id": "Unesite ID Google PSE motora",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "Kazna za učestalost",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "",
|
||||
"Function deleted successfully": "",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Više",
|
||||
"Name": "Ime",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "Novi razgovor",
|
||||
"New Folder": "",
|
||||
"New Password": "Nova lozinka",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "Prethodnih 30 dana",
|
||||
"Previous 7 days": "Prethodnih 7 dana",
|
||||
"Profile Image": "Profilna slika",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (npr. Reci mi zanimljivost o Rimskom carstvu)",
|
||||
"Prompt Content": "Sadržaj prompta",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Alapértelmezett",
|
||||
"Default (Open AI)": "Alapértelmezett (Open AI)",
|
||||
"Default (SentenceTransformers)": "Alapértelmezett (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Alapértelmezett modell",
|
||||
"Default model updated": "Alapértelmezett modell frissítve",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Add meg a darab átfedést",
|
||||
"Enter Chunk Size": "Add meg a darab méretet",
|
||||
"Enter description": "Add meg a leírást",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Add meg a Github Raw URL-t",
|
||||
"Enter Google PSE API Key": "Add meg a Google PSE API kulcsot",
|
||||
"Enter Google PSE Engine Id": "Add meg a Google PSE motor azonosítót",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "Értékelések",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "Formázd a változóidat zárójelekkel így:",
|
||||
"Frequency Penalty": "Gyakorisági büntetés",
|
||||
"Function": "Funkció",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "Funkció sikeresen létrehozva",
|
||||
"Function deleted successfully": "Funkció sikeresen törölve",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Több",
|
||||
"Name": "Név",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "Új beszélgetés",
|
||||
"New Folder": "",
|
||||
"New Password": "Új jelszó",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "Előző 30 nap",
|
||||
"Previous 7 days": "Előző 7 nap",
|
||||
"Profile Image": "Profilkép",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (pl. Mondj egy érdekes tényt a Római Birodalomról)",
|
||||
"Prompt Content": "Prompt tartalom",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Default",
|
||||
"Default (Open AI)": "",
|
||||
"Default (SentenceTransformers)": "Default (Pengubah Kalimat)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Model Default",
|
||||
"Default model updated": "Model default diperbarui",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Masukkan Tumpang Tindih Chunk",
|
||||
"Enter Chunk Size": "Masukkan Ukuran Potongan",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Masukkan URL Mentah Github",
|
||||
"Enter Google PSE API Key": "Masukkan Kunci API Google PSE",
|
||||
"Enter Google PSE Engine Id": "Masukkan Id Mesin Google PSE",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "Penalti Frekuensi",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "Fungsi berhasil dibuat",
|
||||
"Function deleted successfully": "Fungsi berhasil dihapus",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Lainnya",
|
||||
"Name": "Nama",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "Obrolan Baru",
|
||||
"New Folder": "",
|
||||
"New Password": "Kata Sandi Baru",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "30 hari sebelumnya",
|
||||
"Previous 7 days": "7 hari sebelumnya",
|
||||
"Profile Image": "Gambar Profil",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Permintaan (mis. Ceritakan sebuah fakta menarik tentang Kekaisaran Romawi)",
|
||||
"Prompt Content": "Konten yang Diminta",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Réamhshocraithe",
|
||||
"Default (Open AI)": "Réamhshocraithe (Oscail AI)",
|
||||
"Default (SentenceTransformers)": "Réamhshocraithe (SentenceTransFormers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Múnla Réamhshocraithe",
|
||||
"Default model updated": "Nuashonraíodh an múnla réamhshocraithe",
|
||||
"Default Models": "Múnlaí Réamhshocraithe",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Cuir isteach Chunk Forluí",
|
||||
"Enter Chunk Size": "Cuir isteach Méid an Chunc",
|
||||
"Enter description": "Tarraing",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Cuir isteach URL Github Raw",
|
||||
"Enter Google PSE API Key": "Cuir isteach Eochair API Google PSE",
|
||||
"Enter Google PSE Engine Id": "Cuir isteach ID Inneall Google PSE",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "Earráid agus tú ag rochtain Google Drive: {{error}}",
|
||||
"Error uploading file: {{error}}": "Earráid agus comhad á uaslódáil: {{error}}",
|
||||
"Evaluations": "Meastóireachtaí",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Sampla: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Sampla: GACH",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "Formáidigh na hathróga ag baint úsáide as lúibíní mar seo:",
|
||||
"Frequency Penalty": "Pionós Minicíochta",
|
||||
"Function": "Feidhm",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "Cruthaíodh feidhm go rathúil",
|
||||
"Function deleted successfully": "Feidhm scriosta go rathúil",
|
||||
"Function Description": "Cur síos ar Fheidhm",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Tuilleadh",
|
||||
"Name": "Ainm",
|
||||
"Name your knowledge base": "Cuir ainm ar do bhunachar eolais",
|
||||
"Native": "",
|
||||
"New Chat": "Comhrá Nua",
|
||||
"New Folder": "Fillteán Nua",
|
||||
"New Password": "Pasfhocal Nua",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "30 lá roimhe seo",
|
||||
"Previous 7 days": "7 lá roimhe seo",
|
||||
"Profile Image": "Íomhá Próifíl",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Leid (m.sh. inis dom fíric spraíúil faoin Impireacht Rómhánach)",
|
||||
"Prompt Content": "Ábhar Leid",
|
||||
"Prompt created successfully": "Leid cruthaithe go rathúil",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Predefinito",
|
||||
"Default (Open AI)": "",
|
||||
"Default (SentenceTransformers)": "Predefinito (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Modello di default",
|
||||
"Default model updated": "Modello predefinito aggiornato",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Inserisci la sovrapposizione chunk",
|
||||
"Enter Chunk Size": "Inserisci la dimensione chunk",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Immettere l'URL grezzo di Github",
|
||||
"Enter Google PSE API Key": "Inserisci la chiave API PSE di Google",
|
||||
"Enter Google PSE Engine Id": "Inserisci l'ID motore PSE di Google",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "Penalità di frequenza",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "",
|
||||
"Function deleted successfully": "",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Altro",
|
||||
"Name": "Nome",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "Nuova chat",
|
||||
"New Folder": "",
|
||||
"New Password": "Nuova password",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "Ultimi 30 giorni",
|
||||
"Previous 7 days": "Ultimi 7 giorni",
|
||||
"Profile Image": "Immagine del profilo",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (ad esempio Dimmi un fatto divertente sull'Impero Romano)",
|
||||
"Prompt Content": "Contenuto del prompt",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "デフォルト",
|
||||
"Default (Open AI)": "デフォルト(OpenAI)",
|
||||
"Default (SentenceTransformers)": "デフォルト (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "デフォルトモデル",
|
||||
"Default model updated": "デフォルトモデルが更新されました",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "チャンクオーバーラップを入力してください",
|
||||
"Enter Chunk Size": "チャンクサイズを入力してください",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Github Raw URLを入力",
|
||||
"Enter Google PSE API Key": "Google PSE APIキーの入力",
|
||||
"Enter Google PSE Engine Id": "Google PSE エンジン ID を入力します。",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "頻度ペナルティ",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "Functionの作成が成功しました。",
|
||||
"Function deleted successfully": "Functionの削除が成功しました。",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "もっと見る",
|
||||
"Name": "名前",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "新しいチャット",
|
||||
"New Folder": "",
|
||||
"New Password": "新しいパスワード",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "前の30日間",
|
||||
"Previous 7 days": "前の7日間",
|
||||
"Profile Image": "プロフィール画像",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "プロンプト(例:ローマ帝国についての楽しい事を教えてください)",
|
||||
"Prompt Content": "プロンプトの内容",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "დეფოლტი",
|
||||
"Default (Open AI)": "",
|
||||
"Default (SentenceTransformers)": "დეფოლტ (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "ნაგულისხმები მოდელი",
|
||||
"Default model updated": "დეფოლტ მოდელი განახლებულია",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "შეიყვანეთ ნაწილის გადახურვა",
|
||||
"Enter Chunk Size": "შეიყვანე ბლოკის ზომა",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "შეიყვანეთ Github Raw URL",
|
||||
"Enter Google PSE API Key": "შეიყვანეთ Google PSE API გასაღები",
|
||||
"Enter Google PSE Engine Id": "შეიყვანეთ Google PSE ძრავის ID",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "სიხშირის ჯარიმა",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "",
|
||||
"Function deleted successfully": "",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "ვრცლად",
|
||||
"Name": "სახელი",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "ახალი მიმოწერა",
|
||||
"New Folder": "",
|
||||
"New Password": "ახალი პაროლი",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "უკან 30 დღე",
|
||||
"Previous 7 days": "უკან 7 დღე",
|
||||
"Profile Image": "პროფილის სურათი",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (მაგ. მითხარი სახალისო ფაქტი რომის იმპერიის შესახებ)",
|
||||
"Prompt Content": "მოთხოვნის შინაარსი",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "기본값",
|
||||
"Default (Open AI)": "기본값 (Open AI)",
|
||||
"Default (SentenceTransformers)": "기본값 (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "기본 모델",
|
||||
"Default model updated": "기본 모델이 업데이트되었습니다.",
|
||||
"Default Models": "기본 모델",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "청크 오버랩 입력",
|
||||
"Enter Chunk Size": "청크 크기 입력",
|
||||
"Enter description": "설명 입력",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Github Raw URL 입력",
|
||||
"Enter Google PSE API Key": "Google PSE API 키 입력",
|
||||
"Enter Google PSE Engine Id": "Google PSE 엔진 ID 입력",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "평가",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "변수를 다음과 같이 괄호를 사용하여 생성하세요",
|
||||
"Frequency Penalty": "빈도 페널티",
|
||||
"Function": "함수",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "성공적으로 함수가 생성되었습니다",
|
||||
"Function deleted successfully": "성공적으로 함수가 삭제되었습니다",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "더보기",
|
||||
"Name": "이름",
|
||||
"Name your knowledge base": "지식 기반 이름을 지정하세요",
|
||||
"Native": "",
|
||||
"New Chat": "새 채팅",
|
||||
"New Folder": "",
|
||||
"New Password": "새 비밀번호",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "이전 30일",
|
||||
"Previous 7 days": "이전 7일",
|
||||
"Profile Image": "프로필 이미지",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "프롬프트 (예: 로마 황제에 대해 재미있는 사실을 알려주세요)",
|
||||
"Prompt Content": "프롬프트 내용",
|
||||
"Prompt created successfully": "성공적으로 프롬프트를 생성했습니다",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Numatytasis",
|
||||
"Default (Open AI)": "",
|
||||
"Default (SentenceTransformers)": "Numatytasis (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Numatytasis modelis",
|
||||
"Default model updated": "Numatytasis modelis atnaujintas",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Įveskite blokų persidengimą",
|
||||
"Enter Chunk Size": "Įveskite blokų dydį",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Įveskite GitHub Raw nuorodą",
|
||||
"Enter Google PSE API Key": "Įveskite Google PSE API raktą",
|
||||
"Enter Google PSE Engine Id": "Įveskite Google PSE variklio ID",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "Dažnumo bauda",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "Funkcija sukurta sėkmingai",
|
||||
"Function deleted successfully": "Funkcija ištrinta sėkmingai",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Daugiau",
|
||||
"Name": "Pavadinimas",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "Naujas pokalbis",
|
||||
"New Folder": "",
|
||||
"New Password": "Naujas slaptažodis",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "Paskutinės 30 dienų",
|
||||
"Previous 7 days": "Paskutinės 7 dienos",
|
||||
"Profile Image": "Profilio nuotrauka",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Užklausa (pvz. supaprastink šį laišką)",
|
||||
"Prompt Content": "Užklausos turinys",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Lalai",
|
||||
"Default (Open AI)": "",
|
||||
"Default (SentenceTransformers)": "Lalai (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Model Lalai",
|
||||
"Default model updated": "Model lalai dikemas kini",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Masukkan Tindihan 'Chunk'",
|
||||
"Enter Chunk Size": "Masukkan Saiz 'Chunk'",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Masukkan URL 'Github Raw'",
|
||||
"Enter Google PSE API Key": "Masukkan kunci API Google PSE",
|
||||
"Enter Google PSE Engine Id": "Masukkan Id Enjin Google PSE",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "Penalti Kekerapan",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "Fungsi berjaya dibuat",
|
||||
"Function deleted successfully": "Fungsi berjaya dipadamkan",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Lagi",
|
||||
"Name": "Nama",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "Perbualan Baru",
|
||||
"New Folder": "",
|
||||
"New Password": "Kata Laluan Baru",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "30 hari sebelumnya",
|
||||
"Previous 7 days": "7 hari sebelumnya",
|
||||
"Profile Image": "Imej Profail",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Gesaan (cth Beritahu saya fakta yang menyeronokkan tentang Kesultanan Melaka)",
|
||||
"Prompt Content": "Kandungan Gesaan",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Standard",
|
||||
"Default (Open AI)": "Standard (Open AI)",
|
||||
"Default (SentenceTransformers)": "Standard (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Standard modell",
|
||||
"Default model updated": "Standard modell oppdatert",
|
||||
"Default Models": "Standard modeller",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Angi Chunk-overlapp",
|
||||
"Enter Chunk Size": "Angi Chunk-størrelse",
|
||||
"Enter description": "Angi beskrivelse",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Angi Github Raw-URL",
|
||||
"Enter Google PSE API Key": "Angi API-nøkkel for Google PSE",
|
||||
"Enter Google PSE Engine Id": "Angi motor-ID for Google PSE",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "Vurderinger",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Eksempel: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Eksempel: ALL",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "Formatér variablene dine med klammer som disse:",
|
||||
"Frequency Penalty": "Frekvensstraff",
|
||||
"Function": "Funksjon",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "Funksjonen er opprettet",
|
||||
"Function deleted successfully": "Funksjonen er slettet",
|
||||
"Function Description": "Beskrivelse av funksjon",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Mer",
|
||||
"Name": "Navn",
|
||||
"Name your knowledge base": "Gi kunnskapsbasen et navn",
|
||||
"Native": "",
|
||||
"New Chat": "Ny chat",
|
||||
"New Folder": "",
|
||||
"New Password": "Nytt passord",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "Siste 30 dager",
|
||||
"Previous 7 days": "Siste 7 dager",
|
||||
"Profile Image": "Profilbilde",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Ledetekst (f.eks. Fortell meg noe morsomt om romerriket)",
|
||||
"Prompt Content": "Ledetekstinnhold",
|
||||
"Prompt created successfully": "Ledetekst opprettet",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Standaard",
|
||||
"Default (Open AI)": "Standaard (Open AI)",
|
||||
"Default (SentenceTransformers)": "Standaard (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Standaardmodel",
|
||||
"Default model updated": "Standaardmodel bijgewerkt",
|
||||
"Default Models": "Standaardmodellen",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Voeg Chunk Overlap toe",
|
||||
"Enter Chunk Size": "Voeg Chunk Size toe",
|
||||
"Enter description": "Voer beschrijving in",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Voer de Github Raw-URL in",
|
||||
"Enter Google PSE API Key": "Voer de Google PSE API-sleutel in",
|
||||
"Enter Google PSE Engine Id": "Voer Google PSE Engine-ID in",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "Beoordelingen",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Voorbeeld: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Voorbeeld: ALL",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "Formateer je variabelen met haken zoals dit:",
|
||||
"Frequency Penalty": "Frequentiestraf",
|
||||
"Function": "Functie",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "Functie succesvol aangemaakt",
|
||||
"Function deleted successfully": "Functie succesvol verwijderd",
|
||||
"Function Description": "Functiebeschrijving",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Meer",
|
||||
"Name": "Naam",
|
||||
"Name your knowledge base": "Geef je kennisbasis een naam",
|
||||
"Native": "",
|
||||
"New Chat": "Nieuwe Chat",
|
||||
"New Folder": "",
|
||||
"New Password": "Nieuw Wachtwoord",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "Afgelopen 30 dagen",
|
||||
"Previous 7 days": "Afgelopen 7 dagen",
|
||||
"Profile Image": "Profielafbeelding",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (bv. Vertel me een leuke gebeurtenis over het Romeinse Rijk)",
|
||||
"Prompt Content": "Promptinhoud",
|
||||
"Prompt created successfully": "Prompt succesvol aangemaakt",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "ਮੂਲ",
|
||||
"Default (Open AI)": "",
|
||||
"Default (SentenceTransformers)": "ਮੂਲ (ਸੈਂਟੈਂਸਟ੍ਰਾਂਸਫਾਰਮਰਸ)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "ਡਿਫਾਲਟ ਮਾਡਲ",
|
||||
"Default model updated": "ਮੂਲ ਮਾਡਲ ਅੱਪਡੇਟ ਕੀਤਾ ਗਿਆ",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "ਚੰਕ ਓਵਰਲੈਪ ਦਰਜ ਕਰੋ",
|
||||
"Enter Chunk Size": "ਚੰਕ ਆਕਾਰ ਦਰਜ ਕਰੋ",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Github ਕੱਚਾ URL ਦਾਖਲ ਕਰੋ",
|
||||
"Enter Google PSE API Key": "Google PSE API ਕੁੰਜੀ ਦਾਖਲ ਕਰੋ",
|
||||
"Enter Google PSE Engine Id": "Google PSE ਇੰਜਣ ID ਦਾਖਲ ਕਰੋ",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "ਬਾਰੰਬਾਰਤਾ ਜੁਰਮਾਨਾ",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "",
|
||||
"Function deleted successfully": "",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "ਹੋਰ",
|
||||
"Name": "ਨਾਮ",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "ਨਵੀਂ ਗੱਲਬਾਤ",
|
||||
"New Folder": "",
|
||||
"New Password": "ਨਵਾਂ ਪਾਸਵਰਡ",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "ਪਿਛਲੇ 30 ਦਿਨ",
|
||||
"Previous 7 days": "ਪਿਛਲੇ 7 ਦਿਨ",
|
||||
"Profile Image": "ਪ੍ਰੋਫਾਈਲ ਚਿੱਤਰ",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "ਪ੍ਰੰਪਟ (ਉਦਾਹਰਣ ਲਈ ਮੈਨੂੰ ਰੋਮਨ ਸਾਮਰਾਜ ਬਾਰੇ ਇੱਕ ਮਜ਼ੇਦਾਰ ਤੱਥ ਦੱਸੋ)",
|
||||
"Prompt Content": "ਪ੍ਰੰਪਟ ਸਮੱਗਰੀ",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Domyślny",
|
||||
"Default (Open AI)": "",
|
||||
"Default (SentenceTransformers)": "Domyślny (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Model domyślny",
|
||||
"Default model updated": "Domyślny model zaktualizowany",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Wprowadź zakchodzenie bloku",
|
||||
"Enter Chunk Size": "Wprowadź rozmiar bloku",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Wprowadź nieprzetworzony adres URL usługi Github",
|
||||
"Enter Google PSE API Key": "Wprowadź klucz API Google PSE",
|
||||
"Enter Google PSE Engine Id": "Wprowadź identyfikator aparatu Google PSE",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "Kara za częstotliwość",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "",
|
||||
"Function deleted successfully": "",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Więcej",
|
||||
"Name": "Nazwa",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "Nowy czat",
|
||||
"New Folder": "",
|
||||
"New Password": "Nowe hasło",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "Poprzednie 30 dni",
|
||||
"Previous 7 days": "Poprzednie 7 dni",
|
||||
"Profile Image": "Obrazek profilowy",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (np. powiedz mi zabawny fakt o Imperium Rzymskim",
|
||||
"Prompt Content": "Zawartość prompta",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Padrão",
|
||||
"Default (Open AI)": "Padrão (Open AI)",
|
||||
"Default (SentenceTransformers)": "Padrão (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Modelo Padrão",
|
||||
"Default model updated": "Modelo padrão atualizado",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Digite a Sobreposição de Chunk",
|
||||
"Enter Chunk Size": "Digite o Tamanho do Chunk",
|
||||
"Enter description": "Digite a descrição",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Digite a URL bruta do Github",
|
||||
"Enter Google PSE API Key": "Digite a Chave API do Google PSE",
|
||||
"Enter Google PSE Engine Id": "Digite o ID do Motor do Google PSE",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "Avaliações",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Exemplo: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Exemplo: ALL",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "Formate suas variáveis usando colchetes como este:",
|
||||
"Frequency Penalty": "Penalização por Frequência",
|
||||
"Function": "Função",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "Função criada com sucesso",
|
||||
"Function deleted successfully": "Função excluída com sucesso",
|
||||
"Function Description": "Descrição da Função",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Mais",
|
||||
"Name": "Nome",
|
||||
"Name your knowledge base": "Nome da sua base de conhecimento",
|
||||
"Native": "",
|
||||
"New Chat": "Novo Chat",
|
||||
"New Folder": "",
|
||||
"New Password": "Nova Senha",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "Últimos 30 dias",
|
||||
"Previous 7 days": "Últimos 7 dias",
|
||||
"Profile Image": "Imagem de Perfil",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (por exemplo, Diga-me um fato divertido sobre o Império Romano)",
|
||||
"Prompt Content": "Conteúdo do Prompt",
|
||||
"Prompt created successfully": "Prompt criado com sucesso",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Padrão",
|
||||
"Default (Open AI)": "",
|
||||
"Default (SentenceTransformers)": "Padrão (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Modelo padrão",
|
||||
"Default model updated": "Modelo padrão atualizado",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Escreva a Sobreposição de Fragmento",
|
||||
"Enter Chunk Size": "Escreva o Tamanho do Fragmento",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Escreva o URL cru do Github",
|
||||
"Enter Google PSE API Key": "Escreva a chave da API PSE do Google",
|
||||
"Enter Google PSE Engine Id": "Escreva o ID do mecanismo PSE do Google",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "Penalidade de Frequência",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "",
|
||||
"Function deleted successfully": "",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Mais",
|
||||
"Name": "Nome",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "Nova Conversa",
|
||||
"New Folder": "",
|
||||
"New Password": "Nova Senha",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "Últimos 30 dias",
|
||||
"Previous 7 days": "Últimos 7 dias",
|
||||
"Profile Image": "Imagem de Perfil",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (ex.: Dê-me um facto divertido sobre o Império Romano)",
|
||||
"Prompt Content": "Conteúdo do Prompt",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Implicit",
|
||||
"Default (Open AI)": "Implicit (Open AI)",
|
||||
"Default (SentenceTransformers)": "Implicit (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Model Implicit",
|
||||
"Default model updated": "Modelul implicit a fost actualizat",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Introduceți Suprapunerea Blocului",
|
||||
"Enter Chunk Size": "Introduceți Dimensiunea Blocului",
|
||||
"Enter description": "Introduceți descrierea",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Introduceți URL-ul Raw de pe Github",
|
||||
"Enter Google PSE API Key": "Introduceți Cheia API Google PSE",
|
||||
"Enter Google PSE Engine Id": "Introduceți ID-ul Motorului Google PSE",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "Evaluări",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "Formatează variabilele folosind acolade așa:",
|
||||
"Frequency Penalty": "Penalizare de Frecvență",
|
||||
"Function": "Funcție",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "Funcția a fost creată cu succes",
|
||||
"Function deleted successfully": "Funcția a fost ștearsă cu succes",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Mai multe",
|
||||
"Name": "Nume",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "Conversație Nouă",
|
||||
"New Folder": "",
|
||||
"New Password": "Parolă Nouă",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "Ultimele 30 de zile",
|
||||
"Previous 7 days": "Ultimele 7 zile",
|
||||
"Profile Image": "Imagine de Profil",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (de ex. Spune-mi un fapt amuzant despre Imperiul Roman)",
|
||||
"Prompt Content": "Conținut Prompt",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "По умолчанию",
|
||||
"Default (Open AI)": "По умолчанию (Open AI)",
|
||||
"Default (SentenceTransformers)": "По умолчанию (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Модель по умолчанию",
|
||||
"Default model updated": "Модель по умолчанию обновлена",
|
||||
"Default Models": "Модели по умолчанию",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Введите перекрытие фрагмента",
|
||||
"Enter Chunk Size": "Введите размер фрагмента",
|
||||
"Enter description": "Введите описание",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Введите необработанный URL-адрес Github",
|
||||
"Enter Google PSE API Key": "Введите ключ API Google PSE",
|
||||
"Enter Google PSE Engine Id": "Введите Id движка Google PSE",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "Оценки",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "Отформатируйте переменные, используя такие : скобки",
|
||||
"Frequency Penalty": "Штраф за частоту",
|
||||
"Function": "Функция",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "Функция успешно создана",
|
||||
"Function deleted successfully": "Функция успешно удалена",
|
||||
"Function Description": "Описание Функции",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Больше",
|
||||
"Name": "Имя",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "Новый чат",
|
||||
"New Folder": "",
|
||||
"New Password": "Новый пароль",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "Предыдущие 30 дней",
|
||||
"Previous 7 days": "Предыдущие 7 дней",
|
||||
"Profile Image": "Изображение профиля",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Промпт (например, Расскажи мне интересный факт о Римской империи)",
|
||||
"Prompt Content": "Содержание промпта",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Predvolené hodnoty alebo nastavenia.",
|
||||
"Default (Open AI)": "Predvolené (Open AI)",
|
||||
"Default (SentenceTransformers)": "Predvolené (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Predvolený model",
|
||||
"Default model updated": "Predvolený model aktualizovaný.",
|
||||
"Default Models": "Predvolené modely",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Zadajte prekryv časti",
|
||||
"Enter Chunk Size": "Zadajte veľkosť časti",
|
||||
"Enter description": "Zadajte popis",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Zadajte URL adresu Github Raw",
|
||||
"Enter Google PSE API Key": "Zadajte kľúč rozhrania API Google PSE",
|
||||
"Enter Google PSE Engine Id": "Zadajte ID vyhľadávacieho mechanizmu Google PSE",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "Hodnotenia",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "Formátujte svoje premenné pomocou zátvoriek takto:",
|
||||
"Frequency Penalty": "Penalizácia frekvencie",
|
||||
"Function": "Funkcia",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "Funkcia bola úspešne vytvorená.",
|
||||
"Function deleted successfully": "Funkcia bola úspešne odstránená",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Viac",
|
||||
"Name": "Meno",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "Nový chat",
|
||||
"New Folder": "",
|
||||
"New Password": "Nové heslo",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "Predchádzajúcich 30 dní",
|
||||
"Previous 7 days": "Predchádzajúcich 7 dní",
|
||||
"Profile Image": "Profilový obrázok",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (napr. Povedz mi zábavnú skutočnosť o Rímskej ríši)",
|
||||
"Prompt Content": "Obsah promptu",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Подразумевано",
|
||||
"Default (Open AI)": "Подразумевано (Open AI)",
|
||||
"Default (SentenceTransformers)": "Подразумевано (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Подразумевани модел",
|
||||
"Default model updated": "Подразумевани модел ажуриран",
|
||||
"Default Models": "Подразумевани модели",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Унесите преклапање делова",
|
||||
"Enter Chunk Size": "Унесите величину дела",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Унесите Гитхуб Раw УРЛ адресу",
|
||||
"Enter Google PSE API Key": "Унесите Гоогле ПСЕ АПИ кључ",
|
||||
"Enter Google PSE Engine Id": "Унесите Гоогле ПСЕ ИД машине",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "Процењивања",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "Фреквентна казна",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "",
|
||||
"Function deleted successfully": "",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Више",
|
||||
"Name": "Име",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "Ново ћаскање",
|
||||
"New Folder": "",
|
||||
"New Password": "Нова лозинка",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "Претходних 30 дана",
|
||||
"Previous 7 days": "Претходних 7 дана",
|
||||
"Profile Image": "Слика профила",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Упит (нпр. „подели занимљивост о Римском царству“)",
|
||||
"Prompt Content": "Садржај упита",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Standard",
|
||||
"Default (Open AI)": "",
|
||||
"Default (SentenceTransformers)": "Standard (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Standardmodell",
|
||||
"Default model updated": "Standardmodell uppdaterad",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Ange chunköverlappning",
|
||||
"Enter Chunk Size": "Ange chunkstorlek",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Ange Github Raw URL",
|
||||
"Enter Google PSE API Key": "Ange Google PSE API-nyckel",
|
||||
"Enter Google PSE Engine Id": "Ange Google PSE Engine Id",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "Straff för frekvens",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "",
|
||||
"Function deleted successfully": "",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Mer",
|
||||
"Name": "Namn",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "Ny chatt",
|
||||
"New Folder": "",
|
||||
"New Password": "Nytt lösenord",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "Föregående 30 dagar",
|
||||
"Previous 7 days": "Föregående 7 dagar",
|
||||
"Profile Image": "Profilbild",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Instruktion (t.ex. Berätta en kuriosa om Romerska Imperiet)",
|
||||
"Prompt Content": "Instruktionens innehåll",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "ค่าเริ่มต้น",
|
||||
"Default (Open AI)": "",
|
||||
"Default (SentenceTransformers)": "ค่าเริ่มต้น (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "โมเดลค่าเริ่มต้น",
|
||||
"Default model updated": "อัปเดตโมเดลค่าเริ่มต้นแล้ว",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "ใส่การทับซ้อนส่วนข้อมูล",
|
||||
"Enter Chunk Size": "ใส่ขนาดส่วนข้อมูล",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "ใส่ URL ดิบของ Github",
|
||||
"Enter Google PSE API Key": "ใส่คีย์ API ของ Google PSE",
|
||||
"Enter Google PSE Engine Id": "ใส่รหัสเครื่องยนต์ของ Google PSE",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "การลงโทษความถี่",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "สร้างฟังก์ชันสำเร็จ",
|
||||
"Function deleted successfully": "ลบฟังก์ชันสำเร็จ",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "เพิ่มเติม",
|
||||
"Name": "ชื่อ",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "แชทใหม่",
|
||||
"New Folder": "",
|
||||
"New Password": "รหัสผ่านใหม่",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "30 วันที่ผ่านมา",
|
||||
"Previous 7 days": "7 วันที่ผ่านมา",
|
||||
"Profile Image": "รูปโปรไฟล์",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "พรอมต์ (เช่น บอกข้อเท็จจริงที่น่าสนุกเกี่ยวกับจักรวรรดิโรมัน)",
|
||||
"Prompt Content": "เนื้อหาพรอมต์",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "",
|
||||
"Default (Open AI)": "",
|
||||
"Default (SentenceTransformers)": "",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "",
|
||||
"Default model updated": "",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "",
|
||||
"Enter Chunk Size": "",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "",
|
||||
"Enter Google PSE API Key": "",
|
||||
"Enter Google PSE Engine Id": "",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "",
|
||||
"Function deleted successfully": "",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "",
|
||||
"Name": "",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "",
|
||||
"New Folder": "",
|
||||
"New Password": "",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "",
|
||||
"Previous 7 days": "",
|
||||
"Profile Image": "",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
|
||||
"Prompt Content": "",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Varsayılan",
|
||||
"Default (Open AI)": "Varsayılan (Open AI)",
|
||||
"Default (SentenceTransformers)": "Varsayılan (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Varsayılan Model",
|
||||
"Default model updated": "Varsayılan model güncellendi",
|
||||
"Default Models": "Varsayılan Modeller",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Chunk Örtüşmesini Girin",
|
||||
"Enter Chunk Size": "Chunk Boyutunu Girin",
|
||||
"Enter description": "Açıklama girin",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Github Raw URL'sini girin",
|
||||
"Enter Google PSE API Key": "Google PSE API Anahtarını Girin",
|
||||
"Enter Google PSE Engine Id": "Google PSE Engine Id'sini Girin",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "Google Drive'a erişim hatası: {{error}}",
|
||||
"Error uploading file: {{error}}": "Dosya yüklenirken hata oluştu: {{error}}",
|
||||
"Evaluations": "Değerlendirmeler",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Örnek: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Örnek: ALL",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "Değişkenlerinizi şu şekilde parantez kullanarak biçimlendirin:",
|
||||
"Frequency Penalty": "Frekans Cezası",
|
||||
"Function": "Fonksiyon",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "Fonksiyon başarıyla oluşturuldu",
|
||||
"Function deleted successfully": "Fonksiyon başarıyla silindi",
|
||||
"Function Description": "Fonksiyon Açıklaması",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Daha Fazla",
|
||||
"Name": "Ad",
|
||||
"Name your knowledge base": "Bilgi tabanınıza bir ad verin",
|
||||
"Native": "",
|
||||
"New Chat": "Yeni Sohbet",
|
||||
"New Folder": "Yeni Klasör",
|
||||
"New Password": "Yeni Parola",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "Önceki 30 gün",
|
||||
"Previous 7 days": "Önceki 7 gün",
|
||||
"Profile Image": "Profil Fotoğrafı",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (örn. Roma İmparatorluğu hakkında ilginç bir bilgi verin)",
|
||||
"Prompt Content": "Prompt İçeriği",
|
||||
"Prompt created successfully": "Prompt başarıyla oluşturuldu",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "За замовчуванням",
|
||||
"Default (Open AI)": "За замовчуванням (Open AI)",
|
||||
"Default (SentenceTransformers)": "За замовчуванням (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Модель за замовчуванням",
|
||||
"Default model updated": "Модель за замовчуванням оновлено",
|
||||
"Default Models": "Моделі за замовчуванням",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Введіть перекриття фрагменту",
|
||||
"Enter Chunk Size": "Введіть розмір фрагменту",
|
||||
"Enter description": "Введіть опис",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Введіть Raw URL-адресу Github",
|
||||
"Enter Google PSE API Key": "Введіть ключ API Google PSE",
|
||||
"Enter Google PSE Engine Id": "Введіть Google PSE Engine Id",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "Помилка доступу до Google Drive: {{error}}",
|
||||
"Error uploading file: {{error}}": "Помилка завантаження файлу: {{error}}",
|
||||
"Evaluations": "Оцінювання",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Приклад: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Приклад: ВСІ",
|
||||
"Example: mail": "Приклад: пошта",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "Форматуйте свої змінні, використовуючи фігурні дужки таким чином:",
|
||||
"Frequency Penalty": "Штраф за частоту",
|
||||
"Function": "Функція",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "Функцію успішно створено",
|
||||
"Function deleted successfully": "Функцію успішно видалено",
|
||||
"Function Description": "Опис функції",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Більше",
|
||||
"Name": "Ім'я",
|
||||
"Name your knowledge base": "Назвіть вашу базу знань",
|
||||
"Native": "",
|
||||
"New Chat": "Новий чат",
|
||||
"New Folder": "Нова папка",
|
||||
"New Password": "Новий пароль",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "Попередні 30 днів",
|
||||
"Previous 7 days": "Попередні 7 днів",
|
||||
"Profile Image": "Зображення профілю",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Підказка (напр., розкажіть мені цікавий факт про Римську імперію)",
|
||||
"Prompt Content": "Зміст промту",
|
||||
"Prompt created successfully": "Підказку успішно створено",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "پہلے سے طے شدہ",
|
||||
"Default (Open AI)": "ڈیفالٹ (اوپن اے آئی)",
|
||||
"Default (SentenceTransformers)": "ڈیفالٹ (سینٹینس ٹرانسفارمرز)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "ڈیفالٹ ماڈل",
|
||||
"Default model updated": "ڈیفالٹ ماڈل اپ ڈیٹ ہو گیا",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "چنک اوورلیپ درج کریں",
|
||||
"Enter Chunk Size": "چنک سائز درج کریں",
|
||||
"Enter description": "تفصیل درج کریں",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "گیٹ ہب را یو آر ایل درج کریں",
|
||||
"Enter Google PSE API Key": "گوگل PSE API کلید درج کریں",
|
||||
"Enter Google PSE Engine Id": "گوگل پی ایس ای انجن آئی ڈی درج کریں",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "تشخیصات",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "اپنے متغیرات کو اس طرح بریکٹس میں فارمیٹ کریں:",
|
||||
"Frequency Penalty": "کثرت کی پابندی",
|
||||
"Function": "فنکشن",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "فنکشن کامیابی سے تخلیق ہو گیا",
|
||||
"Function deleted successfully": "فنکشن کامیابی کے ساتھ حذف ہو گیا",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "مزید",
|
||||
"Name": "نام",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "نئی بات چیت",
|
||||
"New Folder": "",
|
||||
"New Password": "نیا پاس ورڈ",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "پچھلے 30 دن",
|
||||
"Previous 7 days": "پچھلے 7 دن",
|
||||
"Profile Image": "پروفائل تصویر",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "سوال کریں (مثلاً: مجھے رومن سلطنت کے بارے میں کوئی دلچسپ حقیقت بتائیں)",
|
||||
"Prompt Content": "مواد کا آغاز کریں",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "Mặc định",
|
||||
"Default (Open AI)": "",
|
||||
"Default (SentenceTransformers)": "Mặc định (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "Model mặc định",
|
||||
"Default model updated": "Mô hình mặc định đã được cập nhật",
|
||||
"Default Models": "",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "Nhập Chunk chồng lấn (overlap)",
|
||||
"Enter Chunk Size": "Nhập Kích thước Chunk",
|
||||
"Enter description": "",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "Nhập URL cho Github Raw",
|
||||
"Enter Google PSE API Key": "Nhập Google PSE API Key",
|
||||
"Enter Google PSE Engine Id": "Nhập Google PSE Engine Id",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: mail": "",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "",
|
||||
"Frequency Penalty": "Hình phạt tần số",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "Function được tạo thành công",
|
||||
"Function deleted successfully": "Function đã bị xóa",
|
||||
"Function Description": "",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "Thêm",
|
||||
"Name": "Tên",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
"New Chat": "Tạo chat mới",
|
||||
"New Folder": "",
|
||||
"New Password": "Mật khẩu mới",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "30 ngày trước",
|
||||
"Previous 7 days": "7 ngày trước",
|
||||
"Profile Image": "Ảnh đại diện",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (ví dụ: Hãy kể cho tôi một sự thật thú vị về Đế chế La Mã)",
|
||||
"Prompt Content": "Nội dung prompt",
|
||||
"Prompt created successfully": "",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "默认",
|
||||
"Default (Open AI)": "默认 (OpenAI)",
|
||||
"Default (SentenceTransformers)": "默认(SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "默认模型",
|
||||
"Default model updated": "默认模型已更新",
|
||||
"Default Models": "默认模型",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "输入块重叠 (Chunk Overlap)",
|
||||
"Enter Chunk Size": "输入块大小 (Chunk Size)",
|
||||
"Enter description": "输入简介描述",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "输入 Github Raw 地址",
|
||||
"Enter Google PSE API Key": "输入 Google PSE API 密钥",
|
||||
"Enter Google PSE Engine Id": "输入 Google PSE 引擎 ID",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "访问 Google 云端硬盘 出错: {{error}}",
|
||||
"Error uploading file: {{error}}": "上传文件时出错: {{error}}",
|
||||
"Evaluations": "竞技场评估",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "例如:(&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "例如:ALL",
|
||||
"Example: mail": "例如:mail",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "使用括号格式化你的变量,如下所示:",
|
||||
"Frequency Penalty": "频率惩罚",
|
||||
"Function": "函数",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "函数创建成功",
|
||||
"Function deleted successfully": "函数删除成功",
|
||||
"Function Description": "函数描述",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "更多",
|
||||
"Name": "名称",
|
||||
"Name your knowledge base": "为您的知识库命名",
|
||||
"Native": "",
|
||||
"New Chat": "新对话",
|
||||
"New Folder": "新文件夹",
|
||||
"New Password": "新密码",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "过去 30 天",
|
||||
"Previous 7 days": "过去 7 天",
|
||||
"Profile Image": "用户头像",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "提示(例如:给我讲一个关于罗马帝国的趣事。)",
|
||||
"Prompt Content": "提示词内容",
|
||||
"Prompt created successfully": "提示词创建成功",
|
||||
|
@ -237,6 +237,7 @@
|
||||
"Default": "預設",
|
||||
"Default (Open AI)": "預設 (OpenAI)",
|
||||
"Default (SentenceTransformers)": "預設 (SentenceTransformers)",
|
||||
"Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model’s built-in tool-calling capabilities, but requires the model to inherently support this feature.": "",
|
||||
"Default Model": "預設模型",
|
||||
"Default model updated": "預設模型已更新",
|
||||
"Default Models": "預設模型",
|
||||
@ -347,6 +348,7 @@
|
||||
"Enter Chunk Overlap": "輸入區塊重疊",
|
||||
"Enter Chunk Size": "輸入區塊大小",
|
||||
"Enter description": "輸入描述",
|
||||
"Enter Exa API Key": "",
|
||||
"Enter Github Raw URL": "輸入 GitHub Raw URL",
|
||||
"Enter Google PSE API Key": "輸入 Google PSE API 金鑰",
|
||||
"Enter Google PSE Engine Id": "輸入 Google PSE 引擎 ID",
|
||||
@ -395,6 +397,7 @@
|
||||
"Error accessing Google Drive: {{error}}": "存取 Google Drive 時發生錯誤:{{error}}",
|
||||
"Error uploading file: {{error}}": "上傳檔案時發生錯誤:{{error}}",
|
||||
"Evaluations": "評估",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "範例:(&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "範例:ALL",
|
||||
"Example: mail": "範例:mail",
|
||||
@ -454,6 +457,7 @@
|
||||
"Format your variables using brackets like this:": "使用方括號格式化您的變數,如下所示:",
|
||||
"Frequency Penalty": "頻率懲罰",
|
||||
"Function": "函式",
|
||||
"Function Calling": "",
|
||||
"Function created successfully": "成功建立函式",
|
||||
"Function deleted successfully": "成功刪除函式",
|
||||
"Function Description": "函式描述",
|
||||
@ -625,6 +629,7 @@
|
||||
"More": "更多",
|
||||
"Name": "名稱",
|
||||
"Name your knowledge base": "命名您的知識庫",
|
||||
"Native": "",
|
||||
"New Chat": "新增對話",
|
||||
"New Folder": "新增資料夾",
|
||||
"New Password": "新密碼",
|
||||
@ -728,6 +733,7 @@
|
||||
"Previous 30 days": "過去 30 天",
|
||||
"Previous 7 days": "過去 7 天",
|
||||
"Profile Image": "個人檔案圖片",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "提示詞(例如:告訴我關於羅馬帝國的一些趣事)",
|
||||
"Prompt Content": "提示詞內容",
|
||||
"Prompt created successfully": "提示詞建立成功",
|
||||
|
Loading…
x
Reference in New Issue
Block a user