Compare commits
66 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| db929b5d5e | |||
| 47ae5221f7 | |||
| 79e988b281 | |||
| 9412f51c19 | |||
| 320cf06333 | |||
| cede8a966f | |||
| c561a4c42b | |||
| b4e7957a00 | |||
| c4eacbfc0f | |||
| 429fa2befa | |||
| 3cfd4f8993 | |||
| 1c3bc99b86 | |||
| 335337fc75 | |||
| 1ea03cc156 | |||
| 3923c4df65 | |||
| 70ea85484c | |||
| 35d75e733d | |||
| 259881f0b6 | |||
| b4cd685795 | |||
| 2d5e1a8c6f | |||
| f07ba60f2a | |||
| e12cf77553 | |||
| c13bcfdfc9 | |||
| 9aac02824d | |||
| edd224d542 | |||
| 5c49740aa5 | |||
| 20f31b5bc8 | |||
| b23600b49d | |||
| 7b9b0f23fe | |||
| 2e7af7bdbf | |||
| 12c8257c92 | |||
| 9a2dd5b126 | |||
| 4b83a83576 | |||
| e18a43aec8 | |||
| ea28747baa | |||
| 3816e3c2ef | |||
| 9bc0de2c6a | |||
| 81386e9b04 | |||
| 7062e637e8 | |||
| 714ed248fb | |||
| 7b675a1488 | |||
| 386c976e9a | |||
| 5be7cbfdf5 | |||
| 0217c044c9 | |||
| 26efc76d40 | |||
| 8abf5d57c1 | |||
| 948b65e43f | |||
| e1a85c99ab | |||
| 6783c98539 | |||
| c03bfd141e | |||
| 70838148e7 | |||
| d587206929 | |||
| 1c0327ed7f | |||
| b0162dfee0 | |||
| 1fcde2272b | |||
| 48c03ef551 | |||
| d16b09bee5 | |||
| b9e637ee2b | |||
| b1237cf389 | |||
| 3dfea834ca | |||
| c03cae811d | |||
| 6088acf36d | |||
| c5cd1e4403 | |||
| aca06f92e8 | |||
| e30c5e628c | |||
| b7d730e244 |
@@ -5,6 +5,39 @@ All notable changes to this project will be documented in this file.
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [0.4.4] - 2024-11-22
|
||||
|
||||
### Added
|
||||
|
||||
- **🌐 Translation Updates**: Refreshed Catalan, Brazilian Portuguese, German, and Ukrainian translations, further enhancing the platform's accessibility and improving the experience for international users.
|
||||
|
||||
### Fixed
|
||||
|
||||
- **📱 Mobile Controls Visibility**: Resolved an issue where the controls button was not displaying on the new chats page for mobile users, ensuring smoother navigation and functionality on smaller screens.
|
||||
- **📷 LDAP Profile Image Issue**: Fixed an LDAP integration bug related to profile images, ensuring seamless authentication and a reliable login experience for users.
|
||||
- **⏳ RAG Query Generation Issue**: Addressed a significant problem where RAG query generation occurred unnecessarily without attached files, drastically improving speed and reducing delays during chat completions.
|
||||
|
||||
### Changed
|
||||
|
||||
- **⚙️ Legacy Event Emitter Support**: Reintroduced compatibility with legacy "citation" types for event emitters in tools and functions, providing smoother workflows and broader tool support for users.
|
||||
|
||||
## [0.4.3] - 2024-11-21
|
||||
|
||||
### Added
|
||||
|
||||
- **📚 Inline Citations for RAG Results**: Get seamless inline citations for Retrieval-Augmented Generation (RAG) responses using the default RAG prompt. Note: This feature only supports newly uploaded files, improving traceability and providing source clarity.
|
||||
- **🎨 Better Rich Text Input Support**: Enjoy smoother and more reliable rich text formatting for chats, enhancing communication quality.
|
||||
- **⚡ Faster Model Retrieval**: Implemented caching optimizations for faster model loading, providing a noticeable speed boost across workflows. Further improvements are on the way!
|
||||
|
||||
### Fixed
|
||||
|
||||
- **🔗 Pipelines Feature Restored**: Resolved a critical issue that previously prevented Pipelines from functioning, ensuring seamless workflows.
|
||||
- **✏️ Missing Suffix Field in Ollama Form**: Added the missing "suffix" field to the Ollama generate form, enhancing customization options.
|
||||
|
||||
### Changed
|
||||
|
||||
- **🗂️ Renamed "Citations" to "Sources"**: Improved clarity and consistency by renaming the "citations" field to "sources" in messages.
|
||||
|
||||
## [0.4.2] - 2024-11-20
|
||||
|
||||
### Fixed
|
||||
|
||||
@@ -9,6 +9,8 @@ from typing import Optional, Union
|
||||
from urllib.parse import urlparse
|
||||
|
||||
import aiohttp
|
||||
from aiocache import cached
|
||||
|
||||
import requests
|
||||
from open_webui.apps.webui.models.models import Models
|
||||
from open_webui.config import (
|
||||
@@ -256,6 +258,7 @@ def merge_models_lists(model_lists):
|
||||
return list(merged_models.values())
|
||||
|
||||
|
||||
@cached(ttl=3)
|
||||
async def get_all_models():
|
||||
log.info("get_all_models()")
|
||||
if app.state.config.ENABLE_OLLAMA_API:
|
||||
@@ -295,8 +298,6 @@ async def get_all_models():
|
||||
for model in response.get("models", []):
|
||||
model["model"] = f"{prefix_id}.{model['model']}"
|
||||
|
||||
print(responses)
|
||||
|
||||
models = {
|
||||
"models": merge_models_lists(
|
||||
map(
|
||||
@@ -837,6 +838,7 @@ async def generate_ollama_batch_embeddings(
|
||||
class GenerateCompletionForm(BaseModel):
|
||||
model: str
|
||||
prompt: str
|
||||
suffix: Optional[str] = None
|
||||
images: Optional[list[str]] = None
|
||||
format: Optional[str] = None
|
||||
options: Optional[dict] = None
|
||||
|
||||
@@ -6,7 +6,10 @@ from pathlib import Path
|
||||
from typing import Literal, Optional, overload
|
||||
|
||||
import aiohttp
|
||||
from aiocache import cached
|
||||
import requests
|
||||
|
||||
|
||||
from open_webui.apps.webui.models.models import Models
|
||||
from open_webui.config import (
|
||||
CACHE_DIR,
|
||||
@@ -302,6 +305,8 @@ async def get_all_models_responses() -> list:
|
||||
}
|
||||
|
||||
tasks.append(asyncio.ensure_future(asyncio.sleep(0, model_list)))
|
||||
else:
|
||||
tasks.append(asyncio.ensure_future(asyncio.sleep(0, None)))
|
||||
|
||||
responses = await asyncio.gather(*tasks)
|
||||
|
||||
@@ -323,6 +328,7 @@ async def get_all_models_responses() -> list:
|
||||
return responses
|
||||
|
||||
|
||||
@cached(ttl=3)
|
||||
async def get_all_models() -> dict[str, list]:
|
||||
log.info("get_all_models()")
|
||||
|
||||
|
||||
@@ -29,6 +29,7 @@ from open_webui.apps.retrieval.loaders.youtube import YoutubeLoader
|
||||
from open_webui.apps.retrieval.web.main import SearchResult
|
||||
from open_webui.apps.retrieval.web.utils import get_web_loader
|
||||
from open_webui.apps.retrieval.web.brave import search_brave
|
||||
from open_webui.apps.retrieval.web.mojeek import search_mojeek
|
||||
from open_webui.apps.retrieval.web.duckduckgo import search_duckduckgo
|
||||
from open_webui.apps.retrieval.web.google_pse import search_google_pse
|
||||
from open_webui.apps.retrieval.web.jina_search import search_jina
|
||||
@@ -53,6 +54,7 @@ from open_webui.apps.retrieval.utils import (
|
||||
from open_webui.apps.webui.models.files import Files
|
||||
from open_webui.config import (
|
||||
BRAVE_SEARCH_API_KEY,
|
||||
MOJEEK_SEARCH_API_KEY,
|
||||
TIKTOKEN_ENCODING_NAME,
|
||||
RAG_TEXT_SPLITTER,
|
||||
CHUNK_OVERLAP,
|
||||
@@ -180,6 +182,7 @@ app.state.config.SEARXNG_QUERY_URL = SEARXNG_QUERY_URL
|
||||
app.state.config.GOOGLE_PSE_API_KEY = GOOGLE_PSE_API_KEY
|
||||
app.state.config.GOOGLE_PSE_ENGINE_ID = GOOGLE_PSE_ENGINE_ID
|
||||
app.state.config.BRAVE_SEARCH_API_KEY = BRAVE_SEARCH_API_KEY
|
||||
app.state.config.MOJEEK_SEARCH_API_KEY = MOJEEK_SEARCH_API_KEY
|
||||
app.state.config.SERPSTACK_API_KEY = SERPSTACK_API_KEY
|
||||
app.state.config.SERPSTACK_HTTPS = SERPSTACK_HTTPS
|
||||
app.state.config.SERPER_API_KEY = SERPER_API_KEY
|
||||
@@ -478,6 +481,7 @@ async def get_rag_config(user=Depends(get_admin_user)):
|
||||
"google_pse_api_key": app.state.config.GOOGLE_PSE_API_KEY,
|
||||
"google_pse_engine_id": app.state.config.GOOGLE_PSE_ENGINE_ID,
|
||||
"brave_search_api_key": app.state.config.BRAVE_SEARCH_API_KEY,
|
||||
"mojeek_search_api_key": app.state.config.MOJEEK_SEARCH_API_KEY,
|
||||
"serpstack_api_key": app.state.config.SERPSTACK_API_KEY,
|
||||
"serpstack_https": app.state.config.SERPSTACK_HTTPS,
|
||||
"serper_api_key": app.state.config.SERPER_API_KEY,
|
||||
@@ -523,6 +527,7 @@ class WebSearchConfig(BaseModel):
|
||||
google_pse_api_key: Optional[str] = None
|
||||
google_pse_engine_id: Optional[str] = None
|
||||
brave_search_api_key: Optional[str] = None
|
||||
mojeek_search_api_key: Optional[str] = None
|
||||
serpstack_api_key: Optional[str] = None
|
||||
serpstack_https: Optional[bool] = None
|
||||
serper_api_key: Optional[str] = None
|
||||
@@ -593,6 +598,9 @@ async def update_rag_config(form_data: ConfigUpdateForm, user=Depends(get_admin_
|
||||
app.state.config.BRAVE_SEARCH_API_KEY = (
|
||||
form_data.web.search.brave_search_api_key
|
||||
)
|
||||
app.state.config.MOJEEK_SEARCH_API_KEY = (
|
||||
form_data.web.search.mojeek_search_api_key
|
||||
)
|
||||
app.state.config.SERPSTACK_API_KEY = form_data.web.search.serpstack_api_key
|
||||
app.state.config.SERPSTACK_HTTPS = form_data.web.search.serpstack_https
|
||||
app.state.config.SERPER_API_KEY = form_data.web.search.serper_api_key
|
||||
@@ -643,6 +651,7 @@ async def update_rag_config(form_data: ConfigUpdateForm, user=Depends(get_admin_
|
||||
"google_pse_api_key": app.state.config.GOOGLE_PSE_API_KEY,
|
||||
"google_pse_engine_id": app.state.config.GOOGLE_PSE_ENGINE_ID,
|
||||
"brave_search_api_key": app.state.config.BRAVE_SEARCH_API_KEY,
|
||||
"mojeek_search_api_key": app.state.config.MOJEEK_SEARCH_API_KEY,
|
||||
"serpstack_api_key": app.state.config.SERPSTACK_API_KEY,
|
||||
"serpstack_https": app.state.config.SERPSTACK_HTTPS,
|
||||
"serper_api_key": app.state.config.SERPER_API_KEY,
|
||||
@@ -884,19 +893,17 @@ def process_file(
|
||||
# Update the content in the file
|
||||
# Usage: /files/{file_id}/data/content/update
|
||||
|
||||
VECTOR_DB_CLIENT.delete(
|
||||
collection_name=f"file-{file.id}",
|
||||
filter={"file_id": file.id},
|
||||
)
|
||||
VECTOR_DB_CLIENT.delete_collection(collection_name=f"file-{file.id}")
|
||||
|
||||
docs = [
|
||||
Document(
|
||||
page_content=form_data.content,
|
||||
metadata={
|
||||
"name": file.meta.get("name", file.filename),
|
||||
**file.meta,
|
||||
"name": file.filename,
|
||||
"created_by": file.user_id,
|
||||
"file_id": file.id,
|
||||
**file.meta,
|
||||
"source": file.filename,
|
||||
},
|
||||
)
|
||||
]
|
||||
@@ -923,10 +930,11 @@ def process_file(
|
||||
Document(
|
||||
page_content=file.data.get("content", ""),
|
||||
metadata={
|
||||
"name": file.meta.get("name", file.filename),
|
||||
**file.meta,
|
||||
"name": file.filename,
|
||||
"created_by": file.user_id,
|
||||
"file_id": file.id,
|
||||
**file.meta,
|
||||
"source": file.filename,
|
||||
},
|
||||
)
|
||||
]
|
||||
@@ -946,15 +954,30 @@ def process_file(
|
||||
docs = loader.load(
|
||||
file.filename, file.meta.get("content_type"), file_path
|
||||
)
|
||||
|
||||
docs = [
|
||||
Document(
|
||||
page_content=doc.page_content,
|
||||
metadata={
|
||||
**doc.metadata,
|
||||
"name": file.filename,
|
||||
"created_by": file.user_id,
|
||||
"file_id": file.id,
|
||||
"source": file.filename,
|
||||
},
|
||||
)
|
||||
for doc in docs
|
||||
]
|
||||
else:
|
||||
docs = [
|
||||
Document(
|
||||
page_content=file.data.get("content", ""),
|
||||
metadata={
|
||||
**file.meta,
|
||||
"name": file.filename,
|
||||
"created_by": file.user_id,
|
||||
"file_id": file.id,
|
||||
**file.meta,
|
||||
"source": file.filename,
|
||||
},
|
||||
)
|
||||
]
|
||||
@@ -975,7 +998,7 @@ def process_file(
|
||||
collection_name=collection_name,
|
||||
metadata={
|
||||
"file_id": file.id,
|
||||
"name": file.meta.get("name", file.filename),
|
||||
"name": file.filename,
|
||||
"hash": hash,
|
||||
},
|
||||
add=(True if form_data.collection_name else False),
|
||||
@@ -992,7 +1015,7 @@ def process_file(
|
||||
return {
|
||||
"status": True,
|
||||
"collection_name": collection_name,
|
||||
"filename": file.meta.get("name", file.filename),
|
||||
"filename": file.filename,
|
||||
"content": text_content,
|
||||
}
|
||||
except Exception as e:
|
||||
@@ -1131,6 +1154,7 @@ def search_web(engine: str, query: str) -> list[SearchResult]:
|
||||
- SEARXNG_QUERY_URL
|
||||
- GOOGLE_PSE_API_KEY + GOOGLE_PSE_ENGINE_ID
|
||||
- BRAVE_SEARCH_API_KEY
|
||||
- MOJEEK_SEARCH_API_KEY
|
||||
- SERPSTACK_API_KEY
|
||||
- SERPER_API_KEY
|
||||
- SERPLY_API_KEY
|
||||
@@ -1177,6 +1201,16 @@ def search_web(engine: str, query: str) -> list[SearchResult]:
|
||||
)
|
||||
else:
|
||||
raise Exception("No BRAVE_SEARCH_API_KEY found in environment variables")
|
||||
elif engine == "mojeek":
|
||||
if app.state.config.MOJEEK_SEARCH_API_KEY:
|
||||
return search_mojeek(
|
||||
app.state.config.MOJEEK_SEARCH_API_KEY,
|
||||
query,
|
||||
app.state.config.RAG_WEB_SEARCH_RESULT_COUNT,
|
||||
app.state.config.RAG_WEB_SEARCH_DOMAIN_FILTER_LIST,
|
||||
)
|
||||
else:
|
||||
raise Exception("No MOJEEK_SEARCH_API_KEY found in environment variables")
|
||||
elif engine == "serpstack":
|
||||
if app.state.config.SERPSTACK_API_KEY:
|
||||
return search_serpstack(
|
||||
|
||||
@@ -307,7 +307,7 @@ def get_embedding_function(
|
||||
return lambda query: generate_multiple(query, func)
|
||||
|
||||
|
||||
def get_rag_context(
|
||||
def get_sources_from_files(
|
||||
files,
|
||||
queries,
|
||||
embedding_function,
|
||||
@@ -387,43 +387,24 @@ def get_rag_context(
|
||||
del file["data"]
|
||||
relevant_contexts.append({**context, "file": file})
|
||||
|
||||
contexts = []
|
||||
citations = []
|
||||
sources = []
|
||||
for context in relevant_contexts:
|
||||
try:
|
||||
if "documents" in context:
|
||||
file_names = list(
|
||||
set(
|
||||
[
|
||||
metadata["name"]
|
||||
for metadata in context["metadatas"][0]
|
||||
if metadata is not None and "name" in metadata
|
||||
]
|
||||
)
|
||||
)
|
||||
contexts.append(
|
||||
((", ".join(file_names) + ":\n\n") if file_names else "")
|
||||
+ "\n\n".join(
|
||||
[text for text in context["documents"][0] if text is not None]
|
||||
)
|
||||
)
|
||||
|
||||
if "metadatas" in context:
|
||||
citation = {
|
||||
source = {
|
||||
"source": context["file"],
|
||||
"document": context["documents"][0],
|
||||
"metadata": context["metadatas"][0],
|
||||
}
|
||||
if "distances" in context and context["distances"]:
|
||||
citation["distances"] = context["distances"][0]
|
||||
citations.append(citation)
|
||||
source["distances"] = context["distances"][0]
|
||||
|
||||
sources.append(source)
|
||||
except Exception as e:
|
||||
log.exception(e)
|
||||
|
||||
print("contexts", contexts)
|
||||
print("citations", citations)
|
||||
|
||||
return contexts, citations
|
||||
return sources
|
||||
|
||||
|
||||
def get_model_path(model: str, update_model: bool = False):
|
||||
@@ -502,7 +483,6 @@ def generate_ollama_batch_embeddings(
|
||||
r.raise_for_status()
|
||||
data = r.json()
|
||||
|
||||
print(data)
|
||||
if "embeddings" in data:
|
||||
return data["embeddings"]
|
||||
else:
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
import logging
|
||||
from typing import Optional
|
||||
|
||||
import requests
|
||||
from open_webui.apps.retrieval.web.main import SearchResult, get_filtered_results
|
||||
from open_webui.env import SRC_LOG_LEVELS
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
log.setLevel(SRC_LOG_LEVELS["RAG"])
|
||||
|
||||
|
||||
def search_mojeek(
|
||||
api_key: str, query: str, count: int, filter_list: Optional[list[str]] = None
|
||||
) -> list[SearchResult]:
|
||||
"""Search using Mojeek's Search API and return the results as a list of SearchResult objects.
|
||||
|
||||
Args:
|
||||
api_key (str): A Mojeek Search API key
|
||||
query (str): The query to search for
|
||||
"""
|
||||
url = "https://api.mojeek.com/search"
|
||||
headers = {
|
||||
"Accept": "application/json",
|
||||
}
|
||||
params = {"q": query, "api_key": api_key, "fmt": "json", "t": count}
|
||||
|
||||
response = requests.get(url, headers=headers, params=params)
|
||||
response.raise_for_status()
|
||||
json_response = response.json()
|
||||
results = json_response.get("response", {}).get("results", [])
|
||||
print(results)
|
||||
if filter_list:
|
||||
results = get_filtered_results(results, filter_list)
|
||||
|
||||
return [
|
||||
SearchResult(
|
||||
link=result["url"], title=result.get("title"), snippet=result.get("desc")
|
||||
)
|
||||
for result in results
|
||||
]
|
||||
@@ -238,10 +238,16 @@ async def ldap_auth(request: Request, response: Response, form_data: LdapForm):
|
||||
|
||||
user = Users.get_user_by_email(mail)
|
||||
if not user:
|
||||
|
||||
try:
|
||||
hashed = get_password_hash(form_data.password)
|
||||
user = Auths.insert_new_auth(mail, hashed, cn)
|
||||
role = (
|
||||
"admin"
|
||||
if Users.get_num_users() == 0
|
||||
else request.app.state.config.DEFAULT_USER_ROLE
|
||||
)
|
||||
|
||||
user = Auths.insert_new_auth(
|
||||
email=mail, password=str(uuid.uuid4()), name=cn, role=role
|
||||
)
|
||||
|
||||
if not user:
|
||||
raise HTTPException(
|
||||
@@ -253,7 +259,7 @@ async def ldap_auth(request: Request, response: Response, form_data: LdapForm):
|
||||
except Exception as err:
|
||||
raise HTTPException(500, detail=ERROR_MESSAGES.DEFAULT(err))
|
||||
|
||||
user = Auths.authenticate_user(mail, password=str(form_data.password))
|
||||
user = Auths.authenticate_user_by_trusted_header(mail)
|
||||
|
||||
if user:
|
||||
token = create_token(
|
||||
|
||||
@@ -1,155 +0,0 @@
|
||||
import json
|
||||
from typing import Optional
|
||||
|
||||
from open_webui.apps.webui.models.documents import (
|
||||
DocumentForm,
|
||||
DocumentResponse,
|
||||
Documents,
|
||||
DocumentUpdateForm,
|
||||
)
|
||||
from open_webui.constants import ERROR_MESSAGES
|
||||
from fastapi import APIRouter, Depends, HTTPException, status
|
||||
from pydantic import BaseModel
|
||||
from open_webui.utils.utils import get_admin_user, get_verified_user
|
||||
|
||||
router = APIRouter()
|
||||
|
||||
############################
|
||||
# GetDocuments
|
||||
############################
|
||||
|
||||
|
||||
@router.get("/", response_model=list[DocumentResponse])
|
||||
async def get_documents(user=Depends(get_verified_user)):
|
||||
docs = [
|
||||
DocumentResponse(
|
||||
**{
|
||||
**doc.model_dump(),
|
||||
"content": json.loads(doc.content if doc.content else "{}"),
|
||||
}
|
||||
)
|
||||
for doc in Documents.get_docs()
|
||||
]
|
||||
return docs
|
||||
|
||||
|
||||
############################
|
||||
# CreateNewDoc
|
||||
############################
|
||||
|
||||
|
||||
@router.post("/create", response_model=Optional[DocumentResponse])
|
||||
async def create_new_doc(form_data: DocumentForm, user=Depends(get_admin_user)):
|
||||
doc = Documents.get_doc_by_name(form_data.name)
|
||||
if doc is None:
|
||||
doc = Documents.insert_new_doc(user.id, form_data)
|
||||
|
||||
if doc:
|
||||
return DocumentResponse(
|
||||
**{
|
||||
**doc.model_dump(),
|
||||
"content": json.loads(doc.content if doc.content else "{}"),
|
||||
}
|
||||
)
|
||||
else:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_400_BAD_REQUEST,
|
||||
detail=ERROR_MESSAGES.FILE_EXISTS,
|
||||
)
|
||||
else:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_400_BAD_REQUEST,
|
||||
detail=ERROR_MESSAGES.NAME_TAG_TAKEN,
|
||||
)
|
||||
|
||||
|
||||
############################
|
||||
# GetDocByName
|
||||
############################
|
||||
|
||||
|
||||
@router.get("/doc", response_model=Optional[DocumentResponse])
|
||||
async def get_doc_by_name(name: str, user=Depends(get_verified_user)):
|
||||
doc = Documents.get_doc_by_name(name)
|
||||
|
||||
if doc:
|
||||
return DocumentResponse(
|
||||
**{
|
||||
**doc.model_dump(),
|
||||
"content": json.loads(doc.content if doc.content else "{}"),
|
||||
}
|
||||
)
|
||||
else:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_401_UNAUTHORIZED,
|
||||
detail=ERROR_MESSAGES.NOT_FOUND,
|
||||
)
|
||||
|
||||
|
||||
############################
|
||||
# TagDocByName
|
||||
############################
|
||||
|
||||
|
||||
class TagItem(BaseModel):
|
||||
name: str
|
||||
|
||||
|
||||
class TagDocumentForm(BaseModel):
|
||||
name: str
|
||||
tags: list[dict]
|
||||
|
||||
|
||||
@router.post("/doc/tags", response_model=Optional[DocumentResponse])
|
||||
async def tag_doc_by_name(form_data: TagDocumentForm, user=Depends(get_verified_user)):
|
||||
doc = Documents.update_doc_content_by_name(form_data.name, {"tags": form_data.tags})
|
||||
|
||||
if doc:
|
||||
return DocumentResponse(
|
||||
**{
|
||||
**doc.model_dump(),
|
||||
"content": json.loads(doc.content if doc.content else "{}"),
|
||||
}
|
||||
)
|
||||
else:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_401_UNAUTHORIZED,
|
||||
detail=ERROR_MESSAGES.NOT_FOUND,
|
||||
)
|
||||
|
||||
|
||||
############################
|
||||
# UpdateDocByName
|
||||
############################
|
||||
|
||||
|
||||
@router.post("/doc/update", response_model=Optional[DocumentResponse])
|
||||
async def update_doc_by_name(
|
||||
name: str,
|
||||
form_data: DocumentUpdateForm,
|
||||
user=Depends(get_admin_user),
|
||||
):
|
||||
doc = Documents.update_doc_by_name(name, form_data)
|
||||
if doc:
|
||||
return DocumentResponse(
|
||||
**{
|
||||
**doc.model_dump(),
|
||||
"content": json.loads(doc.content if doc.content else "{}"),
|
||||
}
|
||||
)
|
||||
else:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_400_BAD_REQUEST,
|
||||
detail=ERROR_MESSAGES.NAME_TAG_TAKEN,
|
||||
)
|
||||
|
||||
|
||||
############################
|
||||
# DeleteDocByName
|
||||
############################
|
||||
|
||||
|
||||
@router.delete("/doc/delete", response_model=bool)
|
||||
async def delete_doc_by_name(name: str, user=Depends(get_admin_user)):
|
||||
result = Documents.delete_doc_by_name(name)
|
||||
return result
|
||||
@@ -56,7 +56,7 @@ def upload_file(file: UploadFile = File(...), user=Depends(get_verified_user)):
|
||||
FileForm(
|
||||
**{
|
||||
"id": id,
|
||||
"filename": filename,
|
||||
"filename": name,
|
||||
"path": file_path,
|
||||
"meta": {
|
||||
"name": name,
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
import os
|
||||
from pathlib import Path
|
||||
from typing import Optional
|
||||
|
||||
@@ -10,7 +9,7 @@ from open_webui.apps.webui.models.tools import (
|
||||
Tools,
|
||||
)
|
||||
from open_webui.apps.webui.utils import load_tools_module_by_id, replace_imports
|
||||
from open_webui.config import CACHE_DIR, DATA_DIR
|
||||
from open_webui.config import CACHE_DIR
|
||||
from open_webui.constants import ERROR_MESSAGES
|
||||
from fastapi import APIRouter, Depends, HTTPException, Request, status
|
||||
from open_webui.utils.tools import get_tools_specs
|
||||
@@ -300,38 +299,35 @@ async def update_tools_valves_by_id(
|
||||
request: Request, id: str, form_data: dict, user=Depends(get_verified_user)
|
||||
):
|
||||
tools = Tools.get_tool_by_id(id)
|
||||
if tools:
|
||||
if id in request.app.state.TOOLS:
|
||||
tools_module = request.app.state.TOOLS[id]
|
||||
else:
|
||||
tools_module, _ = load_tools_module_by_id(id)
|
||||
request.app.state.TOOLS[id] = tools_module
|
||||
|
||||
if hasattr(tools_module, "Valves"):
|
||||
Valves = tools_module.Valves
|
||||
|
||||
try:
|
||||
form_data = {k: v for k, v in form_data.items() if v is not None}
|
||||
valves = Valves(**form_data)
|
||||
Tools.update_tool_valves_by_id(id, valves.model_dump())
|
||||
return valves.model_dump()
|
||||
except Exception as e:
|
||||
print(e)
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_400_BAD_REQUEST,
|
||||
detail=ERROR_MESSAGES.DEFAULT(str(e)),
|
||||
)
|
||||
else:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_401_UNAUTHORIZED,
|
||||
detail=ERROR_MESSAGES.NOT_FOUND,
|
||||
)
|
||||
|
||||
else:
|
||||
if not tools:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_401_UNAUTHORIZED,
|
||||
detail=ERROR_MESSAGES.NOT_FOUND,
|
||||
)
|
||||
if id in request.app.state.TOOLS:
|
||||
tools_module = request.app.state.TOOLS[id]
|
||||
else:
|
||||
tools_module, _ = load_tools_module_by_id(id)
|
||||
request.app.state.TOOLS[id] = tools_module
|
||||
|
||||
if not hasattr(tools_module, "Valves"):
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_401_UNAUTHORIZED,
|
||||
detail=ERROR_MESSAGES.NOT_FOUND,
|
||||
)
|
||||
Valves = tools_module.Valves
|
||||
|
||||
try:
|
||||
form_data = {k: v for k, v in form_data.items() if v is not None}
|
||||
valves = Valves(**form_data)
|
||||
Tools.update_tool_valves_by_id(id, valves.model_dump())
|
||||
return valves.model_dump()
|
||||
except Exception as e:
|
||||
print(e)
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_400_BAD_REQUEST,
|
||||
detail=ERROR_MESSAGES.DEFAULT(str(e)),
|
||||
)
|
||||
|
||||
|
||||
############################
|
||||
|
||||
@@ -1181,21 +1181,32 @@ CHUNK_OVERLAP = PersistentConfig(
|
||||
int(os.environ.get("CHUNK_OVERLAP", "100")),
|
||||
)
|
||||
|
||||
DEFAULT_RAG_TEMPLATE = """You are given a user query, some textual context and rules, all inside xml tags. You have to answer the query based on the context while respecting the rules.
|
||||
DEFAULT_RAG_TEMPLATE = """### Task:
|
||||
Respond to the user query using the provided context, incorporating inline citations in the format [source_id] **only when the <source_id> tag is explicitly provided** in the context.
|
||||
|
||||
### Guidelines:
|
||||
- If you don't know the answer, clearly state that.
|
||||
- If uncertain, ask the user for clarification.
|
||||
- Respond in the same language as the user's query.
|
||||
- If the context is unreadable or of poor quality, inform the user and provide the best possible answer.
|
||||
- If the answer isn't present in the context but you possess the knowledge, explain this to the user and provide the answer using your own understanding.
|
||||
- **Only include inline citations using [source_id] when a <source_id> tag is explicitly provided in the context.**
|
||||
- Do not cite if the <source_id> tag is not provided in the context.
|
||||
- Do not use XML tags in your response.
|
||||
- Ensure citations are concise and directly related to the information provided.
|
||||
|
||||
### Example of Citation:
|
||||
If the user asks about a specific topic and the information is found in "whitepaper.pdf" with a provided <source_id>, the response should include the citation like so:
|
||||
* "According to the study, the proposed method increases efficiency by 20% [whitepaper.pdf]."
|
||||
If no <source_id> is present, the response should omit the citation.
|
||||
|
||||
### Output:
|
||||
Provide a clear and direct response to the user's query, including inline citations in the format [source_id] only when the <source_id> tag is present in the context.
|
||||
|
||||
<context>
|
||||
{{CONTEXT}}
|
||||
</context>
|
||||
|
||||
<rules>
|
||||
- If you don't know, just say so.
|
||||
- If you are not sure, ask for clarification.
|
||||
- Answer in the same language as the user query.
|
||||
- If the context appears unreadable or of poor quality, tell the user then answer as best as you can.
|
||||
- If the answer is not in the context but you think you know the answer, explain that to the user then answer with your own knowledge.
|
||||
- Answer directly and without using xml tags.
|
||||
</rules>
|
||||
|
||||
<user_query>
|
||||
{{QUERY}}
|
||||
</user_query>
|
||||
@@ -1290,6 +1301,12 @@ BRAVE_SEARCH_API_KEY = PersistentConfig(
|
||||
os.getenv("BRAVE_SEARCH_API_KEY", ""),
|
||||
)
|
||||
|
||||
MOJEEK_SEARCH_API_KEY = PersistentConfig(
|
||||
"MOJEEK_SEARCH_API_KEY",
|
||||
"rag.web.search.mojeek_search_api_key",
|
||||
os.getenv("MOJEEK_SEARCH_API_KEY", ""),
|
||||
)
|
||||
|
||||
SERPSTACK_API_KEY = PersistentConfig(
|
||||
"SERPSTACK_API_KEY",
|
||||
"rag.web.search.serpstack_api_key",
|
||||
|
||||
+93
-61
@@ -49,7 +49,7 @@ from open_webui.apps.openai.main import (
|
||||
get_all_models_responses as get_openai_models_responses,
|
||||
)
|
||||
from open_webui.apps.retrieval.main import app as retrieval_app
|
||||
from open_webui.apps.retrieval.utils import get_rag_context, rag_template
|
||||
from open_webui.apps.retrieval.utils import get_sources_from_files, rag_template
|
||||
from open_webui.apps.socket.main import (
|
||||
app as socket_app,
|
||||
periodic_usage_pool_cleanup,
|
||||
@@ -380,8 +380,7 @@ async def chat_completion_tools_handler(
|
||||
return body, {}
|
||||
|
||||
skip_files = False
|
||||
contexts = []
|
||||
citations = []
|
||||
sources = []
|
||||
|
||||
task_model_id = get_task_model_id(
|
||||
body["model"],
|
||||
@@ -463,21 +462,39 @@ async def chat_completion_tools_handler(
|
||||
except Exception as e:
|
||||
tool_output = str(e)
|
||||
|
||||
if tools[tool_function_name]["citation"]:
|
||||
citations.append(
|
||||
{
|
||||
"source": {
|
||||
"name": f"TOOL:{tools[tool_function_name]['toolkit_id']}/{tool_function_name}"
|
||||
},
|
||||
"document": [tool_output],
|
||||
"metadata": [{"source": tool_function_name}],
|
||||
}
|
||||
)
|
||||
if tools[tool_function_name]["file_handler"]:
|
||||
skip_files = True
|
||||
print(tools[tool_function_name]["citation"])
|
||||
|
||||
if isinstance(tool_output, str):
|
||||
contexts.append(tool_output)
|
||||
if tools[tool_function_name]["citation"]:
|
||||
sources.append(
|
||||
{
|
||||
"source": {
|
||||
"name": f"TOOL:{tools[tool_function_name]['toolkit_id']}/{tool_function_name}"
|
||||
},
|
||||
"document": [tool_output],
|
||||
"metadata": [
|
||||
{
|
||||
"source": f"TOOL:{tools[tool_function_name]['toolkit_id']}/{tool_function_name}"
|
||||
}
|
||||
],
|
||||
}
|
||||
)
|
||||
else:
|
||||
sources.append(
|
||||
{
|
||||
"source": {},
|
||||
"document": [tool_output],
|
||||
"metadata": [
|
||||
{
|
||||
"source": f"TOOL:{tools[tool_function_name]['toolkit_id']}/{tool_function_name}"
|
||||
}
|
||||
],
|
||||
}
|
||||
)
|
||||
|
||||
if tools[tool_function_name]["file_handler"]:
|
||||
skip_files = True
|
||||
|
||||
except Exception as e:
|
||||
log.exception(f"Error: {e}")
|
||||
content = None
|
||||
@@ -485,47 +502,46 @@ async def chat_completion_tools_handler(
|
||||
log.exception(f"Error: {e}")
|
||||
content = None
|
||||
|
||||
log.debug(f"tool_contexts: {contexts}")
|
||||
log.debug(f"tool_contexts: {sources}")
|
||||
|
||||
if skip_files and "files" in body.get("metadata", {}):
|
||||
del body["metadata"]["files"]
|
||||
|
||||
return body, {"contexts": contexts, "citations": citations}
|
||||
return body, {"sources": sources}
|
||||
|
||||
|
||||
async def chat_completion_files_handler(
|
||||
body: dict, user: UserModel
|
||||
) -> tuple[dict, dict[str, list]]:
|
||||
contexts = []
|
||||
citations = []
|
||||
|
||||
try:
|
||||
queries_response = await generate_queries(
|
||||
{
|
||||
"model": body["model"],
|
||||
"messages": body["messages"],
|
||||
"type": "retrieval",
|
||||
},
|
||||
user,
|
||||
)
|
||||
queries_response = queries_response["choices"][0]["message"]["content"]
|
||||
|
||||
try:
|
||||
queries_response = json.loads(queries_response)
|
||||
except Exception as e:
|
||||
queries_response = {"queries": []}
|
||||
|
||||
queries = queries_response.get("queries", [])
|
||||
except Exception as e:
|
||||
queries = []
|
||||
|
||||
if len(queries) == 0:
|
||||
queries = [get_last_user_message(body["messages"])]
|
||||
|
||||
print(f"{queries=}")
|
||||
sources = []
|
||||
|
||||
if files := body.get("metadata", {}).get("files", None):
|
||||
contexts, citations = get_rag_context(
|
||||
try:
|
||||
queries_response = await generate_queries(
|
||||
{
|
||||
"model": body["model"],
|
||||
"messages": body["messages"],
|
||||
"type": "retrieval",
|
||||
},
|
||||
user,
|
||||
)
|
||||
queries_response = queries_response["choices"][0]["message"]["content"]
|
||||
|
||||
try:
|
||||
queries_response = json.loads(queries_response)
|
||||
except Exception as e:
|
||||
queries_response = {"queries": []}
|
||||
|
||||
queries = queries_response.get("queries", [])
|
||||
except Exception as e:
|
||||
queries = []
|
||||
|
||||
if len(queries) == 0:
|
||||
queries = [get_last_user_message(body["messages"])]
|
||||
|
||||
print(f"{queries=}")
|
||||
|
||||
sources = get_sources_from_files(
|
||||
files=files,
|
||||
queries=queries,
|
||||
embedding_function=retrieval_app.state.EMBEDDING_FUNCTION,
|
||||
@@ -535,9 +551,8 @@ async def chat_completion_files_handler(
|
||||
hybrid_search=retrieval_app.state.config.ENABLE_RAG_HYBRID_SEARCH,
|
||||
)
|
||||
|
||||
log.debug(f"rag_contexts: {contexts}, citations: {citations}")
|
||||
|
||||
return body, {"contexts": contexts, "citations": citations}
|
||||
log.debug(f"rag_contexts:sources: {sources}")
|
||||
return body, {"sources": sources}
|
||||
|
||||
|
||||
def is_chat_completion_request(request):
|
||||
@@ -638,8 +653,7 @@ class ChatCompletionMiddleware(BaseHTTPMiddleware):
|
||||
# Initialize data_items to store additional data to be sent to the client
|
||||
# Initialize contexts and citation
|
||||
data_items = []
|
||||
contexts = []
|
||||
citations = []
|
||||
sources = []
|
||||
|
||||
try:
|
||||
body, flags = await chat_completion_filter_functions_handler(
|
||||
@@ -665,21 +679,37 @@ class ChatCompletionMiddleware(BaseHTTPMiddleware):
|
||||
body, flags = await chat_completion_tools_handler(
|
||||
body, user, models, extra_params
|
||||
)
|
||||
contexts.extend(flags.get("contexts", []))
|
||||
citations.extend(flags.get("citations", []))
|
||||
sources.extend(flags.get("sources", []))
|
||||
except Exception as e:
|
||||
log.exception(e)
|
||||
|
||||
try:
|
||||
body, flags = await chat_completion_files_handler(body, user)
|
||||
contexts.extend(flags.get("contexts", []))
|
||||
citations.extend(flags.get("citations", []))
|
||||
sources.extend(flags.get("sources", []))
|
||||
except Exception as e:
|
||||
log.exception(e)
|
||||
|
||||
# If context is not empty, insert it into the messages
|
||||
if len(contexts) > 0:
|
||||
context_string = "/n".join(contexts).strip()
|
||||
if len(sources) > 0:
|
||||
context_string = ""
|
||||
for source_idx, source in enumerate(sources):
|
||||
source_id = source.get("source", {}).get("name", "")
|
||||
|
||||
if "document" in source:
|
||||
for doc_idx, doc_context in enumerate(source["document"]):
|
||||
metadata = source.get("metadata")
|
||||
doc_source_id = None
|
||||
|
||||
if metadata:
|
||||
doc_source_id = metadata[doc_idx].get("source", source_id)
|
||||
|
||||
if source_id:
|
||||
context_string += f"<source><source_id>{doc_source_id if doc_source_id is not None else source_id}</source_id><source_context>{doc_context}</source_context></source>\n"
|
||||
else:
|
||||
# If there is no source_id, then do not include the source_id tag
|
||||
context_string += f"<source><source_context>{doc_context}</source_context></source>\n"
|
||||
|
||||
context_string = context_string.strip()
|
||||
prompt = get_last_user_message(body["messages"])
|
||||
|
||||
if prompt is None:
|
||||
@@ -710,8 +740,11 @@ class ChatCompletionMiddleware(BaseHTTPMiddleware):
|
||||
)
|
||||
|
||||
# If there are citations, add them to the data_items
|
||||
if len(citations) > 0:
|
||||
data_items.append({"citations": citations})
|
||||
sources = [
|
||||
source for source in sources if source.get("source", {}).get("name", "")
|
||||
]
|
||||
if len(sources) > 0:
|
||||
data_items.append({"sources": sources})
|
||||
|
||||
modified_body_bytes = json.dumps(body).encode("utf-8")
|
||||
# Replace the request body with the modified one
|
||||
@@ -1020,7 +1053,7 @@ async def get_all_base_models():
|
||||
return models
|
||||
|
||||
|
||||
@cached(ttl=1)
|
||||
@cached(ttl=3)
|
||||
async def get_all_models():
|
||||
models = await get_all_base_models()
|
||||
|
||||
@@ -1313,7 +1346,6 @@ async def generate_chat_completions(
|
||||
|
||||
@app.post("/api/chat/completed")
|
||||
async def chat_completed(form_data: dict, user=Depends(get_verified_user)):
|
||||
|
||||
model_list = await get_all_models()
|
||||
models = {model["id"]: model for model in model_list}
|
||||
|
||||
|
||||
@@ -1,112 +0,0 @@
|
||||
from ast import literal_eval
|
||||
from typing import Any, Literal, Optional, Type
|
||||
|
||||
from pydantic import BaseModel, Field, create_model
|
||||
|
||||
|
||||
def json_schema_to_model(tool_dict: dict[str, Any]) -> Type[BaseModel]:
|
||||
"""
|
||||
Converts a JSON schema to a Pydantic BaseModel class.
|
||||
|
||||
Args:
|
||||
json_schema: The JSON schema to convert.
|
||||
|
||||
Returns:
|
||||
A Pydantic BaseModel class.
|
||||
"""
|
||||
|
||||
# Extract the model name from the schema title.
|
||||
model_name = tool_dict["name"]
|
||||
schema = tool_dict["parameters"]
|
||||
|
||||
# Extract the field definitions from the schema properties.
|
||||
field_definitions = {
|
||||
name: json_schema_to_pydantic_field(name, prop, schema.get("required", []))
|
||||
for name, prop in schema.get("properties", {}).items()
|
||||
}
|
||||
|
||||
# Create the BaseModel class using create_model().
|
||||
return create_model(model_name, **field_definitions)
|
||||
|
||||
|
||||
def json_schema_to_pydantic_field(
|
||||
name: str, json_schema: dict[str, Any], required: list[str]
|
||||
) -> Any:
|
||||
"""
|
||||
Converts a JSON schema property to a Pydantic field definition.
|
||||
|
||||
Args:
|
||||
name: The field name.
|
||||
json_schema: The JSON schema property.
|
||||
|
||||
Returns:
|
||||
A Pydantic field definition.
|
||||
"""
|
||||
|
||||
# Get the field type.
|
||||
type_ = json_schema_to_pydantic_type(json_schema)
|
||||
|
||||
# Get the field description.
|
||||
description = json_schema.get("description")
|
||||
|
||||
# Get the field examples.
|
||||
examples = json_schema.get("examples")
|
||||
|
||||
# Create a Field object with the type, description, and examples.
|
||||
# The 'required' flag will be set later when creating the model.
|
||||
return (
|
||||
type_,
|
||||
Field(
|
||||
description=description,
|
||||
examples=examples,
|
||||
default=... if name in required else None,
|
||||
),
|
||||
)
|
||||
|
||||
|
||||
def json_schema_to_pydantic_type(json_schema: dict[str, Any]) -> Any:
|
||||
"""
|
||||
Converts a JSON schema type to a Pydantic type.
|
||||
|
||||
Args:
|
||||
json_schema: The JSON schema to convert.
|
||||
|
||||
Returns:
|
||||
A Pydantic type.
|
||||
"""
|
||||
|
||||
type_ = json_schema.get("type")
|
||||
|
||||
if type_ == "string" or type_ == "str":
|
||||
return str
|
||||
elif type_ == "integer" or type_ == "int":
|
||||
return int
|
||||
elif type_ == "number" or type_ == "float":
|
||||
return float
|
||||
elif type_ == "boolean" or type_ == "bool":
|
||||
return bool
|
||||
elif type_ == "array" or type_ == "list":
|
||||
items_schema = json_schema.get("items")
|
||||
if items_schema:
|
||||
item_type = json_schema_to_pydantic_type(items_schema)
|
||||
return list[item_type]
|
||||
else:
|
||||
return list
|
||||
elif type_ == "object":
|
||||
# Handle nested models.
|
||||
properties = json_schema.get("properties")
|
||||
if properties:
|
||||
nested_model = json_schema_to_model(json_schema)
|
||||
return nested_model
|
||||
else:
|
||||
return dict
|
||||
elif type_ == "null":
|
||||
return Optional[Any] # Use Optional[Any] for nullable fields
|
||||
elif type_ == "literal":
|
||||
return Literal[literal_eval(json_schema.get("enum"))]
|
||||
elif type_ == "optional":
|
||||
inner_schema = json_schema.get("items", {"type": "string"})
|
||||
inner_type = json_schema_to_pydantic_type(inner_schema)
|
||||
return Optional[inner_type]
|
||||
else:
|
||||
raise ValueError(f"Unsupported JSON schema type: {type_}")
|
||||
@@ -1,11 +1,14 @@
|
||||
import inspect
|
||||
import logging
|
||||
from typing import Awaitable, Callable, get_type_hints
|
||||
import re
|
||||
from typing import Any, Awaitable, Callable, get_type_hints
|
||||
from functools import update_wrapper, partial
|
||||
|
||||
from langchain_core.utils.function_calling import convert_to_openai_function
|
||||
from open_webui.apps.webui.models.tools import Tools
|
||||
from open_webui.apps.webui.models.users import UserModel
|
||||
from open_webui.apps.webui.utils import load_tools_module_by_id
|
||||
from open_webui.utils.schemas import json_schema_to_model
|
||||
from pydantic import BaseModel, Field, create_model
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
|
||||
@@ -14,17 +17,16 @@ def apply_extra_params_to_tool_function(
|
||||
function: Callable, extra_params: dict
|
||||
) -> Callable[..., Awaitable]:
|
||||
sig = inspect.signature(function)
|
||||
extra_params = {
|
||||
key: value for key, value in extra_params.items() if key in sig.parameters
|
||||
}
|
||||
is_coroutine = inspect.iscoroutinefunction(function)
|
||||
extra_params = {k: v for k, v in extra_params.items() if k in sig.parameters}
|
||||
partial_func = partial(function, **extra_params)
|
||||
if inspect.iscoroutinefunction(function):
|
||||
update_wrapper(partial_func, function)
|
||||
return partial_func
|
||||
|
||||
async def new_function(**kwargs):
|
||||
extra_kwargs = kwargs | extra_params
|
||||
if is_coroutine:
|
||||
return await function(**extra_kwargs)
|
||||
return function(**extra_kwargs)
|
||||
async def new_function(*args, **kwargs):
|
||||
return partial_func(*args, **kwargs)
|
||||
|
||||
update_wrapper(new_function, function)
|
||||
return new_function
|
||||
|
||||
|
||||
@@ -55,11 +57,6 @@ def get_tools(
|
||||
)
|
||||
|
||||
for spec in tools.specs:
|
||||
# TODO: Fix hack for OpenAI API
|
||||
for val in spec.get("parameters", {}).get("properties", {}).values():
|
||||
if val["type"] == "str":
|
||||
val["type"] = "string"
|
||||
|
||||
# Remove internal parameters
|
||||
spec["parameters"]["properties"] = {
|
||||
key: val
|
||||
@@ -72,15 +69,12 @@ def get_tools(
|
||||
# convert to function that takes only model params and inserts custom params
|
||||
original_func = getattr(module, function_name)
|
||||
callable = apply_extra_params_to_tool_function(original_func, extra_params)
|
||||
if hasattr(original_func, "__doc__"):
|
||||
callable.__doc__ = original_func.__doc__
|
||||
|
||||
# TODO: This needs to be a pydantic model
|
||||
tool_dict = {
|
||||
"toolkit_id": tool_id,
|
||||
"callable": callable,
|
||||
"spec": spec,
|
||||
"pydantic_model": json_schema_to_model(spec),
|
||||
"pydantic_model": function_to_pydantic_model(callable),
|
||||
"file_handler": hasattr(module, "file_handler") and module.file_handler,
|
||||
"citation": hasattr(module, "citation") and module.citation,
|
||||
}
|
||||
@@ -96,78 +90,78 @@ def get_tools(
|
||||
return tools_dict
|
||||
|
||||
|
||||
def doc_to_dict(docstring):
|
||||
lines = docstring.split("\n")
|
||||
description = lines[1].strip()
|
||||
param_dict = {}
|
||||
def parse_docstring(docstring):
|
||||
"""
|
||||
Parse a function's docstring to extract parameter descriptions in reST format.
|
||||
|
||||
for line in lines:
|
||||
if ":param" in line:
|
||||
line = line.replace(":param", "").strip()
|
||||
param, desc = line.split(":", 1)
|
||||
param_dict[param.strip()] = desc.strip()
|
||||
ret_dict = {"description": description, "params": param_dict}
|
||||
return ret_dict
|
||||
Args:
|
||||
docstring (str): The docstring to parse.
|
||||
|
||||
Returns:
|
||||
dict: A dictionary where keys are parameter names and values are descriptions.
|
||||
"""
|
||||
if not docstring:
|
||||
return {}
|
||||
|
||||
# Regex to match `:param name: description` format
|
||||
param_pattern = re.compile(r":param (\w+):\s*(.+)")
|
||||
param_descriptions = {}
|
||||
|
||||
for line in docstring.splitlines():
|
||||
match = param_pattern.match(line.strip())
|
||||
if not match:
|
||||
continue
|
||||
param_name, param_description = match.groups()
|
||||
if param_name.startswith("__"):
|
||||
continue
|
||||
param_descriptions[param_name] = param_description
|
||||
|
||||
return param_descriptions
|
||||
|
||||
|
||||
def get_tools_specs(tools) -> list[dict]:
|
||||
function_list = [
|
||||
{"name": func, "function": getattr(tools, func)}
|
||||
for func in dir(tools)
|
||||
if callable(getattr(tools, func))
|
||||
def function_to_pydantic_model(func: Callable) -> type[BaseModel]:
|
||||
"""
|
||||
Converts a Python function's type hints and docstring to a Pydantic model,
|
||||
including support for nested types, default values, and descriptions.
|
||||
|
||||
Args:
|
||||
func: The function whose type hints and docstring should be converted.
|
||||
model_name: The name of the generated Pydantic model.
|
||||
|
||||
Returns:
|
||||
A Pydantic model class.
|
||||
"""
|
||||
type_hints = get_type_hints(func)
|
||||
signature = inspect.signature(func)
|
||||
parameters = signature.parameters
|
||||
|
||||
docstring = func.__doc__
|
||||
descriptions = parse_docstring(docstring)
|
||||
|
||||
field_defs = {}
|
||||
for name, param in parameters.items():
|
||||
type_hint = type_hints.get(name, Any)
|
||||
default_value = param.default if param.default is not param.empty else ...
|
||||
description = descriptions.get(name, None)
|
||||
if not description:
|
||||
field_defs[name] = type_hint, default_value
|
||||
continue
|
||||
field_defs[name] = type_hint, Field(default_value, description=description)
|
||||
|
||||
return create_model(func.__name__, **field_defs)
|
||||
|
||||
|
||||
def get_callable_attributes(tool: object) -> list[Callable]:
|
||||
return [
|
||||
getattr(tool, func)
|
||||
for func in dir(tool)
|
||||
if callable(getattr(tool, func))
|
||||
and not func.startswith("__")
|
||||
and not inspect.isclass(getattr(tools, func))
|
||||
and not inspect.isclass(getattr(tool, func))
|
||||
]
|
||||
|
||||
specs = []
|
||||
for function_item in function_list:
|
||||
function_name = function_item["name"]
|
||||
function = function_item["function"]
|
||||
|
||||
function_doc = doc_to_dict(function.__doc__ or function_name)
|
||||
specs.append(
|
||||
{
|
||||
"name": function_name,
|
||||
# TODO: multi-line desc?
|
||||
"description": function_doc.get("description", function_name),
|
||||
"parameters": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
param_name: {
|
||||
"type": param_annotation.__name__.lower(),
|
||||
**(
|
||||
{
|
||||
"enum": (
|
||||
str(param_annotation.__args__)
|
||||
if hasattr(param_annotation, "__args__")
|
||||
else None
|
||||
)
|
||||
}
|
||||
if hasattr(param_annotation, "__args__")
|
||||
else {}
|
||||
),
|
||||
"description": function_doc.get("params", {}).get(
|
||||
param_name, param_name
|
||||
),
|
||||
}
|
||||
for param_name, param_annotation in get_type_hints(
|
||||
function
|
||||
).items()
|
||||
if param_name != "return"
|
||||
and not (
|
||||
param_name.startswith("__") and param_name.endswith("__")
|
||||
)
|
||||
},
|
||||
"required": [
|
||||
name
|
||||
for name, param in inspect.signature(
|
||||
function
|
||||
).parameters.items()
|
||||
if param.default is param.empty
|
||||
and not (name.startswith("__") and name.endswith("__"))
|
||||
],
|
||||
},
|
||||
}
|
||||
)
|
||||
|
||||
return specs
|
||||
def get_tools_specs(tool_class: object) -> list[dict]:
|
||||
function_list = get_callable_attributes(tool_class)
|
||||
models = map(function_to_pydantic_model, function_list)
|
||||
return [convert_to_openai_function(tool) for tool in models]
|
||||
|
||||
Generated
+942
-15
File diff suppressed because it is too large
Load Diff
+9
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "open-webui",
|
||||
"version": "0.4.2",
|
||||
"version": "0.4.4",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "npm run pyodide:fetch && vite dev --host",
|
||||
@@ -37,6 +37,7 @@
|
||||
"postcss": "^8.4.31",
|
||||
"prettier": "^3.3.3",
|
||||
"prettier-plugin-svelte": "^3.2.6",
|
||||
"sass-embedded": "^1.81.0",
|
||||
"svelte": "^4.2.18",
|
||||
"svelte-check": "^3.8.5",
|
||||
"svelte-confetti": "^1.3.2",
|
||||
@@ -56,6 +57,13 @@
|
||||
"@mediapipe/tasks-vision": "^0.10.17",
|
||||
"@pyscript/core": "^0.4.32",
|
||||
"@sveltejs/adapter-node": "^2.0.0",
|
||||
"@tiptap/core": "^2.10.0",
|
||||
"@tiptap/extension-code-block-lowlight": "^2.10.0",
|
||||
"@tiptap/extension-highlight": "^2.10.0",
|
||||
"@tiptap/extension-placeholder": "^2.10.0",
|
||||
"@tiptap/extension-typography": "^2.10.0",
|
||||
"@tiptap/pm": "^2.10.0",
|
||||
"@tiptap/starter-kit": "^2.10.0",
|
||||
"@xyflow/svelte": "^0.1.19",
|
||||
"async": "^3.2.5",
|
||||
"bits-ui": "^0.19.7",
|
||||
|
||||
+74
-7
@@ -199,19 +199,86 @@ input[type='number'] {
|
||||
}
|
||||
|
||||
.ProseMirror {
|
||||
@apply h-full min-h-fit max-h-full whitespace-pre-wrap;
|
||||
@apply h-full min-h-fit max-h-full whitespace-pre-wrap;
|
||||
}
|
||||
|
||||
.ProseMirror:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.placeholder::after {
|
||||
.ProseMirror p.is-editor-empty:first-child::before {
|
||||
content: attr(data-placeholder);
|
||||
cursor: text;
|
||||
pointer-events: none;
|
||||
|
||||
float: left;
|
||||
|
||||
@apply absolute inset-0 z-0 text-gray-500;
|
||||
color: #adb5bd;
|
||||
pointer-events: none;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
.tiptap > pre > code {
|
||||
border-radius: 0.4rem;
|
||||
font-size: 0.85rem;
|
||||
padding: 0.25em 0.3em;
|
||||
|
||||
@apply dark:bg-gray-800 bg-gray-100;
|
||||
}
|
||||
|
||||
.tiptap > pre {
|
||||
border-radius: 0.5rem;
|
||||
font-family: 'JetBrainsMono', monospace;
|
||||
margin: 1.5rem 0;
|
||||
padding: 0.75rem 1rem;
|
||||
|
||||
@apply dark:bg-gray-800 bg-gray-100;
|
||||
}
|
||||
|
||||
/* Code styling */
|
||||
.hljs-comment,
|
||||
.hljs-quote {
|
||||
color: #616161;
|
||||
}
|
||||
|
||||
.hljs-variable,
|
||||
.hljs-template-variable,
|
||||
.hljs-attribute,
|
||||
.hljs-tag,
|
||||
.hljs-regexp,
|
||||
.hljs-link,
|
||||
.hljs-name,
|
||||
.hljs-selector-id,
|
||||
.hljs-selector-class {
|
||||
color: #f98181;
|
||||
}
|
||||
|
||||
.hljs-number,
|
||||
.hljs-meta,
|
||||
.hljs-built_in,
|
||||
.hljs-builtin-name,
|
||||
.hljs-literal,
|
||||
.hljs-type,
|
||||
.hljs-params {
|
||||
color: #fbbc88;
|
||||
}
|
||||
|
||||
.hljs-string,
|
||||
.hljs-symbol,
|
||||
.hljs-bullet {
|
||||
color: #b9f18d;
|
||||
}
|
||||
|
||||
.hljs-title,
|
||||
.hljs-section {
|
||||
color: #faf594;
|
||||
}
|
||||
|
||||
.hljs-keyword,
|
||||
.hljs-selector-tag {
|
||||
color: #70cff8;
|
||||
}
|
||||
|
||||
.hljs-emphasis {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.hljs-strong {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@ type TextStreamUpdate = {
|
||||
done: boolean;
|
||||
value: string;
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
citations?: any;
|
||||
sources?: any;
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
selectedModelId?: any;
|
||||
error?: any;
|
||||
@@ -67,8 +67,8 @@ async function* openAIStreamToIterator(
|
||||
break;
|
||||
}
|
||||
|
||||
if (parsedData.citations) {
|
||||
yield { done: false, value: '', citations: parsedData.citations };
|
||||
if (parsedData.sources) {
|
||||
yield { done: false, value: '', sources: parsedData.sources };
|
||||
continue;
|
||||
}
|
||||
|
||||
@@ -98,7 +98,7 @@ async function* streamLargeDeltasAsRandomChunks(
|
||||
yield textStreamUpdate;
|
||||
return;
|
||||
}
|
||||
if (textStreamUpdate.citations) {
|
||||
if (textStreamUpdate.sources) {
|
||||
yield textStreamUpdate;
|
||||
continue;
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@
|
||||
/>
|
||||
|
||||
{#if pipeline}
|
||||
<div class=" absolute top-2.5 right-2.5">
|
||||
<div class=" absolute top-0.5 right-2.5">
|
||||
<Tooltip content="Pipelines">
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
|
||||
@@ -186,7 +186,7 @@
|
||||
|
||||
<div class=" my-2 mb-5" id="model-list">
|
||||
{#if models.length > 0}
|
||||
{#each filteredModels as model (model.id)}
|
||||
{#each filteredModels as model, modelIdx (`${model.id}-${modelIdx}`)}
|
||||
<div
|
||||
class=" flex space-x-4 cursor-pointer w-full px-3 py-2 dark:hover:bg-white/5 hover:bg-black/5 rounded-lg transition"
|
||||
id="model-item-{model.id}"
|
||||
|
||||
@@ -16,6 +16,7 @@
|
||||
'searxng',
|
||||
'google_pse',
|
||||
'brave',
|
||||
'mojeek',
|
||||
'serpstack',
|
||||
'serper',
|
||||
'serply',
|
||||
@@ -151,6 +152,17 @@
|
||||
bind:value={webConfig.search.brave_search_api_key}
|
||||
/>
|
||||
</div>
|
||||
{:else if webConfig.search.engine === 'mojeek'}
|
||||
<div>
|
||||
<div class=" self-center text-xs font-medium mb-1">
|
||||
{$i18n.t('Mojeek Search API Key')}
|
||||
</div>
|
||||
|
||||
<SensitiveInput
|
||||
placeholder={$i18n.t('Enter Mojeek Search API Key')}
|
||||
bind:value={webConfig.search.mojeek_search_api_key}
|
||||
/>
|
||||
</div>
|
||||
{:else if webConfig.search.engine === 'serpstack'}
|
||||
<div>
|
||||
<div class=" self-center text-xs font-medium mb-1">
|
||||
|
||||
@@ -216,7 +216,7 @@
|
||||
} else {
|
||||
message.statusHistory = [data];
|
||||
}
|
||||
} else if (type === 'citation') {
|
||||
} else if (type === 'source' || type === 'citation') {
|
||||
if (data?.type === 'code_execution') {
|
||||
// Code execution; update existing code execution by ID, or add new one.
|
||||
if (!message?.code_executions) {
|
||||
@@ -235,11 +235,11 @@
|
||||
|
||||
message.code_executions = message.code_executions;
|
||||
} else {
|
||||
// Regular citation.
|
||||
if (message?.citations) {
|
||||
message.citations.push(data);
|
||||
// Regular source.
|
||||
if (message?.sources) {
|
||||
message.sources.push(data);
|
||||
} else {
|
||||
message.citations = [data];
|
||||
message.sources = [data];
|
||||
}
|
||||
}
|
||||
} else if (type === 'message') {
|
||||
@@ -664,7 +664,7 @@
|
||||
content: m.content,
|
||||
info: m.info ? m.info : undefined,
|
||||
timestamp: m.timestamp,
|
||||
...(m.citations ? { citations: m.citations } : {})
|
||||
...(m.sources ? { sources: m.sources } : {})
|
||||
})),
|
||||
chat_id: chatId,
|
||||
session_id: $socket?.id,
|
||||
@@ -718,7 +718,7 @@
|
||||
content: m.content,
|
||||
info: m.info ? m.info : undefined,
|
||||
timestamp: m.timestamp,
|
||||
...(m.citations ? { citations: m.citations } : {})
|
||||
...(m.sources ? { sources: m.sources } : {})
|
||||
})),
|
||||
...(event ? { event: event } : {}),
|
||||
chat_id: chatId,
|
||||
@@ -1278,8 +1278,8 @@
|
||||
console.log(line);
|
||||
let data = JSON.parse(line);
|
||||
|
||||
if ('citations' in data) {
|
||||
responseMessage.citations = data.citations;
|
||||
if ('sources' in data) {
|
||||
responseMessage.sources = data.sources;
|
||||
// Only remove status if it was initially set
|
||||
if (model?.info?.meta?.knowledge ?? false) {
|
||||
responseMessage.statusHistory = responseMessage.statusHistory.filter(
|
||||
@@ -1632,7 +1632,7 @@
|
||||
const textStream = await createOpenAITextStream(res.body, $settings.splitLargeChunks);
|
||||
|
||||
for await (const update of textStream) {
|
||||
const { value, done, citations, selectedModelId, error, usage } = update;
|
||||
const { value, done, sources, selectedModelId, error, usage } = update;
|
||||
if (error) {
|
||||
await handleOpenAIError(error, null, model, responseMessage);
|
||||
break;
|
||||
@@ -1658,8 +1658,8 @@
|
||||
continue;
|
||||
}
|
||||
|
||||
if (citations) {
|
||||
responseMessage.citations = citations;
|
||||
if (sources) {
|
||||
responseMessage.sources = sources;
|
||||
// Only remove status if it was initially set
|
||||
if (model?.info?.meta?.knowledge ?? false) {
|
||||
responseMessage.statusHistory = responseMessage.statusHistory.filter(
|
||||
@@ -1938,7 +1938,7 @@
|
||||
if (res && res.ok && res.body) {
|
||||
const textStream = await createOpenAITextStream(res.body, $settings.splitLargeChunks);
|
||||
for await (const update of textStream) {
|
||||
const { value, done, citations, error, usage } = update;
|
||||
const { value, done, sources, error, usage } = update;
|
||||
if (error || done) {
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -75,14 +75,6 @@
|
||||
(model) => $models.find((m) => m.id === model)?.info?.meta?.capabilities?.vision ?? true
|
||||
);
|
||||
|
||||
$: if (prompt) {
|
||||
if (chatInputContainerElement) {
|
||||
chatInputContainerElement.style.height = '';
|
||||
chatInputContainerElement.style.height =
|
||||
Math.min(chatInputContainerElement.scrollHeight, 200) + 'px';
|
||||
}
|
||||
}
|
||||
|
||||
const scrollToBottom = () => {
|
||||
const element = document.getElementById('messages-container');
|
||||
element.scrollTo({
|
||||
@@ -585,54 +577,47 @@
|
||||
|
||||
{#if $settings?.richTextInput ?? true}
|
||||
<div
|
||||
bind:this={chatInputContainerElement}
|
||||
id="chat-input-container"
|
||||
class="scrollbar-hidden text-left bg-gray-50 dark:bg-gray-850 dark:text-gray-100 outline-none w-full py-2.5 px-1 rounded-xl resize-none h-[48px] overflow-auto"
|
||||
class="scrollbar-hidden text-left bg-gray-50 dark:bg-gray-850 dark:text-gray-100 outline-none w-full py-2.5 px-1 rounded-xl resize-none h-fit max-h-60 overflow-auto"
|
||||
>
|
||||
<RichTextInput
|
||||
bind:this={chatInputElement}
|
||||
id="chat-input"
|
||||
trim={true}
|
||||
placeholder={placeholder ? placeholder : $i18n.t('Send a Message')}
|
||||
largeTextAsFile={$settings?.largeTextAsFile ?? false}
|
||||
bind:value={prompt}
|
||||
messageInput={true}
|
||||
shiftEnter={!$mobile ||
|
||||
!(
|
||||
'ontouchstart' in window ||
|
||||
navigator.maxTouchPoints > 0 ||
|
||||
navigator.msMaxTouchPoints > 0
|
||||
)}
|
||||
placeholder={placeholder ? placeholder : $i18n.t('Send a Message')}
|
||||
largeTextAsFile={$settings?.largeTextAsFile ?? false}
|
||||
bind:value={prompt}
|
||||
on:enter={async (e) => {
|
||||
const commandsContainerElement =
|
||||
document.getElementById('commands-container');
|
||||
if (commandsContainerElement) {
|
||||
e.preventDefault();
|
||||
|
||||
const commandOptionButton = [
|
||||
...document.getElementsByClassName('selected-command-option-button')
|
||||
]?.at(-1);
|
||||
|
||||
if (commandOptionButton) {
|
||||
commandOptionButton?.click();
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (prompt !== '') {
|
||||
dispatch('submit', prompt);
|
||||
}
|
||||
}}
|
||||
on:input={async (e) => {
|
||||
if (chatInputContainerElement) {
|
||||
chatInputContainerElement.style.height = '';
|
||||
chatInputContainerElement.style.height =
|
||||
Math.min(chatInputContainerElement.scrollHeight, 200) + 'px';
|
||||
}
|
||||
}}
|
||||
on:focus={async (e) => {
|
||||
if (chatInputContainerElement) {
|
||||
chatInputContainerElement.style.height = '';
|
||||
chatInputContainerElement.style.height =
|
||||
Math.min(chatInputContainerElement.scrollHeight, 200) + 'px';
|
||||
}
|
||||
}}
|
||||
on:keypress={(e) => {
|
||||
e = e.detail.event;
|
||||
}}
|
||||
on:keydown={async (e) => {
|
||||
e = e.detail.event;
|
||||
|
||||
if (chatInputContainerElement) {
|
||||
chatInputContainerElement.style.height = '';
|
||||
chatInputContainerElement.style.height =
|
||||
Math.min(chatInputContainerElement.scrollHeight, 200) + 'px';
|
||||
}
|
||||
|
||||
const isCtrlPressed = e.ctrlKey || e.metaKey; // metaKey is for Cmd key on Mac
|
||||
const commandsContainerElement =
|
||||
document.getElementById('commands-container');
|
||||
@@ -692,22 +677,6 @@
|
||||
commandOptionButton.scrollIntoView({ block: 'center' });
|
||||
}
|
||||
|
||||
if (commandsContainerElement && e.key === 'Enter') {
|
||||
e.preventDefault();
|
||||
|
||||
const commandOptionButton = [
|
||||
...document.getElementsByClassName('selected-command-option-button')
|
||||
]?.at(-1);
|
||||
|
||||
if (e.shiftKey) {
|
||||
prompt = `${prompt}\n`;
|
||||
} else if (commandOptionButton) {
|
||||
commandOptionButton?.click();
|
||||
} else {
|
||||
document.getElementById('send-message-button')?.click();
|
||||
}
|
||||
}
|
||||
|
||||
if (commandsContainerElement && e.key === 'Tab') {
|
||||
e.preventDefault();
|
||||
|
||||
|
||||
@@ -7,9 +7,9 @@
|
||||
|
||||
const i18n = getContext('i18n');
|
||||
|
||||
export let citations = [];
|
||||
export let sources = [];
|
||||
|
||||
let _citations = [];
|
||||
let citations = [];
|
||||
let showPercentage = false;
|
||||
let showRelevance = true;
|
||||
|
||||
@@ -17,8 +17,8 @@
|
||||
let selectedCitation: any = null;
|
||||
let isCollapsibleOpen = false;
|
||||
|
||||
function calculateShowRelevance(citations: any[]) {
|
||||
const distances = citations.flatMap((citation) => citation.distances ?? []);
|
||||
function calculateShowRelevance(sources: any[]) {
|
||||
const distances = sources.flatMap((citation) => citation.distances ?? []);
|
||||
const inRange = distances.filter((d) => d !== undefined && d >= -1 && d <= 1).length;
|
||||
const outOfRange = distances.filter((d) => d !== undefined && (d < -1 || d > 1)).length;
|
||||
|
||||
@@ -36,25 +36,31 @@
|
||||
return true;
|
||||
}
|
||||
|
||||
function shouldShowPercentage(citations: any[]) {
|
||||
const distances = citations.flatMap((citation) => citation.distances ?? []);
|
||||
function shouldShowPercentage(sources: any[]) {
|
||||
const distances = sources.flatMap((citation) => citation.distances ?? []);
|
||||
return distances.every((d) => d !== undefined && d >= -1 && d <= 1);
|
||||
}
|
||||
|
||||
$: {
|
||||
_citations = citations.reduce((acc, citation) => {
|
||||
citation.document.forEach((document, index) => {
|
||||
const metadata = citation.metadata?.[index];
|
||||
const distance = citation.distances?.[index];
|
||||
citations = sources.reduce((acc, source) => {
|
||||
if (Object.keys(source).length === 0) {
|
||||
return acc;
|
||||
}
|
||||
|
||||
source.document.forEach((document, index) => {
|
||||
const metadata = source.metadata?.[index];
|
||||
const distance = source.distances?.[index];
|
||||
|
||||
// Within the same citation there could be multiple documents
|
||||
const id = metadata?.source ?? 'N/A';
|
||||
let source = citation?.source;
|
||||
let _source = source?.source;
|
||||
|
||||
if (metadata?.name) {
|
||||
source = { ...source, name: metadata.name };
|
||||
_source = { ..._source, name: metadata.name };
|
||||
}
|
||||
|
||||
if (id.startsWith('http://') || id.startsWith('https://')) {
|
||||
source = { ...source, name: id, url: id };
|
||||
_source = { ..._source, name: id, url: id };
|
||||
}
|
||||
|
||||
const existingSource = acc.find((item) => item.id === id);
|
||||
@@ -66,7 +72,7 @@
|
||||
} else {
|
||||
acc.push({
|
||||
id: id,
|
||||
source: source,
|
||||
source: _source,
|
||||
document: [document],
|
||||
metadata: metadata ? [metadata] : [],
|
||||
distances: distance !== undefined ? [distance] : undefined
|
||||
@@ -76,8 +82,8 @@
|
||||
return acc;
|
||||
}, []);
|
||||
|
||||
showRelevance = calculateShowRelevance(_citations);
|
||||
showPercentage = shouldShowPercentage(_citations);
|
||||
showRelevance = calculateShowRelevance(citations);
|
||||
showPercentage = shouldShowPercentage(citations);
|
||||
}
|
||||
</script>
|
||||
|
||||
@@ -88,24 +94,27 @@
|
||||
{showRelevance}
|
||||
/>
|
||||
|
||||
{#if _citations.length > 0}
|
||||
{#if citations.length > 0}
|
||||
<div class=" py-0.5 -mx-0.5 w-full flex gap-1 items-center flex-wrap">
|
||||
{#if _citations.length <= 3}
|
||||
{#if citations.length <= 3}
|
||||
<div class="flex text-xs font-medium">
|
||||
{#each _citations as citation, idx}
|
||||
{#each citations as citation, idx}
|
||||
<button
|
||||
class="no-toggle outline-none flex dark:text-gray-300 p-1 bg-gray-50 hover:bg-gray-100 dark:bg-gray-900 dark:hover:bg-gray-850 transition rounded-xl max-w-96"
|
||||
id={`source-${citation.source.name}`}
|
||||
class="no-toggle outline-none flex dark:text-gray-300 p-1 bg-white dark:bg-gray-900 rounded-xl max-w-96"
|
||||
on:click={() => {
|
||||
showCitationModal = true;
|
||||
selectedCitation = citation;
|
||||
}}
|
||||
>
|
||||
{#if _citations.every((c) => c.distances !== undefined)}
|
||||
{#if citations.every((c) => c.distances !== undefined)}
|
||||
<div class="bg-gray-50 dark:bg-gray-800 rounded-full size-4">
|
||||
{idx + 1}
|
||||
</div>
|
||||
{/if}
|
||||
<div class="flex-1 mx-1 line-clamp-1 truncate">
|
||||
<div
|
||||
class="flex-1 mx-1 line-clamp-1 text-black/60 hover:text-black dark:text-white/60 dark:hover:text-white transition"
|
||||
>
|
||||
{citation.source.name}
|
||||
</div>
|
||||
</button>
|
||||
@@ -120,7 +129,7 @@
|
||||
<span class="whitespace-nowrap hidden sm:inline">{$i18n.t('References from')}</span>
|
||||
<div class="flex items-center">
|
||||
<div class="flex text-xs font-medium items-center">
|
||||
{#each _citations.slice(0, 2) as citation, idx}
|
||||
{#each citations.slice(0, 2) as citation, idx}
|
||||
<button
|
||||
class="no-toggle outline-none flex dark:text-gray-300 p-1 bg-gray-50 hover:bg-gray-100 dark:bg-gray-900 dark:hover:bg-gray-850 transition rounded-xl max-w-96"
|
||||
on:click={() => {
|
||||
@@ -131,7 +140,7 @@
|
||||
e.stopPropagation();
|
||||
}}
|
||||
>
|
||||
{#if _citations.every((c) => c.distances !== undefined)}
|
||||
{#if citations.every((c) => c.distances !== undefined)}
|
||||
<div class="bg-gray-50 dark:bg-gray-800 rounded-full size-4">
|
||||
{idx + 1}
|
||||
</div>
|
||||
@@ -145,7 +154,7 @@
|
||||
</div>
|
||||
<div class="flex items-center gap-1 whitespace-nowrap">
|
||||
<span class="hidden sm:inline">{$i18n.t('and')}</span>
|
||||
{_citations.length - 2}
|
||||
{citations.length - 2}
|
||||
<span>{$i18n.t('more')}</span>
|
||||
</div>
|
||||
</div>
|
||||
@@ -159,7 +168,7 @@
|
||||
</div>
|
||||
<div slot="content">
|
||||
<div class="flex text-xs font-medium">
|
||||
{#each _citations as citation, idx}
|
||||
{#each citations as citation, idx}
|
||||
<button
|
||||
class="no-toggle outline-none flex dark:text-gray-300 p-1 bg-gray-50 hover:bg-gray-100 dark:bg-gray-900 dark:hover:bg-gray-850 transition rounded-xl max-w-96"
|
||||
on:click={() => {
|
||||
@@ -167,7 +176,7 @@
|
||||
selectedCitation = citation;
|
||||
}}
|
||||
>
|
||||
{#if _citations.every((c) => c.distances !== undefined)}
|
||||
{#if citations.every((c) => c.distances !== undefined)}
|
||||
<div class="bg-gray-50 dark:bg-gray-800 rounded-full size-4">
|
||||
{idx + 1}
|
||||
</div>
|
||||
|
||||
@@ -7,13 +7,16 @@
|
||||
import LightBlub from '$lib/components/icons/LightBlub.svelte';
|
||||
import { chatId, mobile, showArtifacts, showControls, showOverview } from '$lib/stores';
|
||||
import ChatBubble from '$lib/components/icons/ChatBubble.svelte';
|
||||
import { stringify } from 'postcss';
|
||||
|
||||
export let id;
|
||||
export let content;
|
||||
export let model = null;
|
||||
export let sources = null;
|
||||
|
||||
export let save = false;
|
||||
export let floatingButtons = true;
|
||||
export let onSourceClick = () => {};
|
||||
|
||||
let contentContainerElement;
|
||||
let buttonsContainerElement;
|
||||
@@ -129,6 +132,32 @@
|
||||
{content}
|
||||
{model}
|
||||
{save}
|
||||
sourceIds={(sources ?? []).reduce((acc, s) => {
|
||||
let ids = [];
|
||||
s.document.forEach((document, index) => {
|
||||
const metadata = s.metadata?.[index];
|
||||
const id = metadata?.source ?? 'N/A';
|
||||
|
||||
if (metadata?.name) {
|
||||
ids.push(metadata.name);
|
||||
return ids;
|
||||
}
|
||||
|
||||
if (id.startsWith('http://') || id.startsWith('https://')) {
|
||||
ids.push(id);
|
||||
} else {
|
||||
ids.push(s?.source?.name ?? id);
|
||||
}
|
||||
|
||||
return ids;
|
||||
});
|
||||
|
||||
acc = [...acc, ...ids];
|
||||
|
||||
// remove duplicates
|
||||
return acc.filter((item, index) => acc.indexOf(item) === index);
|
||||
}, [])}
|
||||
{onSourceClick}
|
||||
on:update={(e) => {
|
||||
dispatch('update', e.detail);
|
||||
}}
|
||||
|
||||
@@ -16,6 +16,9 @@
|
||||
export let model = null;
|
||||
export let save = false;
|
||||
|
||||
export let sourceIds = [];
|
||||
export let onSourceClick = () => {};
|
||||
|
||||
let tokens = [];
|
||||
|
||||
const options = {
|
||||
@@ -28,7 +31,7 @@
|
||||
$: (async () => {
|
||||
if (content) {
|
||||
tokens = marked.lexer(
|
||||
replaceTokens(processResponseContent(content), model?.name, $user?.name)
|
||||
replaceTokens(processResponseContent(content), sourceIds, model?.name, $user?.name)
|
||||
);
|
||||
}
|
||||
})();
|
||||
@@ -39,6 +42,7 @@
|
||||
{tokens}
|
||||
{id}
|
||||
{save}
|
||||
{onSourceClick}
|
||||
on:update={(e) => {
|
||||
dispatch('update', e.detail);
|
||||
}}
|
||||
|
||||
@@ -12,9 +12,11 @@
|
||||
|
||||
import Image from '$lib/components/common/Image.svelte';
|
||||
import KatexRenderer from './KatexRenderer.svelte';
|
||||
import Source from './Source.svelte';
|
||||
|
||||
export let id: string;
|
||||
export let tokens: Token[];
|
||||
export let onSourceClick: Function = () => {};
|
||||
</script>
|
||||
|
||||
{#each tokens as token}
|
||||
@@ -26,13 +28,15 @@
|
||||
{@html html}
|
||||
{:else if token.text.includes(`<iframe src="${WEBUI_BASE_URL}/api/v1/files/`)}
|
||||
{@html `${token.text}`}
|
||||
{:else if token.text.includes(`<source_id`)}
|
||||
<Source {token} onClick={onSourceClick} />
|
||||
{:else}
|
||||
{token.text}
|
||||
{/if}
|
||||
{:else if token.type === 'link'}
|
||||
{#if token.tokens}
|
||||
<a href={token.href} target="_blank" rel="nofollow" title={token.title}>
|
||||
<svelte:self id={`${id}-a`} tokens={token.tokens} />
|
||||
<svelte:self id={`${id}-a`} tokens={token.tokens} {onSourceClick} />
|
||||
</a>
|
||||
{:else}
|
||||
<a href={token.href} target="_blank" rel="nofollow" title={token.title}>{token.text}</a>
|
||||
@@ -41,11 +45,11 @@
|
||||
<Image src={token.href} alt={token.text} />
|
||||
{:else if token.type === 'strong'}
|
||||
<strong>
|
||||
<svelte:self id={`${id}-strong`} tokens={token.tokens} />
|
||||
<svelte:self id={`${id}-strong`} tokens={token.tokens} {onSourceClick} />
|
||||
</strong>
|
||||
{:else if token.type === 'em'}
|
||||
<em>
|
||||
<svelte:self id={`${id}-em`} tokens={token.tokens} />
|
||||
<svelte:self id={`${id}-em`} tokens={token.tokens} {onSourceClick} />
|
||||
</em>
|
||||
{:else if token.type === 'codespan'}
|
||||
<!-- svelte-ignore a11y-click-events-have-key-events -->
|
||||
@@ -61,7 +65,7 @@
|
||||
<br />
|
||||
{:else if token.type === 'del'}
|
||||
<del>
|
||||
<svelte:self id={`${id}-del`} tokens={token.tokens} />
|
||||
<svelte:self id={`${id}-del`} tokens={token.tokens} {onSourceClick} />
|
||||
</del>
|
||||
{:else if token.type === 'inlineKatex'}
|
||||
{#if token.text}
|
||||
|
||||
@@ -25,6 +25,7 @@
|
||||
export let top = true;
|
||||
|
||||
export let save = false;
|
||||
export let onSourceClick: Function = () => {};
|
||||
|
||||
const headerComponent = (depth: number) => {
|
||||
return 'h' + depth;
|
||||
@@ -62,7 +63,7 @@
|
||||
<hr />
|
||||
{:else if token.type === 'heading'}
|
||||
<svelte:element this={headerComponent(token.depth)}>
|
||||
<MarkdownInlineTokens id={`${id}-${tokenIdx}-h`} tokens={token.tokens} />
|
||||
<MarkdownInlineTokens id={`${id}-${tokenIdx}-h`} tokens={token.tokens} {onSourceClick} />
|
||||
</svelte:element>
|
||||
{:else if token.type === 'code'}
|
||||
{#if token.raw.includes('```')}
|
||||
@@ -108,6 +109,7 @@
|
||||
<MarkdownInlineTokens
|
||||
id={`${id}-${tokenIdx}-header-${headerIdx}`}
|
||||
tokens={header.tokens}
|
||||
{onSourceClick}
|
||||
/>
|
||||
</div>
|
||||
</th>
|
||||
@@ -126,6 +128,7 @@
|
||||
<MarkdownInlineTokens
|
||||
id={`${id}-${tokenIdx}-row-${rowIdx}-${cellIdx}`}
|
||||
tokens={cell.tokens}
|
||||
{onSourceClick}
|
||||
/>
|
||||
</div>
|
||||
</td>
|
||||
@@ -205,19 +208,27 @@
|
||||
></iframe>
|
||||
{:else if token.type === 'paragraph'}
|
||||
<p>
|
||||
<MarkdownInlineTokens id={`${id}-${tokenIdx}-p`} tokens={token.tokens ?? []} />
|
||||
<MarkdownInlineTokens
|
||||
id={`${id}-${tokenIdx}-p`}
|
||||
tokens={token.tokens ?? []}
|
||||
{onSourceClick}
|
||||
/>
|
||||
</p>
|
||||
{:else if token.type === 'text'}
|
||||
{#if top}
|
||||
<p>
|
||||
{#if token.tokens}
|
||||
<MarkdownInlineTokens id={`${id}-${tokenIdx}-t`} tokens={token.tokens} />
|
||||
<MarkdownInlineTokens id={`${id}-${tokenIdx}-t`} tokens={token.tokens} {onSourceClick} />
|
||||
{:else}
|
||||
{unescapeHtml(token.text)}
|
||||
{/if}
|
||||
</p>
|
||||
{:else if token.tokens}
|
||||
<MarkdownInlineTokens id={`${id}-${tokenIdx}-p`} tokens={token.tokens ?? []} />
|
||||
<MarkdownInlineTokens
|
||||
id={`${id}-${tokenIdx}-p`}
|
||||
tokens={token.tokens ?? []}
|
||||
{onSourceClick}
|
||||
/>
|
||||
{:else}
|
||||
{unescapeHtml(token.text)}
|
||||
{/if}
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
<script lang="ts">
|
||||
export let token;
|
||||
export let onClick: Function = () => {};
|
||||
|
||||
let id = '';
|
||||
function extractDataAttribute(input) {
|
||||
// Use a regular expression to extract the value of the `data` attribute
|
||||
const match = input.match(/data="([^"]*)"/);
|
||||
// Check if a match was found and return the first captured group
|
||||
return match ? match[1] : null;
|
||||
}
|
||||
|
||||
$: id = extractDataAttribute(token.text);
|
||||
</script>
|
||||
|
||||
<button
|
||||
class="text-xs font-medium w-fit translate-y-[2px] px-2 py-0.5 dark:bg-white/5 dark:text-white/60 dark:hover:text-white bg-gray-50 text-black/60 hover:text-black transition rounded-lg"
|
||||
on:click={() => {
|
||||
onClick(id);
|
||||
}}
|
||||
>
|
||||
<span class="line-clamp-1">
|
||||
{id}
|
||||
</span>
|
||||
</button>
|
||||
@@ -136,7 +136,7 @@
|
||||
class="size-7 text-sm border border-gray-50 dark:border-gray-850 hover:bg-gray-50 dark:hover:bg-gray-850 {detailedRating ===
|
||||
rating
|
||||
? 'bg-gray-100 dark:bg-gray-800'
|
||||
: ''} transition rounded-full disabled:cursor-not-allowed disabled:bg-white disabled:dark:bg-gray-900"
|
||||
: ''} transition rounded-full disabled:cursor-not-allowed disabled:text-gray-500 disabled:bg-white disabled:dark:bg-gray-900"
|
||||
on:click={() => {
|
||||
detailedRating = rating;
|
||||
}}
|
||||
|
||||
@@ -64,7 +64,7 @@
|
||||
};
|
||||
done: boolean;
|
||||
error?: boolean | { content: string };
|
||||
citations?: string[];
|
||||
sources?: string[];
|
||||
code_executions?: {
|
||||
uuid: string;
|
||||
name: string;
|
||||
@@ -621,9 +621,18 @@
|
||||
<ContentRenderer
|
||||
id={message.id}
|
||||
content={message.content}
|
||||
sources={message.sources}
|
||||
floatingButtons={message?.done}
|
||||
save={!readOnly}
|
||||
{model}
|
||||
onSourceClick={(e) => {
|
||||
console.log(e);
|
||||
const sourceButton = document.getElementById(`source-${e}`);
|
||||
|
||||
if (sourceButton) {
|
||||
sourceButton.click();
|
||||
}
|
||||
}}
|
||||
on:update={(e) => {
|
||||
const { raw, oldContent, newContent } = e.detail;
|
||||
|
||||
@@ -653,8 +662,8 @@
|
||||
<Error content={message?.error?.content ?? message.content} />
|
||||
{/if}
|
||||
|
||||
{#if message.citations && (model?.info?.meta?.capabilities?.citations ?? true)}
|
||||
<Citations citations={message.citations} />
|
||||
{#if (message?.sources || message?.citations) && (model?.info?.meta?.capabilities?.citations ?? true)}
|
||||
<Citations sources={message?.sources ?? message?.citations} />
|
||||
{/if}
|
||||
|
||||
{#if message.code_executions}
|
||||
|
||||
@@ -5,11 +5,7 @@
|
||||
|
||||
import { models, settings } from '$lib/stores';
|
||||
import { user as _user } from '$lib/stores';
|
||||
import {
|
||||
copyToClipboard as _copyToClipboard,
|
||||
processResponseContent,
|
||||
replaceTokens
|
||||
} from '$lib/utils';
|
||||
import { copyToClipboard as _copyToClipboard } from '$lib/utils';
|
||||
|
||||
import Name from './Name.svelte';
|
||||
import ProfileImage from './ProfileImage.svelte';
|
||||
|
||||
@@ -1,241 +1,46 @@
|
||||
<script lang="ts">
|
||||
import { onDestroy, onMount } from 'svelte';
|
||||
import { marked } from 'marked';
|
||||
import TurndownService from 'turndown';
|
||||
const turndownService = new TurndownService();
|
||||
|
||||
import { onMount, onDestroy } from 'svelte';
|
||||
import { createEventDispatcher } from 'svelte';
|
||||
const eventDispatch = createEventDispatcher();
|
||||
|
||||
import { EditorState, Plugin, TextSelection } from 'prosemirror-state';
|
||||
import { EditorView, Decoration, DecorationSet } from 'prosemirror-view';
|
||||
import { undo, redo, history } from 'prosemirror-history';
|
||||
import {
|
||||
schema,
|
||||
defaultMarkdownParser,
|
||||
MarkdownParser,
|
||||
defaultMarkdownSerializer
|
||||
} from 'prosemirror-markdown';
|
||||
|
||||
import {
|
||||
inputRules,
|
||||
wrappingInputRule,
|
||||
textblockTypeInputRule,
|
||||
InputRule
|
||||
} from 'prosemirror-inputrules'; // Import input rules
|
||||
import { splitListItem, liftListItem, sinkListItem } from 'prosemirror-schema-list'; // Import from prosemirror-schema-list
|
||||
import { keymap } from 'prosemirror-keymap';
|
||||
import { baseKeymap, chainCommands } from 'prosemirror-commands';
|
||||
import { DOMParser, DOMSerializer, Schema, Fragment } from 'prosemirror-model';
|
||||
import { Editor } from '@tiptap/core';
|
||||
|
||||
import CodeBlockLowlight from '@tiptap/extension-code-block-lowlight';
|
||||
import Placeholder from '@tiptap/extension-placeholder';
|
||||
import Highlight from '@tiptap/extension-highlight';
|
||||
import Typography from '@tiptap/extension-typography';
|
||||
import StarterKit from '@tiptap/starter-kit';
|
||||
|
||||
import { all, createLowlight } from 'lowlight';
|
||||
|
||||
import { PASTED_TEXT_CHARACTER_LIMIT } from '$lib/constants';
|
||||
|
||||
// create a lowlight instance with all languages loaded
|
||||
const lowlight = createLowlight(all);
|
||||
|
||||
export let className = 'input-prose';
|
||||
export let placeholder = 'Type here...';
|
||||
export let value = '';
|
||||
export let id = '';
|
||||
|
||||
export let messageInput = false;
|
||||
export let shiftEnter = false;
|
||||
export let largeTextAsFile = false;
|
||||
|
||||
export let id = '';
|
||||
export let value = '';
|
||||
export let placeholder = 'Type here...';
|
||||
export let trim = false;
|
||||
let element;
|
||||
let editor;
|
||||
|
||||
let element: HTMLElement; // Element where ProseMirror will attach
|
||||
let state;
|
||||
let view;
|
||||
|
||||
// Plugin to add placeholder when the content is empty
|
||||
function placeholderPlugin(placeholder: string) {
|
||||
return new Plugin({
|
||||
props: {
|
||||
decorations(state) {
|
||||
const doc = state.doc;
|
||||
if (
|
||||
doc.childCount === 1 &&
|
||||
doc.firstChild.isTextblock &&
|
||||
doc.firstChild?.textContent === ''
|
||||
) {
|
||||
// If there's nothing in the editor, show the placeholder decoration
|
||||
const decoration = Decoration.node(0, doc.content.size, {
|
||||
'data-placeholder': placeholder,
|
||||
class: 'placeholder'
|
||||
});
|
||||
return DecorationSet.create(doc, [decoration]);
|
||||
}
|
||||
return DecorationSet.empty;
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function unescapeMarkdown(text: string): string {
|
||||
return text
|
||||
.replace(/\\([\\`*{}[\]()#+\-.!_>])/g, '$1') // unescape backslashed characters
|
||||
.replace(/&/g, '&')
|
||||
.replace(/</g, '<')
|
||||
.replace(/>/g, '>')
|
||||
.replace(/"/g, '"')
|
||||
.replace(/'/g, "'");
|
||||
}
|
||||
|
||||
// Custom parsing rule that creates proper paragraphs for newlines and empty lines
|
||||
function markdownToProseMirrorDoc(markdown: string) {
|
||||
// Split the markdown into lines
|
||||
const lines = markdown.split('\n\n');
|
||||
|
||||
// Create an array to hold our paragraph nodes
|
||||
const paragraphs = [];
|
||||
|
||||
// Process each line
|
||||
lines.forEach((line) => {
|
||||
if (line.trim() === '') {
|
||||
// For empty lines, create an empty paragraph
|
||||
paragraphs.push(schema.nodes.paragraph.create());
|
||||
} else {
|
||||
// For non-empty lines, parse as usual
|
||||
const doc = defaultMarkdownParser.parse(line);
|
||||
// Extract the content of the parsed document
|
||||
doc.content.forEach((node) => {
|
||||
paragraphs.push(node);
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
// Create a new document with these paragraphs
|
||||
return schema.node('doc', null, paragraphs);
|
||||
}
|
||||
|
||||
// Create a custom serializer for paragraphs
|
||||
// Custom paragraph serializer to preserve newlines for empty paragraphs (empty block).
|
||||
function serializeParagraph(state, node: Node) {
|
||||
const content = node.textContent.trim();
|
||||
|
||||
// If the paragraph is empty, just add an empty line.
|
||||
if (content === '') {
|
||||
state.write('\n\n');
|
||||
} else {
|
||||
state.renderInline(node);
|
||||
state.closeBlock(node);
|
||||
}
|
||||
}
|
||||
|
||||
const customMarkdownSerializer = new defaultMarkdownSerializer.constructor(
|
||||
{
|
||||
...defaultMarkdownSerializer.nodes,
|
||||
|
||||
paragraph: (state, node) => {
|
||||
serializeParagraph(state, node); // Use custom paragraph serialization
|
||||
}
|
||||
|
||||
// Customize other block formats if needed
|
||||
},
|
||||
|
||||
// Copy marks directly from the original serializer (or customize them if necessary)
|
||||
defaultMarkdownSerializer.marks
|
||||
);
|
||||
|
||||
// Utility function to convert ProseMirror content back to markdown text
|
||||
function serializeEditorContent(doc) {
|
||||
const markdown = customMarkdownSerializer.serialize(doc);
|
||||
if (trim) {
|
||||
return unescapeMarkdown(markdown).trim();
|
||||
} else {
|
||||
return unescapeMarkdown(markdown);
|
||||
}
|
||||
}
|
||||
|
||||
// ---- Input Rules ----
|
||||
// Input rule for heading (e.g., # Headings)
|
||||
function headingRule(schema) {
|
||||
return textblockTypeInputRule(/^(#{1,6})\s$/, schema.nodes.heading, (match) => ({
|
||||
level: match[1].length
|
||||
}));
|
||||
}
|
||||
|
||||
// Input rule for bullet list (e.g., `- item`)
|
||||
function bulletListRule(schema) {
|
||||
return wrappingInputRule(/^\s*([-+*])\s$/, schema.nodes.bullet_list);
|
||||
}
|
||||
|
||||
// Input rule for ordered list (e.g., `1. item`)
|
||||
function orderedListRule(schema) {
|
||||
return wrappingInputRule(/^(\d+)\.\s$/, schema.nodes.ordered_list, (match) => ({
|
||||
order: +match[1]
|
||||
}));
|
||||
}
|
||||
|
||||
// Custom input rules for Bold/Italic (using * or _)
|
||||
function markInputRule(regexp: RegExp, markType: any) {
|
||||
return new InputRule(regexp, (state, match, start, end) => {
|
||||
const { tr } = state;
|
||||
if (match) {
|
||||
tr.replaceWith(start, end, schema.text(match[1], [markType.create()]));
|
||||
}
|
||||
return tr;
|
||||
});
|
||||
}
|
||||
|
||||
function boldRule(schema) {
|
||||
return markInputRule(/(?<=^|\s)\*([^*]+)\*(?=\s|$)/, schema.marks.strong);
|
||||
}
|
||||
|
||||
function italicRule(schema) {
|
||||
// Using lookbehind and lookahead to prevent the space from being consumed
|
||||
return markInputRule(/(?<=^|\s)_([^*_]+)_(?=\s|$)/, schema.marks.em);
|
||||
}
|
||||
|
||||
// Initialize Editor State and View
|
||||
function afterSpacePress(state, dispatch) {
|
||||
// Get the position right after the space was naturally inserted by the browser.
|
||||
let { from, to, empty } = state.selection;
|
||||
|
||||
if (dispatch && empty) {
|
||||
let tr = state.tr;
|
||||
|
||||
// Check for any active marks at `from - 1` (the space we just inserted)
|
||||
const storedMarks = state.storedMarks || state.selection.$from.marks();
|
||||
|
||||
const hasBold = storedMarks.some((mark) => mark.type === state.schema.marks.strong);
|
||||
const hasItalic = storedMarks.some((mark) => mark.type === state.schema.marks.em);
|
||||
|
||||
// Remove marks from the space character (marks applied to the space character will be marked as false)
|
||||
if (hasBold) {
|
||||
tr = tr.removeMark(from - 1, from, state.schema.marks.strong);
|
||||
}
|
||||
if (hasItalic) {
|
||||
tr = tr.removeMark(from - 1, from, state.schema.marks.em);
|
||||
}
|
||||
|
||||
// Dispatch the resulting transaction to update the editor state
|
||||
dispatch(tr);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
function toggleMark(markType) {
|
||||
return (state, dispatch) => {
|
||||
const { from, to } = state.selection;
|
||||
if (state.doc.rangeHasMark(from, to, markType)) {
|
||||
if (dispatch) dispatch(state.tr.removeMark(from, to, markType));
|
||||
return true;
|
||||
} else {
|
||||
if (dispatch) dispatch(state.tr.addMark(from, to, markType.create()));
|
||||
return true;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
function isInList(state) {
|
||||
const { $from } = state.selection;
|
||||
return (
|
||||
$from.parent.type === schema.nodes.paragraph && $from.node(-1).type === schema.nodes.list_item
|
||||
);
|
||||
}
|
||||
|
||||
function isEmptyListItem(state) {
|
||||
const { $from } = state.selection;
|
||||
return isInList(state) && $from.parent.content.size === 0 && $from.node(-1).childCount === 1;
|
||||
}
|
||||
|
||||
function exitList(state, dispatch) {
|
||||
return liftListItem(schema.nodes.list_item)(state, dispatch);
|
||||
}
|
||||
const options = {
|
||||
throwOnError: false
|
||||
};
|
||||
|
||||
// Function to find the next template in the document
|
||||
function findNextTemplate(doc, from = 0) {
|
||||
const patterns = [
|
||||
{ start: '[', end: ']' },
|
||||
@@ -270,6 +75,7 @@
|
||||
return result;
|
||||
}
|
||||
|
||||
// Function to select the next template in the document
|
||||
function selectNextTemplate(state, dispatch) {
|
||||
const { doc, selection } = state;
|
||||
const from = selection.to;
|
||||
@@ -290,220 +96,203 @@
|
||||
return false;
|
||||
}
|
||||
|
||||
// Replace tabs with four spaces
|
||||
function handleTabIndentation(text: string): string {
|
||||
// Replace each tab character with four spaces
|
||||
return text.replace(/\t/g, ' ');
|
||||
}
|
||||
export const setContent = (content) => {
|
||||
editor.commands.setContent(content);
|
||||
};
|
||||
|
||||
onMount(() => {
|
||||
const initialDoc = markdownToProseMirrorDoc(value || ''); // Convert the initial content
|
||||
const selectTemplate = () => {
|
||||
if (value !== '') {
|
||||
// After updating the state, try to find and select the next template
|
||||
setTimeout(() => {
|
||||
const templateFound = selectNextTemplate(editor.view.state, editor.view.dispatch);
|
||||
if (!templateFound) {
|
||||
// If no template found, set cursor at the end
|
||||
const endPos = editor.view.state.doc.content.size;
|
||||
editor.view.dispatch(
|
||||
editor.view.state.tr.setSelection(TextSelection.create(editor.view.state.doc, endPos))
|
||||
);
|
||||
}
|
||||
}, 0);
|
||||
}
|
||||
};
|
||||
|
||||
state = EditorState.create({
|
||||
doc: initialDoc,
|
||||
schema,
|
||||
plugins: [
|
||||
history(),
|
||||
placeholderPlugin(placeholder),
|
||||
inputRules({
|
||||
rules: [
|
||||
headingRule(schema), // Handle markdown-style headings (# H1, ## H2, etc.)
|
||||
bulletListRule(schema), // Handle `-` or `*` input to start bullet list
|
||||
orderedListRule(schema), // Handle `1.` input to start ordered list
|
||||
boldRule(schema), // Bold input rule
|
||||
italicRule(schema) // Italic input rule
|
||||
]
|
||||
onMount(async () => {
|
||||
async function tryParse(value, attempts = 3, interval = 100) {
|
||||
try {
|
||||
// Try parsing the value
|
||||
return marked.parse(value);
|
||||
} catch (error) {
|
||||
// If no attempts remain, fallback to plain text
|
||||
if (attempts <= 1) {
|
||||
return value;
|
||||
}
|
||||
// Wait for the interval, then retry
|
||||
await new Promise((resolve) => setTimeout(resolve, interval));
|
||||
return tryParse(value, attempts - 1, interval); // Recursive call
|
||||
}
|
||||
}
|
||||
|
||||
// Usage example
|
||||
let content = await tryParse(value);
|
||||
|
||||
editor = new Editor({
|
||||
element: element,
|
||||
extensions: [
|
||||
StarterKit,
|
||||
CodeBlockLowlight.configure({
|
||||
lowlight
|
||||
}),
|
||||
keymap({
|
||||
...baseKeymap,
|
||||
'Mod-z': undo,
|
||||
'Mod-y': redo,
|
||||
Enter: (state, dispatch, view) => {
|
||||
if (shiftEnter) {
|
||||
eventDispatch('enter');
|
||||
return true;
|
||||
}
|
||||
return chainCommands(
|
||||
(state, dispatch, view) => {
|
||||
if (isEmptyListItem(state)) {
|
||||
return exitList(state, dispatch);
|
||||
}
|
||||
return false;
|
||||
},
|
||||
(state, dispatch, view) => {
|
||||
if (isInList(state)) {
|
||||
return splitListItem(schema.nodes.list_item)(state, dispatch);
|
||||
}
|
||||
return false;
|
||||
},
|
||||
baseKeymap.Enter
|
||||
)(state, dispatch, view);
|
||||
},
|
||||
Highlight,
|
||||
Typography,
|
||||
Placeholder.configure({ placeholder })
|
||||
],
|
||||
content: content,
|
||||
autofocus: true,
|
||||
onTransaction: () => {
|
||||
// force re-render so `editor.isActive` works as expected
|
||||
editor = editor;
|
||||
|
||||
'Shift-Enter': (state, dispatch, view) => {
|
||||
if (shiftEnter) {
|
||||
return chainCommands(
|
||||
(state, dispatch, view) => {
|
||||
if (isEmptyListItem(state)) {
|
||||
return exitList(state, dispatch);
|
||||
}
|
||||
return false;
|
||||
},
|
||||
(state, dispatch, view) => {
|
||||
if (isInList(state)) {
|
||||
return splitListItem(schema.nodes.list_item)(state, dispatch);
|
||||
}
|
||||
return false;
|
||||
},
|
||||
baseKeymap.Enter
|
||||
)(state, dispatch, view);
|
||||
} else {
|
||||
return baseKeymap.Enter(state, dispatch, view);
|
||||
}
|
||||
const newValue = turndownService.turndown(editor.getHTML());
|
||||
if (value !== newValue) {
|
||||
value = newValue; // Trigger parent updates
|
||||
}
|
||||
},
|
||||
editorProps: {
|
||||
attributes: { id },
|
||||
handleDOMEvents: {
|
||||
focus: (view, event) => {
|
||||
eventDispatch('focus', { event });
|
||||
return false;
|
||||
},
|
||||
keypress: (view, event) => {
|
||||
eventDispatch('keypress', { event });
|
||||
return false;
|
||||
},
|
||||
|
||||
// Prevent default tab navigation and provide indent/outdent behavior inside lists:
|
||||
Tab: chainCommands((state, dispatch, view) => {
|
||||
const { $from } = state.selection;
|
||||
if (isInList(state)) {
|
||||
return sinkListItem(schema.nodes.list_item)(state, dispatch);
|
||||
} else {
|
||||
return selectNextTemplate(state, dispatch);
|
||||
keydown: (view, event) => {
|
||||
// Handle Tab Key
|
||||
if (event.key === 'Tab') {
|
||||
const handled = selectNextTemplate(view.state, view.dispatch);
|
||||
if (handled) {
|
||||
event.preventDefault();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return true; // Prevent Tab from moving the focus
|
||||
}),
|
||||
'Shift-Tab': (state, dispatch, view) => {
|
||||
const { $from } = state.selection;
|
||||
if (isInList(state)) {
|
||||
return liftListItem(schema.nodes.list_item)(state, dispatch);
|
||||
}
|
||||
return true; // Prevent Shift-Tab from moving the focus
|
||||
},
|
||||
'Mod-b': toggleMark(schema.marks.strong),
|
||||
'Mod-i': toggleMark(schema.marks.em)
|
||||
})
|
||||
]
|
||||
});
|
||||
|
||||
view = new EditorView(element, {
|
||||
state,
|
||||
dispatchTransaction(transaction) {
|
||||
// Update editor state
|
||||
let newState = view.state.apply(transaction);
|
||||
view.updateState(newState);
|
||||
if (messageInput) {
|
||||
if (event.key === 'Enter') {
|
||||
// Check if the current selection is inside a structured block (like codeBlock or list)
|
||||
const { state } = view;
|
||||
const { $head } = state.selection;
|
||||
|
||||
value = serializeEditorContent(newState.doc); // Convert ProseMirror content to markdown text
|
||||
eventDispatch('input', { value });
|
||||
},
|
||||
handleDOMEvents: {
|
||||
focus: (view, event) => {
|
||||
eventDispatch('focus', { event });
|
||||
return false;
|
||||
},
|
||||
keypress: (view, event) => {
|
||||
eventDispatch('keypress', { event });
|
||||
return false;
|
||||
},
|
||||
keydown: (view, event) => {
|
||||
eventDispatch('keydown', { event });
|
||||
return false;
|
||||
},
|
||||
paste: (view, event) => {
|
||||
if (event.clipboardData) {
|
||||
// Extract plain text from clipboard and paste it without formatting
|
||||
const plainText = event.clipboardData.getData('text/plain');
|
||||
if (plainText) {
|
||||
if (largeTextAsFile) {
|
||||
if (plainText.length > PASTED_TEXT_CHARACTER_LIMIT) {
|
||||
// Dispatch paste event to parent component
|
||||
eventDispatch('paste', { event });
|
||||
// Recursive function to check ancestors for specific node types
|
||||
function isInside(nodeTypes: string[]): boolean {
|
||||
let currentNode = $head;
|
||||
while (currentNode) {
|
||||
if (nodeTypes.includes(currentNode.parent.type.name)) {
|
||||
return true;
|
||||
}
|
||||
if (!currentNode.depth) break; // Stop if we reach the top
|
||||
currentNode = state.doc.resolve(currentNode.before()); // Move to the parent node
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
const isInCodeBlock = isInside(['codeBlock']);
|
||||
const isInList = isInside(['listItem', 'bulletList', 'orderedList']);
|
||||
const isInHeading = isInside(['heading']);
|
||||
|
||||
if (isInCodeBlock || isInList || isInHeading) {
|
||||
// Let ProseMirror handle the normal Enter behavior
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
// Handle shift + Enter for a line break
|
||||
if (shiftEnter) {
|
||||
if (event.key === 'Enter' && event.shiftKey) {
|
||||
editor.commands.setHardBreak(); // Insert a hard break
|
||||
view.dispatch(view.state.tr.scrollIntoView()); // Move viewport to the cursor
|
||||
event.preventDefault();
|
||||
return true;
|
||||
}
|
||||
if (event.key === 'Enter') {
|
||||
eventDispatch('enter', { event });
|
||||
event.preventDefault();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
if (event.key === 'Enter') {
|
||||
eventDispatch('enter', { event });
|
||||
event.preventDefault();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
eventDispatch('keydown', { event });
|
||||
return false;
|
||||
},
|
||||
paste: (view, event) => {
|
||||
if (event.clipboardData) {
|
||||
// Extract plain text from clipboard and paste it without formatting
|
||||
const plainText = event.clipboardData.getData('text/plain');
|
||||
if (plainText) {
|
||||
if (largeTextAsFile) {
|
||||
if (plainText.length > PASTED_TEXT_CHARACTER_LIMIT) {
|
||||
// Dispatch paste event to parent component
|
||||
eventDispatch('paste', { event });
|
||||
event.preventDefault();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
const modifiedText = handleTabIndentation(plainText);
|
||||
console.log(modifiedText);
|
||||
|
||||
// Replace the current selection with the plain text content
|
||||
const tr = view.state.tr.replaceSelectionWith(
|
||||
view.state.schema.text(modifiedText),
|
||||
false
|
||||
// Check if the pasted content contains image files
|
||||
const hasImageFile = Array.from(event.clipboardData.files).some((file) =>
|
||||
file.type.startsWith('image/')
|
||||
);
|
||||
view.dispatch(tr.scrollIntoView());
|
||||
event.preventDefault(); // Prevent the default paste behavior
|
||||
return true;
|
||||
|
||||
// Check for image in dataTransfer items (for cases where files are not available)
|
||||
const hasImageItem = Array.from(event.clipboardData.items).some((item) =>
|
||||
item.type.startsWith('image/')
|
||||
);
|
||||
if (hasImageFile) {
|
||||
// If there's an image, dispatch the event to the parent
|
||||
eventDispatch('paste', { event });
|
||||
event.preventDefault();
|
||||
return true;
|
||||
}
|
||||
|
||||
if (hasImageItem) {
|
||||
// If there's an image item, dispatch the event to the parent
|
||||
eventDispatch('paste', { event });
|
||||
event.preventDefault();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
// Check if the pasted content contains image files
|
||||
const hasImageFile = Array.from(event.clipboardData.files).some((file) =>
|
||||
file.type.startsWith('image/')
|
||||
);
|
||||
|
||||
// Check for image in dataTransfer items (for cases where files are not available)
|
||||
const hasImageItem = Array.from(event.clipboardData.items).some((item) =>
|
||||
item.type.startsWith('image/')
|
||||
);
|
||||
if (hasImageFile) {
|
||||
// If there's an image, dispatch the event to the parent
|
||||
eventDispatch('paste', { event });
|
||||
event.preventDefault();
|
||||
return true;
|
||||
}
|
||||
|
||||
if (hasImageItem) {
|
||||
// If there's an image item, dispatch the event to the parent
|
||||
eventDispatch('paste', { event });
|
||||
event.preventDefault();
|
||||
return true;
|
||||
}
|
||||
// For all other cases (text, formatted text, etc.), let ProseMirror handle it
|
||||
view.dispatch(view.state.tr.scrollIntoView()); // Move viewport to the cursor after pasting
|
||||
return false;
|
||||
}
|
||||
|
||||
// For all other cases (text, formatted text, etc.), let ProseMirror handle it
|
||||
return false;
|
||||
},
|
||||
// Handle space input after browser has completed it
|
||||
keyup: (view, event) => {
|
||||
if (event.key === ' ' && event.code === 'Space') {
|
||||
afterSpacePress(view.state, view.dispatch);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
},
|
||||
attributes: { id }
|
||||
}
|
||||
});
|
||||
|
||||
selectTemplate();
|
||||
});
|
||||
|
||||
// Reinitialize the editor if the value is externally changed (i.e. when `value` is updated)
|
||||
$: if (view && value !== serializeEditorContent(view.state.doc)) {
|
||||
const newDoc = markdownToProseMirrorDoc(value || '');
|
||||
|
||||
const newState = EditorState.create({
|
||||
doc: newDoc,
|
||||
schema,
|
||||
plugins: view.state.plugins,
|
||||
selection: TextSelection.atEnd(newDoc) // This sets the cursor at the end
|
||||
});
|
||||
view.updateState(newState);
|
||||
|
||||
if (value !== '') {
|
||||
// After updating the state, try to find and select the next template
|
||||
setTimeout(() => {
|
||||
const templateFound = selectNextTemplate(view.state, view.dispatch);
|
||||
if (!templateFound) {
|
||||
// If no template found, set cursor at the end
|
||||
const endPos = view.state.doc.content.size;
|
||||
view.dispatch(view.state.tr.setSelection(TextSelection.create(view.state.doc, endPos)));
|
||||
}
|
||||
}, 0);
|
||||
}
|
||||
}
|
||||
|
||||
// Destroy ProseMirror instance on unmount
|
||||
onDestroy(() => {
|
||||
view?.destroy();
|
||||
if (editor) {
|
||||
editor.destroy();
|
||||
}
|
||||
});
|
||||
|
||||
// Update the editor content if the external `value` changes
|
||||
$: if (editor && value !== turndownService.turndown(editor.getHTML())) {
|
||||
editor.commands.setContent(marked.parse(value)); // Update editor content
|
||||
selectTemplate();
|
||||
}
|
||||
</script>
|
||||
|
||||
<div bind:this={element} class="relative w-full min-w-full h-full min-h-fit {className}"></div>
|
||||
<div bind:this={element} class="relative w-full min-w-full h-full min-h-fit {className}" />
|
||||
|
||||
@@ -115,6 +115,20 @@
|
||||
</div>
|
||||
</button>
|
||||
</Menu>
|
||||
{:else if $mobile}
|
||||
<Tooltip content={$i18n.t('Controls')}>
|
||||
<button
|
||||
class=" flex cursor-pointer px-2 py-2 rounded-xl hover:bg-gray-50 dark:hover:bg-gray-850 transition"
|
||||
on:click={async () => {
|
||||
await showControls.set(!$showControls);
|
||||
}}
|
||||
aria-label="Controls"
|
||||
>
|
||||
<div class=" m-auto self-center">
|
||||
<AdjustmentsHorizontal className=" size-5" strokeWidth="0.5" />
|
||||
</div>
|
||||
</button>
|
||||
</Tooltip>
|
||||
{/if}
|
||||
|
||||
{#if !$mobile}
|
||||
|
||||
@@ -68,7 +68,7 @@
|
||||
let inputFiles = null;
|
||||
|
||||
let filteredItems = [];
|
||||
$: if (knowledge) {
|
||||
$: if (knowledge && knowledge.files) {
|
||||
fuse = new Fuse(knowledge.files, {
|
||||
keys: ['meta.name', 'meta.description']
|
||||
});
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "أدخل كود اللغة",
|
||||
"Enter Model ID": "",
|
||||
"Enter model tag (e.g. {{modelTag}})": "(e.g. {{modelTag}}) أدخل الموديل تاق",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "(e.g. 50) أدخل عدد الخطوات",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "محتوى الملف النموذجي",
|
||||
"Models": "الموديلات",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "المزيد",
|
||||
"Name": "الأسم",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "Въведете кодове на езика",
|
||||
"Enter Model ID": "",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Въведете таг на модел (напр. {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Въведете брой стъпки (напр. 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "Съдържание на модфайл",
|
||||
"Models": "Модели",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "Повече",
|
||||
"Name": "Име",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "ল্যাঙ্গুয়েজ কোড লিখুন",
|
||||
"Enter Model ID": "",
|
||||
"Enter model tag (e.g. {{modelTag}})": "মডেল ট্যাগ লিখুন (e.g. {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "ধাপের সংখ্যা দিন (যেমন: 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "মডেলফাইল কনটেন্ট",
|
||||
"Models": "মডেলসমূহ",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "আরো",
|
||||
"Name": "নাম",
|
||||
|
||||
@@ -11,9 +11,9 @@
|
||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Un model de tasca s'utilitza quan es realitzen tasques com ara generar títols per a xats i consultes de cerca per a la web",
|
||||
"a user": "un usuari",
|
||||
"About": "Sobre",
|
||||
"Access": "",
|
||||
"Access Control": "",
|
||||
"Accessible to all users": "",
|
||||
"Access": "Accés",
|
||||
"Access Control": "Control d'accés",
|
||||
"Accessible to all users": "Accessible a tots els usuaris",
|
||||
"Account": "Compte",
|
||||
"Account Activation Pending": "Activació del compte pendent",
|
||||
"Accurate information": "Informació precisa",
|
||||
@@ -30,14 +30,14 @@
|
||||
"Add content here": "Afegir contingut aquí",
|
||||
"Add custom prompt": "Afegir una indicació personalitzada",
|
||||
"Add Files": "Afegir arxius",
|
||||
"Add Group": "",
|
||||
"Add Group": "Afegir grup",
|
||||
"Add Memory": "Afegir memòria",
|
||||
"Add Model": "Afegir un model",
|
||||
"Add Tag": "Afegir etiqueta",
|
||||
"Add Tags": "Afegir etiquetes",
|
||||
"Add text content": "Afegir contingut de text",
|
||||
"Add User": "Afegir un usuari",
|
||||
"Add User Group": "",
|
||||
"Add User Group": "Afegir grup d'usuaris",
|
||||
"Adjusting these settings will apply changes universally to all users.": "Si ajustes aquesta preferència, els canvis s'aplicaran de manera universal a tots els usuaris.",
|
||||
"admin": "administrador",
|
||||
"Admin": "Administrador",
|
||||
@@ -48,18 +48,18 @@
|
||||
"Advanced Params": "Paràmetres avançats",
|
||||
"All chats": "Tots els xats",
|
||||
"All Documents": "Tots els documents",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
"All models deleted successfully": "Tots els models s'han eliminat correctament",
|
||||
"Allow Chat Delete": "Permetre eliminar el xat",
|
||||
"Allow Chat Deletion": "Permetre la supressió del xat",
|
||||
"Allow Chat Edit": "",
|
||||
"Allow File Upload": "",
|
||||
"Allow Chat Edit": "Permetre editar el xat",
|
||||
"Allow File Upload": "Permetre la pujada d'arxius",
|
||||
"Allow non-local voices": "Permetre veus no locals",
|
||||
"Allow Temporary Chat": "Permetre el xat temporal",
|
||||
"Allow User Location": "Permetre la ubicació de l'usuari",
|
||||
"Allow Voice Interruption in Call": "Permetre la interrupció de la veu en una trucada",
|
||||
"Already have an account?": "Ja tens un compte?",
|
||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternativa al top_p, i pretén garantir un equilibri de qualitat i varietat. El paràmetre p representa la probabilitat mínima que es consideri un token, en relació amb la probabilitat del token més probable. Per exemple, amb p=0,05 i el token més probable amb una probabilitat de 0,9, es filtren els logits amb un valor inferior a 0,045. (Per defecte: 0.0)",
|
||||
"Amazing": "",
|
||||
"Amazing": "Al·lucinant",
|
||||
"an assistant": "un assistent",
|
||||
"and": "i",
|
||||
"and {{COUNT}} more": "i {{COUNT}} més",
|
||||
@@ -70,7 +70,7 @@
|
||||
"API keys": "Claus de l'API",
|
||||
"Application DN": "DN d'aplicació",
|
||||
"Application DN Password": "Contrasenya del DN d'aplicació",
|
||||
"applies to all users with the \"user\" role": "",
|
||||
"applies to all users with the \"user\" role": "s'aplica a tots els usuaris amb el rol \"usuari\"",
|
||||
"April": "Abril",
|
||||
"Archive": "Arxiu",
|
||||
"Archive All Chats": "Arxiva tots els xats",
|
||||
@@ -96,7 +96,7 @@
|
||||
"AUTOMATIC1111 Base URL is required.": "Es requereix l'URL Base d'AUTOMATIC1111.",
|
||||
"Available list": "Llista de disponibles",
|
||||
"available!": "disponible!",
|
||||
"Awful": "",
|
||||
"Awful": "Terrible",
|
||||
"Azure AI Speech": "Azure AI Speech",
|
||||
"Azure Region": "Regió d'Azure",
|
||||
"Back": "Enrere",
|
||||
@@ -109,7 +109,7 @@
|
||||
"Bing Search V7 Endpoint": "Punt de connexió a Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Clau de subscripció a Bing Search V7",
|
||||
"Brave Search API Key": "Clau API de Brave Search",
|
||||
"By {{name}}": "",
|
||||
"By {{name}}": "Per {{name}}",
|
||||
"Bypass SSL verification for Websites": "Desactivar la verificació SSL per a l'accés a Internet",
|
||||
"Call": "Trucada",
|
||||
"Call feature is not supported when using Web STT engine": "La funció de trucada no s'admet quan s'utilitza el motor Web STT",
|
||||
@@ -126,7 +126,7 @@
|
||||
"Chat Controls": "Controls de xat",
|
||||
"Chat direction": "Direcció del xat",
|
||||
"Chat Overview": "Vista general del xat",
|
||||
"Chat Permissions": "",
|
||||
"Chat Permissions": "Permisos del xat",
|
||||
"Chat Tags Auto-Generation": "Generació automàtica d'etiquetes del xat",
|
||||
"Chats": "Xats",
|
||||
"Check Again": "Comprovar-ho de nou",
|
||||
@@ -157,7 +157,7 @@
|
||||
"Code execution": "Execució de codi",
|
||||
"Code formatted successfully": "Codi formatat correctament",
|
||||
"Collection": "Col·lecció",
|
||||
"Color": "",
|
||||
"Color": "Color",
|
||||
"ComfyUI": "ComfyUI",
|
||||
"ComfyUI Base URL": "URL base de ComfyUI",
|
||||
"ComfyUI Base URL is required.": "L'URL base de ComfyUI és obligatòria.",
|
||||
@@ -191,12 +191,12 @@
|
||||
"Copy Link": "Copiar l'enllaç",
|
||||
"Copy to clipboard": "Copiar al porta-retalls",
|
||||
"Copying to clipboard was successful!": "La còpia al porta-retalls s'ha realitzat correctament",
|
||||
"Create": "",
|
||||
"Create": "Crear",
|
||||
"Create a knowledge base": "Crear una base de coneixement",
|
||||
"Create a model": "Crear un model",
|
||||
"Create Account": "Crear un compte",
|
||||
"Create Admin Account": "Crear un compte d'Administrador",
|
||||
"Create Group": "",
|
||||
"Create Group": "Crear grup",
|
||||
"Create Knowledge": "Crear Coneixement",
|
||||
"Create new key": "Crear una nova clau",
|
||||
"Create new secret key": "Crear una nova clau secreta",
|
||||
@@ -215,8 +215,8 @@
|
||||
"Default (SentenceTransformers)": "Per defecte (SentenceTransformers)",
|
||||
"Default Model": "Model per defecte",
|
||||
"Default model updated": "Model per defecte actualitzat",
|
||||
"Default permissions": "",
|
||||
"Default permissions updated successfully": "",
|
||||
"Default permissions": "Permisos per defecte",
|
||||
"Default permissions updated successfully": "Permisos per defecte actualitzats correctament",
|
||||
"Default Prompt Suggestions": "Suggeriments d'indicació per defecte",
|
||||
"Default to 389 or 636 if TLS is enabled": "Per defecte 389 o 636 si TLS està habilitat",
|
||||
"Default to ALL": "Per defecte TOTS",
|
||||
@@ -224,7 +224,7 @@
|
||||
"Delete": "Eliminar",
|
||||
"Delete a model": "Eliminar un model",
|
||||
"Delete All Chats": "Eliminar tots els xats",
|
||||
"Delete All Models": "",
|
||||
"Delete All Models": "Eliminar tots els models",
|
||||
"Delete chat": "Eliminar xat",
|
||||
"Delete Chat": "Eliminar xat",
|
||||
"Delete chat?": "Eliminar el xat?",
|
||||
@@ -236,7 +236,7 @@
|
||||
"Delete User": "Eliminar usuari",
|
||||
"Deleted {{deleteModelTag}}": "S'ha eliminat {{deleteModelTag}}",
|
||||
"Deleted {{name}}": "S'ha eliminat {{name}}",
|
||||
"Deleted User": "",
|
||||
"Deleted User": "Usuari eliminat",
|
||||
"Describe your knowledge base and objectives": "Descriu la teva base de coneixement i objectius",
|
||||
"Description": "Descripció",
|
||||
"Didn't fully follow instructions": "No s'han seguit les instruccions completament",
|
||||
@@ -251,10 +251,10 @@
|
||||
"Discover, download, and explore custom tools": "Descobrir, descarregar i explorar eines personalitzades",
|
||||
"Discover, download, and explore model presets": "Descobrir, descarregar i explorar models preconfigurats",
|
||||
"Dismissible": "Descartable",
|
||||
"Display": "",
|
||||
"Display": "Mostrar",
|
||||
"Display Emoji in Call": "Mostrar emojis a la trucada",
|
||||
"Display the username instead of You in the Chat": "Mostrar el nom d'usuari en lloc de 'Tu' al xat",
|
||||
"Displays citations in the response": "",
|
||||
"Displays citations in the response": "Mostra les referències a la resposta",
|
||||
"Dive into knowledge": "Aprofundir en el coneixement",
|
||||
"Do not install functions from sources you do not fully trust.": "No instal·lis funcions de fonts en què no confiïs plenament.",
|
||||
"Do not install tools from sources you do not fully trust.": "No instal·lis eines de fonts en què no confiïs plenament.",
|
||||
@@ -270,23 +270,23 @@
|
||||
"Download": "Descarregar",
|
||||
"Download canceled": "Descàrrega cancel·lada",
|
||||
"Download Database": "Descarregar la base de dades",
|
||||
"Drag and drop a file to upload or select a file to view": "",
|
||||
"Drag and drop a file to upload or select a file to view": "Arrossegar un arxiu per pujar o escull un arxiu a veure",
|
||||
"Draw": "Dibuixar",
|
||||
"Drop any files here to add to the conversation": "Deixa qualsevol arxiu aquí per afegir-lo a la conversa",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p. ex. '30s','10m'. Les unitats de temps vàlides són 's', 'm', 'h'.",
|
||||
"e.g. A filter to remove profanity from text": "p. ex. Un filtre per eliminar paraules malsonants del text",
|
||||
"e.g. My Filter": "p. ex. El meu filtre",
|
||||
"e.g. My Tools": "",
|
||||
"e.g. My Tools": "p. ex. Les meves eines",
|
||||
"e.g. my_filter": "p. ex. els_meus_filtres",
|
||||
"e.g. my_tools": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g. my_tools": "p. ex. les_meves_eines",
|
||||
"e.g. Tools for performing various operations": "p. ex. Eines per dur a terme operacions",
|
||||
"Edit": "Editar",
|
||||
"Edit Arena Model": "Editar model de l'Arena",
|
||||
"Edit Connection": "Editar la connexió",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Default Permissions": "Editar el permisos per defecte",
|
||||
"Edit Memory": "Editar la memòria",
|
||||
"Edit User": "Editar l'usuari",
|
||||
"Edit User Group": "",
|
||||
"Edit User Group": "Editar el grup d'usuaris",
|
||||
"ElevenLabs": "ElevenLabs",
|
||||
"Email": "Correu electrònic",
|
||||
"Embark on adventures": "Embarcar en aventures",
|
||||
@@ -294,14 +294,14 @@
|
||||
"Embedding Model": "Model d'incrustació",
|
||||
"Embedding Model Engine": "Motor de model d'incrustació",
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Model d'incrustació configurat a \"{{embedding_model}}\"",
|
||||
"Enable API Key Auth": "",
|
||||
"Enable API Key Auth": "Activar l'autenticació amb clau API",
|
||||
"Enable Community Sharing": "Activar l'ús compartit amb la comunitat",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Activar el bloqueig de memòria (mlock) per evitar que les dades del model s'intercanviïn fora de la memòria RAM. Aquesta opció bloqueja el conjunt de pàgines de treball del model a la memòria RAM, assegurant-se que no s'intercanviaran al disc. Això pot ajudar a mantenir el rendiment evitant errors de pàgina i garantint un accés ràpid a les dades.",
|
||||
"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "Activar l'assignació de memòria (mmap) per carregar les dades del model. Aquesta opció permet que el sistema utilitzi l'emmagatzematge en disc com a extensió de la memòria RAM tractant els fitxers de disc com si estiguessin a la memòria RAM. Això pot millorar el rendiment del model permetent un accés més ràpid a les dades. Tanmateix, és possible que no funcioni correctament amb tots els sistemes i pot consumir una quantitat important d'espai en disc.",
|
||||
"Enable Message Rating": "Permetre la qualificació de missatges",
|
||||
"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Activar el mostreig de Mirostat per controlar la perplexitat. (Per defecte: 0, 0 = Inhabilitat, 1 = Mirostat, 2 = Mirostat 2.0)",
|
||||
"Enable New Sign Ups": "Permetre nous registres",
|
||||
"Enable Retrieval Query Generation": "",
|
||||
"Enable Retrieval Query Generation": "Activar la Retrieval Query Generation",
|
||||
"Enable Tags Generation": "Activar la generació d'etiquetes",
|
||||
"Enable Web Search": "Activar la cerca web",
|
||||
"Enable Web Search Query Generation": "Activa la generació de consultes de cerca web",
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "Introdueix els codis de llenguatge",
|
||||
"Enter Model ID": "Introdueix l'identificador del model",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Introdueix l'etiqueta del model (p. ex. {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "Introdueix la clau API de Mojeek Search",
|
||||
"Enter Number of Steps (e.g. 50)": "Introdueix el nombre de passos (p. ex. 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "Introdueix el mostrejador (p.ex. Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Entra el programador (p.ex. Karras)",
|
||||
@@ -374,7 +375,7 @@
|
||||
"Export Config to JSON File": "Exportar la configuració a un arxiu JSON",
|
||||
"Export Functions": "Exportar funcions",
|
||||
"Export Models": "Exportar els models",
|
||||
"Export Presets": "",
|
||||
"Export Presets": "Exportar les configuracions",
|
||||
"Export Prompts": "Exportar les indicacions",
|
||||
"Export to CSV": "Exportar a CSV",
|
||||
"Export Tools": "Exportar les eines",
|
||||
@@ -435,11 +436,11 @@
|
||||
"Good Response": "Bona resposta",
|
||||
"Google PSE API Key": "Clau API PSE de Google",
|
||||
"Google PSE Engine Id": "Identificador del motor PSE de Google",
|
||||
"Group created successfully": "",
|
||||
"Group deleted successfully": "",
|
||||
"Group Description": "",
|
||||
"Group Name": "",
|
||||
"Group updated successfully": "",
|
||||
"Group created successfully": "El grup s'ha creat correctament",
|
||||
"Group deleted successfully": "El grup s'ha eliminat correctament",
|
||||
"Group Description": "Descripció del grup",
|
||||
"Group Name": "Nom del grup",
|
||||
"Group updated successfully": "Grup actualitzat correctament",
|
||||
"Groups": "Grups",
|
||||
"h:mm a": "h:mm a",
|
||||
"Haptic Feedback": "Retorn hàptic",
|
||||
@@ -447,12 +448,12 @@
|
||||
"Hello, {{name}}": "Hola, {{name}}",
|
||||
"Help": "Ajuda",
|
||||
"Help us create the best community leaderboard by sharing your feedback history!": "Ajuda'ns a crear la millor taula de classificació de la comunitat compartint el teu historial de comentaris!",
|
||||
"Hex Color": "",
|
||||
"Hex Color - Leave empty for default color": "",
|
||||
"Hex Color": "Color hexadecimal",
|
||||
"Hex Color - Leave empty for default color": "Color hexadecimal - Deixar buit per a color per defecte",
|
||||
"Hide": "Amaga",
|
||||
"Host": "Servidor",
|
||||
"How can I help you today?": "Com et puc ajudar avui?",
|
||||
"How would you rate this response?": "",
|
||||
"How would you rate this response?": "Com avaluaries aquesta resposta?",
|
||||
"Hybrid Search": "Cerca híbrida",
|
||||
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Afirmo que he llegit i entenc les implicacions de la meva acció. Soc conscient dels riscos associats a l'execució de codi arbitrari i he verificat la fiabilitat de la font.",
|
||||
"ID": "ID",
|
||||
@@ -465,7 +466,7 @@
|
||||
"Import Config from JSON File": "Importar la configuració des d'un arxiu JSON",
|
||||
"Import Functions": "Importar funcions",
|
||||
"Import Models": "Importar models",
|
||||
"Import Presets": "",
|
||||
"Import Presets": "Importar configuracions",
|
||||
"Import Prompts": "Importar indicacions",
|
||||
"Import Tools": "Importar eines",
|
||||
"Include": "Incloure",
|
||||
@@ -492,7 +493,7 @@
|
||||
"Key": "Clau",
|
||||
"Keyboard shortcuts": "Dreceres de teclat",
|
||||
"Knowledge": "Coneixement",
|
||||
"Knowledge Access": "",
|
||||
"Knowledge Access": "Accés al coneixement",
|
||||
"Knowledge created successfully.": "Coneixement creat correctament.",
|
||||
"Knowledge deleted successfully.": "Coneixement eliminat correctament.",
|
||||
"Knowledge reset successfully.": "Coneixement restablert correctament.",
|
||||
@@ -522,7 +523,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Assegura't d'exportar un fitxer workflow.json com a format API des de ComfyUI.",
|
||||
"Manage": "Gestionar",
|
||||
"Manage Arena Models": "Gestionar els models de l'Arena",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama": "Gestionar Ollama",
|
||||
"Manage Ollama API Connections": "Gestionar les connexions a l'API d'Ollama",
|
||||
"Manage OpenAI API Connections": "Gestionar les connexions a l'API d'OpenAI",
|
||||
"Manage Pipelines": "Gestionar les Pipelines",
|
||||
@@ -558,17 +559,18 @@
|
||||
"Model accepts image inputs": "El model accepta entrades d'imatge",
|
||||
"Model created successfully!": "Model creat correctament",
|
||||
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "S'ha detectat el camí del sistema de fitxers del model. És necessari un nom curt del model per actualitzar, no es pot continuar.",
|
||||
"Model Filtering": "",
|
||||
"Model Filtering": "Filtrat de models",
|
||||
"Model ID": "Identificador del model",
|
||||
"Model IDs": "Identificadors del model",
|
||||
"Model Name": "Nom del model",
|
||||
"Model not selected": "Model no seleccionat",
|
||||
"Model Params": "Paràmetres del model",
|
||||
"Model Permissions": "",
|
||||
"Model Permissions": "Permisos dels models",
|
||||
"Model updated successfully": "Model actualitzat correctament",
|
||||
"Modelfile Content": "Contingut del Modelfile",
|
||||
"Models": "Models",
|
||||
"Models Access": "",
|
||||
"Models Access": "Accés als models",
|
||||
"Mojeek Search API Key": "Clau API de Mojeek Search",
|
||||
"more": "més",
|
||||
"More": "Més",
|
||||
"Name": "Nom",
|
||||
@@ -582,15 +584,15 @@
|
||||
"No feedbacks found": "No s'han trobat comentaris",
|
||||
"No file selected": "No s'ha escollit cap fitxer",
|
||||
"No files found.": "No s'han trobat arxius.",
|
||||
"No groups with access, add a group to grant access": "",
|
||||
"No groups with access, add a group to grant access": "No hi ha cap grup amb accés, afegeix un grup per concedir accés",
|
||||
"No HTML, CSS, or JavaScript content found.": "No s'ha trobat contingut HTML, CSS o JavaScript.",
|
||||
"No knowledge found": "No s'ha trobat Coneixement",
|
||||
"No model IDs": "",
|
||||
"No model IDs": "No hi ha IDs de model",
|
||||
"No models found": "No s'han trobat models",
|
||||
"No results found": "No s'han trobat resultats",
|
||||
"No search query generated": "No s'ha generat cap consulta",
|
||||
"No source available": "Sense font disponible",
|
||||
"No users were found.": "",
|
||||
"No users were found.": "No s'han trobat usuaris",
|
||||
"No valves to update": "No hi ha cap Valve per actualitzar",
|
||||
"None": "Cap",
|
||||
"Not factually correct": "No és clarament correcte",
|
||||
@@ -615,7 +617,7 @@
|
||||
"Only alphanumeric characters and hyphens are allowed": "Només es permeten caràcters alfanumèrics i guions",
|
||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Només es permeten caràcters alfanumèrics i guions en la comanda.",
|
||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Només es poden editar col·leccions, crea una nova base de coneixement per editar/afegir documents.",
|
||||
"Only select users and groups with permission can access": "",
|
||||
"Only select users and groups with permission can access": "Només hi poden accedir usuaris i grups seleccionats amb permís",
|
||||
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Ui! Sembla que l'URL no és vàlida. Si us plau, revisa-la i torna-ho a provar.",
|
||||
"Oops! There are files still uploading. Please wait for the upload to complete.": "Ui! Encara hi ha fitxers pujant-se. Si us plau, espera que finalitzi la càrrega.",
|
||||
"Oops! There was an error in the previous response.": "Ui! Hi ha hagut un error a la resposta anterior.",
|
||||
@@ -633,21 +635,21 @@
|
||||
"OpenAI API settings updated": "Configuració de l'API d'OpenAI actualitzada",
|
||||
"OpenAI URL/Key required.": "URL/Clau d'OpenAI requerides.",
|
||||
"or": "o",
|
||||
"Organize your users": "",
|
||||
"Organize your users": "Organitza els teus usuaris",
|
||||
"Other": "Altres",
|
||||
"OUTPUT": "SORTIDA",
|
||||
"Output format": "Format de sortida",
|
||||
"Overview": "Vista general",
|
||||
"page": "pàgina",
|
||||
"Password": "Contrasenya",
|
||||
"Paste Large Text as File": "",
|
||||
"Paste Large Text as File": "Enganxa un text llarg com a fitxer",
|
||||
"PDF document (.pdf)": "Document PDF (.pdf)",
|
||||
"PDF Extract Images (OCR)": "Extreu imatges del PDF (OCR)",
|
||||
"pending": "pendent",
|
||||
"Permission denied when accessing media devices": "Permís denegat en accedir a dispositius multimèdia",
|
||||
"Permission denied when accessing microphone": "Permís denegat en accedir al micròfon",
|
||||
"Permission denied when accessing microphone: {{error}}": "Permís denegat en accedir al micròfon: {{error}}",
|
||||
"Permissions": "",
|
||||
"Permissions": "Permisos",
|
||||
"Personalization": "Personalització",
|
||||
"Pin": "Fixar",
|
||||
"Pinned": "Fixat",
|
||||
@@ -672,14 +674,14 @@
|
||||
"Profile Image": "Imatge de perfil",
|
||||
"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": "",
|
||||
"Prompt created successfully": "Indicació creada correctament",
|
||||
"Prompt suggestions": "Suggeriments d'indicacions",
|
||||
"Prompt updated successfully": "",
|
||||
"Prompt updated successfully": "Indicació actualitzada correctament",
|
||||
"Prompts": "Indicacions",
|
||||
"Prompts Access": "",
|
||||
"Prompts Access": "Accés a les indicacions",
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Obtenir \"{{searchValue}}\" de Ollama.com",
|
||||
"Pull a model from Ollama.com": "Obtenir un model d'Ollama.com",
|
||||
"Query Generation Prompt": "",
|
||||
"Query Generation Prompt": "Indicació per a generació de consulta",
|
||||
"Query Params": "Paràmetres de consulta",
|
||||
"RAG Template": "Plantilla RAG",
|
||||
"Rating": "Valoració",
|
||||
@@ -753,7 +755,7 @@
|
||||
"Select a base model": "Seleccionar un model base",
|
||||
"Select a engine": "Seleccionar un motor",
|
||||
"Select a function": "Seleccionar una funció",
|
||||
"Select a group": "",
|
||||
"Select a group": "Seleccionar un grup",
|
||||
"Select a model": "Seleccionar un model",
|
||||
"Select a pipeline": "Seleccionar una Pipeline",
|
||||
"Select a pipeline url": "Seleccionar l'URL d'una Pipeline",
|
||||
@@ -776,7 +778,7 @@
|
||||
"Set as default": "Establir com a predeterminat",
|
||||
"Set CFG Scale": "Establir l'escala CFG",
|
||||
"Set Default Model": "Establir el model predeterminat",
|
||||
"Set embedding model": "",
|
||||
"Set embedding model": "Establir el model d'incrustació",
|
||||
"Set embedding model (e.g. {{model}})": "Establir el model d'incrustació (p.ex. {{model}})",
|
||||
"Set Image Size": "Establir la mida de la image",
|
||||
"Set reranking model (e.g. {{model}})": "Establir el model de reavaluació (p.ex. {{model}})",
|
||||
@@ -864,8 +866,8 @@
|
||||
"This response was generated by \"{{model}}\"": "Aquesta resposta l'ha generat el model \"{{model}}\"",
|
||||
"This will delete": "Això eliminarà",
|
||||
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Això eliminarà <strong>{{NAME}}</strong> i <strong>tots els continguts</strong>.",
|
||||
"This will delete all models including custom models": "",
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will delete all models including custom models": "Això eliminarà tots els models incloent els personalitzats",
|
||||
"This will delete all models including custom models and cannot be undone.": "Això eliminarà tots els models incloent els personalitzats i no es pot desfer",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Això restablirà la base de coneixement i sincronitzarà tots els fitxers. Vols continuar?",
|
||||
"Thorough explanation": "Explicació en detall",
|
||||
"Tika": "Tika",
|
||||
@@ -895,13 +897,13 @@
|
||||
"Too verbose": "Massa explicit",
|
||||
"Tool created successfully": "Eina creada correctament",
|
||||
"Tool deleted successfully": "Eina eliminada correctament",
|
||||
"Tool Description": "",
|
||||
"Tool ID": "",
|
||||
"Tool Description": "Descripció de l'eina",
|
||||
"Tool ID": "ID de l'eina",
|
||||
"Tool imported successfully": "Eina importada correctament",
|
||||
"Tool Name": "",
|
||||
"Tool Name": "Nom de l'eina",
|
||||
"Tool updated successfully": "Eina actualitzada correctament",
|
||||
"Tools": "Eines",
|
||||
"Tools Access": "",
|
||||
"Tools Access": "Accés a les eines",
|
||||
"Tools are a function calling system with arbitrary code execution": "Les eines són un sistema de crida a funcions amb execució de codi arbitrari",
|
||||
"Tools have a function calling system that allows arbitrary code execution": "Les eines disposen d'un sistema de crida a funcions que permet execució de codi arbitrari",
|
||||
"Tools have a function calling system that allows arbitrary code execution.": "Les eines disposen d'un sistema de crida a funcions que permet execució de codi arbitrari.",
|
||||
@@ -941,7 +943,7 @@
|
||||
"URL Mode": "Mode URL",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Utilitza '#' a l'entrada de la indicació per carregar i incloure els teus coneixements.",
|
||||
"Use Gravatar": "Utilitzar Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "",
|
||||
"Use groups to group your users and assign permissions.": "Utilitza grups per agrupar els usuaris i assignar permisos.",
|
||||
"Use Initials": "Utilitzar inicials",
|
||||
"use_mlock (Ollama)": "use_mlock (Ollama)",
|
||||
"use_mmap (Ollama)": "use_mmap (Ollama)",
|
||||
@@ -960,12 +962,12 @@
|
||||
"variable to have them replaced with clipboard content.": "variable per tenir-les reemplaçades amb el contingut del porta-retalls.",
|
||||
"Version": "Versió",
|
||||
"Version {{selectedVersion}} of {{totalVersions}}": "Versió {{selectedVersion}} de {{totalVersions}}",
|
||||
"Visibility": "",
|
||||
"Visibility": "Visibilitat",
|
||||
"Voice": "Veu",
|
||||
"Voice Input": "Entrada de veu",
|
||||
"Warning": "Avís",
|
||||
"Warning:": "Avís:",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Avís: Habilitar això permetrà als usuaris penjar codi arbitrari al servidor.",
|
||||
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Avís: Si s'actualitza o es canvia el model d'incrustació, s'hauran de tornar a importar tots els documents.",
|
||||
"Web": "Web",
|
||||
"Web API": "Web API",
|
||||
@@ -982,12 +984,12 @@
|
||||
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Quan està activat, el model respondrà a cada missatge de xat en temps real, generant una resposta tan bon punt l'usuari envia un missatge. Aquest mode és útil per a aplicacions de xat en directe, però pot afectar el rendiment en maquinari més lent.",
|
||||
"wherever you are": "allà on estiguis",
|
||||
"Whisper (Local)": "Whisper (local)",
|
||||
"Why?": "",
|
||||
"Why?": "Per què?",
|
||||
"Widescreen Mode": "Mode de pantalla ampla",
|
||||
"Won": "Ha guanyat",
|
||||
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "Funciona juntament amb top-k. Un valor més alt (p. ex., 0,95) donarà lloc a un text més divers, mentre que un valor més baix (p. ex., 0,5) generarà un text més concentrat i conservador. (Per defecte: 0,9)",
|
||||
"Workspace": "Espai de treball",
|
||||
"Workspace Permissions": "",
|
||||
"Workspace Permissions": "Permisos de l'espai de treball",
|
||||
"Write a prompt suggestion (e.g. Who are you?)": "Escriu una suggerència d'indicació (p. ex. Qui ets?)",
|
||||
"Write a summary in 50 words that summarizes [topic or keyword].": "Escriu un resum en 50 paraules que resumeixi [tema o paraula clau].",
|
||||
"Write something...": "Escriu quelcom...",
|
||||
@@ -997,7 +999,7 @@
|
||||
"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Només pots xatejar amb un màxim de {{maxCount}} fitxers alhora.",
|
||||
"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Pots personalitzar les teves interaccions amb els models de llenguatge afegint memòries mitjançant el botó 'Gestiona' que hi ha a continuació, fent-les més útils i adaptades a tu.",
|
||||
"You cannot upload an empty file.": "No es pot pujar un ariux buit.",
|
||||
"You do not have permission to upload files.": "",
|
||||
"You do not have permission to upload files.": "No tens permisos per pujar arxius.",
|
||||
"You have no archived conversations.": "No tens converses arxivades.",
|
||||
"You have shared this chat": "Has compartit aquest xat",
|
||||
"You're a helpful assistant.": "Ets un assistent útil.",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "",
|
||||
"Enter Model ID": "",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Pagsulod sa template tag (e.g. {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Pagsulod sa gidaghanon sa mga lakang (e.g. 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "Mga sulod sa template file",
|
||||
"Models": "Mga modelo",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "",
|
||||
"Name": "Ngalan",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "Zadejte kódy jazyků",
|
||||
"Enter Model ID": "Zadejte ID modelu",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Zadejte označení modelu (např. {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Zadejte počet kroků (např. 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "Zadejte vzorkovač (např. Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Zadejte plánovač (např. Karras)",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "Obsah souboru modelfile",
|
||||
"Models": "Modely",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "více",
|
||||
"More": "Více",
|
||||
"Name": "Jméno",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "Indtast sprogkoder",
|
||||
"Enter Model ID": "Indtast model-ID",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Indtast modelmærke (f.eks. {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Indtast antal trin (f.eks. 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "Indtast sampler (f.eks. Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Indtast scheduler (f.eks. Karras)",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "Modelfilindhold",
|
||||
"Models": "Modeller",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "Mere",
|
||||
"Name": "Navn",
|
||||
|
||||
@@ -11,33 +11,33 @@
|
||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Aufgabenmodelle können Unterhaltungstitel oder Websuchanfragen generieren.",
|
||||
"a user": "ein Benutzer",
|
||||
"About": "Über",
|
||||
"Access": "",
|
||||
"Access Control": "",
|
||||
"Accessible to all users": "",
|
||||
"Access": "Zugang",
|
||||
"Access Control": "Zugangskontrolle",
|
||||
"Accessible to all users": "Für alle Benutzer zugänglich",
|
||||
"Account": "Konto",
|
||||
"Account Activation Pending": "Kontoaktivierung ausstehend",
|
||||
"Accurate information": "Präzise Information(en)",
|
||||
"Actions": "Aktionen",
|
||||
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
|
||||
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktivieren Sie diesen Befehl, indem Sie \"/{{COMMAND}}\" in die Chat-Eingabe eingeben.",
|
||||
"Active Users": "Aktive Benutzer",
|
||||
"Add": "Hinzufügen",
|
||||
"Add a model ID": "",
|
||||
"Add a model ID": "Modell-ID hinzufügen",
|
||||
"Add a short description about what this model does": "Fügen Sie eine kurze Beschreibung über dieses Modell hinzu",
|
||||
"Add a tag": "Tag hinzufügen",
|
||||
"Add Arena Model": "Arena-Modell hinzufügen",
|
||||
"Add Connection": "",
|
||||
"Add Connection": "Verbindung hinzufügen",
|
||||
"Add Content": "Inhalt hinzufügen",
|
||||
"Add content here": "Inhalt hier hinzufügen",
|
||||
"Add custom prompt": "Benutzerdefinierten Prompt hinzufügen",
|
||||
"Add Files": "Dateien hinzufügen",
|
||||
"Add Group": "",
|
||||
"Add Group": "Gruppe hinzufügen",
|
||||
"Add Memory": "Erinnerung hinzufügen",
|
||||
"Add Model": "Modell hinzufügen",
|
||||
"Add Tag": "Tag hinzufügen",
|
||||
"Add Tags": "Tags hinzufügen",
|
||||
"Add text content": "Textinhalt hinzufügen",
|
||||
"Add User": "Benutzer hinzufügen",
|
||||
"Add User Group": "",
|
||||
"Add User Group": "Benutzergruppe hinzufügen",
|
||||
"Adjusting these settings will apply changes universally to all users.": "Das Anpassen dieser Einstellungen wird Änderungen universell auf alle Benutzer anwenden.",
|
||||
"admin": "Administrator",
|
||||
"Admin": "Administrator",
|
||||
@@ -48,18 +48,18 @@
|
||||
"Advanced Params": "Erweiterte Parameter",
|
||||
"All chats": "Alle Unterhaltungen",
|
||||
"All Documents": "Alle Dokumente",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
"All models deleted successfully": "Alle Modelle erfolgreich gelöscht",
|
||||
"Allow Chat Delete": "Löschen von Unterhaltungen erlauben",
|
||||
"Allow Chat Deletion": "Löschen von Unterhaltungen erlauben",
|
||||
"Allow Chat Edit": "",
|
||||
"Allow File Upload": "",
|
||||
"Allow Chat Edit": "Bearbeiten von Unterhaltungen erlauben",
|
||||
"Allow File Upload": "Hochladen von Dateien erlauben",
|
||||
"Allow non-local voices": "Nicht-lokale Stimmen erlauben",
|
||||
"Allow Temporary Chat": "Temporäre Unterhaltungen erlauben",
|
||||
"Allow User Location": "Standort freigeben",
|
||||
"Allow Voice Interruption in Call": "Unterbrechung durch Stimme im Anruf zulassen",
|
||||
"Already have an account?": "Haben Sie bereits einen Account?",
|
||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||
"Amazing": "",
|
||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternative zu top_p und zielt darauf ab, ein Gleichgewicht zwischen Qualität und Vielfalt zu gewährleisten. Der Parameter p repräsentiert die Mindestwahrscheinlichkeit für ein Token, um berücksichtigt zu werden, relativ zur Wahrscheinlichkeit des wahrscheinlichsten Tokens. Zum Beispiel, bei p=0.05 und das wahrscheinlichste Token hat eine Wahrscheinlichkeit von 0.9, werden Logits mit einem Wert von weniger als 0.045 herausgefiltert. (Standard: 0.0)",
|
||||
"Amazing": "Fantastisch",
|
||||
"an assistant": "ein Assistent",
|
||||
"and": "und",
|
||||
"and {{COUNT}} more": "und {{COUNT}} mehr",
|
||||
@@ -68,15 +68,15 @@
|
||||
"API Key": "API-Schlüssel",
|
||||
"API Key created.": "API-Schlüssel erstellt.",
|
||||
"API keys": "API-Schlüssel",
|
||||
"Application DN": "",
|
||||
"Application DN Password": "",
|
||||
"applies to all users with the \"user\" role": "",
|
||||
"Application DN": "Anwendungs-DN",
|
||||
"Application DN Password": "Anwendungs-DN-Passwort",
|
||||
"applies to all users with the \"user\" role": "gilt für alle Benutzer mit der Rolle \"Benutzer\"",
|
||||
"April": "April",
|
||||
"Archive": "Archivieren",
|
||||
"Archive All Chats": "Alle Unterhaltungen archivieren",
|
||||
"Archived Chats": "Archivierte Unterhaltungen",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"archived-chat-export": "archivierter-chat-export",
|
||||
"Are you sure you want to unarchive all archived chats?": "Sind Sie sicher, dass Sie alle archivierten Unterhaltungen wiederherstellen möchten?",
|
||||
"Are you sure?": "Sind Sie sicher?",
|
||||
"Arena Models": "Arena-Modelle",
|
||||
"Artifacts": "Artefakte",
|
||||
@@ -84,10 +84,10 @@
|
||||
"Assistant": "Assistent",
|
||||
"Attach file": "Datei anhängen",
|
||||
"Attention to detail": "Aufmerksamkeit für Details",
|
||||
"Attribute for Username": "",
|
||||
"Attribute for Username": "Attribut für Benutzername",
|
||||
"Audio": "Audio",
|
||||
"August": "August",
|
||||
"Authenticate": "",
|
||||
"Authenticate": "Authentifizieren",
|
||||
"Auto-Copy Response to Clipboard": "Antwort automatisch in die Zwischenablage kopieren",
|
||||
"Auto-playback response": "Antwort automatisch abspielen",
|
||||
"Automatic1111": "Automatic1111",
|
||||
@@ -96,7 +96,7 @@
|
||||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111-Basis-URL ist erforderlich.",
|
||||
"Available list": "Verfügbare Liste",
|
||||
"available!": "Verfügbar!",
|
||||
"Awful": "",
|
||||
"Awful": "Schrecklich",
|
||||
"Azure AI Speech": "Azure AI Speech",
|
||||
"Azure Region": "Azure-Region",
|
||||
"Back": "Zurück",
|
||||
@@ -106,27 +106,27 @@
|
||||
"Batch Size (num_batch)": "Stapelgröße (num_batch)",
|
||||
"before": "bereits geteilt",
|
||||
"Being lazy": "Faulheit",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bing Search V7 Endpoint": "Bing Search V7-Endpunkt",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7-Abonnement-Schlüssel",
|
||||
"Brave Search API Key": "Brave Search API-Schlüssel",
|
||||
"By {{name}}": "",
|
||||
"By {{name}}": "Von {{name}}",
|
||||
"Bypass SSL verification for Websites": "SSL-Überprüfung für Webseiten umgehen",
|
||||
"Call": "Anrufen",
|
||||
"Call feature is not supported when using Web STT engine": "Die Anruffunktion wird nicht unterstützt, wenn die Web-STT-Engine verwendet wird.",
|
||||
"Camera": "Kamera",
|
||||
"Cancel": "Abbrechen",
|
||||
"Capabilities": "Fähigkeiten",
|
||||
"Certificate Path": "",
|
||||
"Certificate Path": "Zertifikatpfad",
|
||||
"Change Password": "Passwort ändern",
|
||||
"Character": "Zeichen",
|
||||
"Chart new frontiers": "",
|
||||
"Chart new frontiers": "Neue Wege beschreiten",
|
||||
"Chat": "Gespräch",
|
||||
"Chat Background Image": "Hintergrundbild des Unterhaltungsfensters",
|
||||
"Chat Bubble UI": "Chat Bubble UI",
|
||||
"Chat Controls": "Chat-Steuerung",
|
||||
"Chat direction": "Textrichtung",
|
||||
"Chat Overview": "Unterhaltungsübersicht",
|
||||
"Chat Permissions": "",
|
||||
"Chat Permissions": "Unterhaltungsberechtigungen",
|
||||
"Chat Tags Auto-Generation": "Automatische Generierung von Unterhaltungstags",
|
||||
"Chats": "Unterhaltungen",
|
||||
"Check Again": "Erneut überprüfen",
|
||||
@@ -136,11 +136,11 @@
|
||||
"Chunk Overlap": "Blocküberlappung",
|
||||
"Chunk Params": "Blockparameter",
|
||||
"Chunk Size": "Blockgröße",
|
||||
"Ciphers": "",
|
||||
"Ciphers": "Verschlüsselungen",
|
||||
"Citation": "Zitate",
|
||||
"Clear memory": "Alle Erinnerungen entfernen",
|
||||
"click here": "",
|
||||
"Click here for filter guides.": "",
|
||||
"click here": "hier klicken",
|
||||
"Click here for filter guides.": "Klicken Sie hier für Filteranleitungen.",
|
||||
"Click here for help.": "Klicken Sie hier für Hilfe.",
|
||||
"Click here to": "Klicken Sie hier, um",
|
||||
"Click here to download user import template file.": "Klicken Sie hier, um die Vorlage für den Benutzerimport herunterzuladen.",
|
||||
@@ -157,7 +157,7 @@
|
||||
"Code execution": "Codeausführung",
|
||||
"Code formatted successfully": "Code erfolgreich formatiert",
|
||||
"Collection": "Kollektion",
|
||||
"Color": "",
|
||||
"Color": "Farbe",
|
||||
"ComfyUI": "ComfyUI",
|
||||
"ComfyUI Base URL": "ComfyUI-Basis-URL",
|
||||
"ComfyUI Base URL is required.": "ComfyUI-Basis-URL wird benötigt.",
|
||||
@@ -166,7 +166,7 @@
|
||||
"Command": "Befehl",
|
||||
"Completions": "Vervollständigungen",
|
||||
"Concurrent Requests": "Anzahl gleichzeitiger Anfragen",
|
||||
"Configure": "",
|
||||
"Configure": "Konfigurieren",
|
||||
"Confirm": "Bestätigen",
|
||||
"Confirm Password": "Passwort bestätigen",
|
||||
"Confirm your action": "Bestätigen Sie Ihre Aktion.",
|
||||
@@ -177,11 +177,11 @@
|
||||
"Context Length": "Kontextlänge",
|
||||
"Continue Response": "Antwort fortsetzen",
|
||||
"Continue with {{provider}}": "Mit {{provider}} fortfahren",
|
||||
"Continue with Email": "",
|
||||
"Continue with LDAP": "",
|
||||
"Continue with Email": "Mit Email fortfahren",
|
||||
"Continue with LDAP": "Mit LDAP fortfahren",
|
||||
"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "Kontrollieren Sie, wie Nachrichtentext für TTS-Anfragen aufgeteilt wird. 'Punctuation' teilt in Sätze auf, 'paragraphs' teilt in Absätze auf und 'none' behält die Nachricht als einzelnen String.",
|
||||
"Controls": "Steuerung",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "Kontrolliert das Gleichgewicht zwischen Kohärenz und Vielfalt des Ausgabetextes. Ein niedrigerer Wert führt zu fokussierterem und kohärenterem Text. (Standard: 5.0)",
|
||||
"Copied": "Kopiert",
|
||||
"Copied shared chat URL to clipboard!": "Freigabelink in die Zwischenablage kopiert!",
|
||||
"Copied to clipboard": "In die Zwischenablage kopiert",
|
||||
@@ -191,12 +191,12 @@
|
||||
"Copy Link": "Link kopieren",
|
||||
"Copy to clipboard": "In die Zwischenablage kopieren",
|
||||
"Copying to clipboard was successful!": "Das Kopieren in die Zwischenablage war erfolgreich!",
|
||||
"Create": "",
|
||||
"Create a knowledge base": "",
|
||||
"Create a model": "Ein Modell erstellen",
|
||||
"Create": "Erstellen",
|
||||
"Create a knowledge base": "Wissensspeicher erstellen",
|
||||
"Create a model": "Modell erstellen",
|
||||
"Create Account": "Konto erstellen",
|
||||
"Create Admin Account": "",
|
||||
"Create Group": "",
|
||||
"Create Admin Account": "Administrator-Account erstellen",
|
||||
"Create Group": "Gruppe erstellen",
|
||||
"Create Knowledge": "Wissen erstellen",
|
||||
"Create new key": "Neuen Schlüssel erstellen",
|
||||
"Create new secret key": "Neuen API-Schlüssel erstellen",
|
||||
@@ -215,16 +215,16 @@
|
||||
"Default (SentenceTransformers)": "Standard (SentenceTransformers)",
|
||||
"Default Model": "Standardmodell",
|
||||
"Default model updated": "Standardmodell aktualisiert",
|
||||
"Default permissions": "",
|
||||
"Default permissions updated successfully": "",
|
||||
"Default permissions": "Standardberechtigungen",
|
||||
"Default permissions updated successfully": "Standardberechtigungen erfolgreich aktualisiert",
|
||||
"Default Prompt Suggestions": "Prompt-Vorschläge",
|
||||
"Default to 389 or 636 if TLS is enabled": "",
|
||||
"Default to ALL": "",
|
||||
"Default to 389 or 636 if TLS is enabled": "Standardmäßig auf 389 oder 636 setzen, wenn TLS aktiviert ist",
|
||||
"Default to ALL": "Standardmäßig auf ALLE setzen",
|
||||
"Default User Role": "Standardbenutzerrolle",
|
||||
"Delete": "Löschen",
|
||||
"Delete a model": "Ein Modell löschen",
|
||||
"Delete All Chats": "Alle Unterhaltungen löschen",
|
||||
"Delete All Models": "",
|
||||
"Delete All Models": "Alle Modelle löschen",
|
||||
"Delete chat": "Unterhaltung löschen",
|
||||
"Delete Chat": "Unterhaltung löschen",
|
||||
"Delete chat?": "Unterhaltung löschen?",
|
||||
@@ -236,8 +236,8 @@
|
||||
"Delete User": "Benutzer löschen",
|
||||
"Deleted {{deleteModelTag}}": "{{deleteModelTag}} gelöscht",
|
||||
"Deleted {{name}}": "{{name}} gelöscht",
|
||||
"Deleted User": "",
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Deleted User": "Benutzer gelöscht",
|
||||
"Describe your knowledge base and objectives": "Beschreibe deinen Wissensspeicher und deine Ziele",
|
||||
"Description": "Beschreibung",
|
||||
"Didn't fully follow instructions": "Nicht genau den Answeisungen gefolgt",
|
||||
"Disabled": "Deaktiviert",
|
||||
@@ -245,17 +245,17 @@
|
||||
"Discover a model": "Entdecken Sie weitere Modelle",
|
||||
"Discover a prompt": "Entdecken Sie weitere Prompts",
|
||||
"Discover a tool": "Entdecken Sie weitere Werkzeuge",
|
||||
"Discover wonders": "",
|
||||
"Discover wonders": "Entdecken Sie Wunder",
|
||||
"Discover, download, and explore custom functions": "Entdecken und beziehen Sie benutzerdefinierte Funktionen",
|
||||
"Discover, download, and explore custom prompts": "Entdecken und beziehen Sie benutzerdefinierte Prompts",
|
||||
"Discover, download, and explore custom tools": "Entdecken und beziehen Sie benutzerdefinierte Werkzeuge",
|
||||
"Discover, download, and explore model presets": "Entdecken und beziehen Sie benutzerdefinierte Modellvorlagen",
|
||||
"Dismissible": "ausblendbar",
|
||||
"Display": "",
|
||||
"Display": "Anzeigen",
|
||||
"Display Emoji in Call": "Emojis im Anruf anzeigen",
|
||||
"Display the username instead of You in the Chat": "Soll \"Sie\" durch Ihren Benutzernamen ersetzt werden?",
|
||||
"Displays citations in the response": "",
|
||||
"Dive into knowledge": "",
|
||||
"Displays citations in the response": "Zeigt Zitate in der Antwort an",
|
||||
"Dive into knowledge": "Tauchen Sie in das Wissen ein",
|
||||
"Do not install functions from sources you do not fully trust.": "Installieren Sie keine Funktionen aus Quellen, denen Sie nicht vollständig vertrauen.",
|
||||
"Do not install tools from sources you do not fully trust.": "Installieren Sie keine Werkzeuge aus Quellen, denen Sie nicht vollständig vertrauen.",
|
||||
"Document": "Dokument",
|
||||
@@ -270,39 +270,39 @@
|
||||
"Download": "Exportieren",
|
||||
"Download canceled": "Exportierung abgebrochen",
|
||||
"Download Database": "Datenbank exportieren",
|
||||
"Drag and drop a file to upload or select a file to view": "",
|
||||
"Drag and drop a file to upload or select a file to view": "Ziehen Sie eine Datei zum Hochladen oder wählen Sie eine Datei zum Anzeigen aus",
|
||||
"Draw": "Zeichnen",
|
||||
"Drop any files here to add to the conversation": "Ziehen Sie beliebige Dateien hierher, um sie der Unterhaltung hinzuzufügen",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "z. B. '30s','10m'. Gültige Zeiteinheiten sind 's', 'm', 'h'.",
|
||||
"e.g. A filter to remove profanity from text": "",
|
||||
"e.g. My Filter": "",
|
||||
"e.g. My Tools": "",
|
||||
"e.g. my_filter": "",
|
||||
"e.g. my_tools": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g. A filter to remove profanity from text": "z. B. Ein Filter, um Schimpfwörter aus Text zu entfernen",
|
||||
"e.g. My Filter": "z. B. Mein Filter",
|
||||
"e.g. My Tools": "z. B. Meine Werkzeuge",
|
||||
"e.g. my_filter": "z. B. mein_filter",
|
||||
"e.g. my_tools": "z. B. meine_werkzeuge",
|
||||
"e.g. Tools for performing various operations": "z. B. Werkzeuge für verschiedene Operationen",
|
||||
"Edit": "Bearbeiten",
|
||||
"Edit Arena Model": "Arena-Modell bearbeiten",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Connection": "Verbindung bearbeiten",
|
||||
"Edit Default Permissions": "Standardberechtigungen bearbeiten",
|
||||
"Edit Memory": "Erinnerungen bearbeiten",
|
||||
"Edit User": "Benutzer bearbeiten",
|
||||
"Edit User Group": "",
|
||||
"Edit User Group": "Benutzergruppe bearbeiten",
|
||||
"ElevenLabs": "ElevenLabs",
|
||||
"Email": "E-Mail",
|
||||
"Embark on adventures": "",
|
||||
"Embark on adventures": "Abenteuer erleben",
|
||||
"Embedding Batch Size": "Embedding-Stapelgröße",
|
||||
"Embedding Model": "Embedding-Modell",
|
||||
"Embedding Model Engine": "Embedding-Modell-Engine",
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Embedding-Modell auf \"{{embedding_model}}\" gesetzt",
|
||||
"Enable API Key Auth": "",
|
||||
"Enable API Key Auth": "API-Schlüssel-Authentifizierung aktivieren",
|
||||
"Enable Community Sharing": "Community-Freigabe aktivieren",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Aktiviere Memory Locking (mlock), um zu verhindern, dass Modelldaten aus dem RAM ausgelagert werden. Diese Option sperrt die Arbeitsseiten des Modells im RAM, um sicherzustellen, dass sie nicht auf die Festplatte ausgelagert werden. Dies kann die Leistung verbessern, indem Page Faults vermieden und ein schneller Datenzugriff sichergestellt werden.",
|
||||
"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "Aktiviere Memory Mapping (mmap), um Modelldaten zu laden. Diese Option ermöglicht es dem System, den Festplattenspeicher als Erweiterung des RAM zu verwenden, indem Festplattendateien so behandelt werden, als ob sie im RAM wären. Dies kann die Modellleistung verbessern, indem ein schnellerer Datenzugriff ermöglicht wird. Es kann jedoch nicht auf allen Systemen korrekt funktionieren und einen erheblichen Teil des Festplattenspeichers beanspruchen.",
|
||||
"Enable Message Rating": "Nachrichtenbewertung aktivieren",
|
||||
"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
|
||||
"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Mirostat Sampling zur Steuerung der Perplexität aktivieren. (Standard: 0, 0 = Deaktiviert, 1 = Mirostat, 2 = Mirostat 2.0)",
|
||||
"Enable New Sign Ups": "Registrierung erlauben",
|
||||
"Enable Retrieval Query Generation": "",
|
||||
"Enable Tags Generation": "",
|
||||
"Enable Retrieval Query Generation": "Abfragegenerierung aktivieren",
|
||||
"Enable Tags Generation": "Tag-Generierung aktivieren",
|
||||
"Enable Web Search": "Websuche aktivieren",
|
||||
"Enable Web Search Query Generation": "Websuchanfragen-Generierung aktivieren",
|
||||
"Enabled": "Aktiviert",
|
||||
@@ -311,12 +311,12 @@
|
||||
"Enter {{role}} message here": "Geben Sie die {{role}}-Nachricht hier ein",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Geben Sie ein Detail über sich selbst ein, das Ihre Sprachmodelle (LLMs) sich merken sollen",
|
||||
"Enter api auth string (e.g. username:password)": "Geben Sie die API-Authentifizierungszeichenfolge ein (z. B. Benutzername:Passwort)",
|
||||
"Enter Application DN": "",
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Application DN": "Geben Sie die Anwendungs-DN ein",
|
||||
"Enter Application DN Password": "Geben Sie das Anwendungs-DN-Passwort ein",
|
||||
"Enter Bing Search V7 Endpoint": "Geben Sie den Bing Search V7-Endpunkt ein",
|
||||
"Enter Bing Search V7 Subscription Key": "Geben Sie den Bing Search V7-Abonnement-Schlüssel ein",
|
||||
"Enter Brave Search API Key": "Geben Sie den Brave Search API-Schlüssel ein",
|
||||
"Enter certificate path": "",
|
||||
"Enter certificate path": "Geben Sie den Zertifikatpfad ein",
|
||||
"Enter CFG Scale (e.g. 7.0)": "Geben Sie die CFG-Skala ein (z. B. 7.0)",
|
||||
"Enter Chunk Overlap": "Geben Sie die Blocküberlappung ein",
|
||||
"Enter Chunk Size": "Geben Sie die Blockgröße ein",
|
||||
@@ -325,10 +325,11 @@
|
||||
"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",
|
||||
"Enter Image Size (e.g. 512x512)": "Geben Sie die Bildgröße ein (z. B. 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jina API Key": "Geben Sie den Jina-API-Schlüssel ein",
|
||||
"Enter language codes": "Geben Sie die Sprachcodes ein",
|
||||
"Enter Model ID": "Geben Sie die Modell-ID ein",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Gebn Sie den Model-Tag ein",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Geben Sie den Model-Tag ein",
|
||||
"Enter Mojeek Search API Key": "Geben Sie den Mojeek Search API-Schlüssel ein",
|
||||
"Enter Number of Steps (e.g. 50)": "Geben Sie die Anzahl an Schritten ein (z. B. 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "Geben Sie den Sampler ein (z. B. Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Geben Sie den Scheduler ein (z. B. Karras)",
|
||||
@@ -336,13 +337,13 @@
|
||||
"Enter SearchApi API Key": "Geben Sie den SearchApi-API-Schlüssel ein",
|
||||
"Enter SearchApi Engine": "Geben Sie die SearchApi-Engine ein",
|
||||
"Enter Searxng Query URL": "Geben Sie die Searxng-Abfrage-URL ein",
|
||||
"Enter Seed": "",
|
||||
"Enter Seed": "Geben Sie den Seed ein",
|
||||
"Enter Serper API Key": "Geben Sie den Serper-API-Schlüssel ein",
|
||||
"Enter Serply API Key": "Geben Sie den",
|
||||
"Enter Serpstack API Key": "Geben Sie den Serpstack-API-Schlüssel ein",
|
||||
"Enter server host": "",
|
||||
"Enter server label": "",
|
||||
"Enter server port": "",
|
||||
"Enter server host": "Geben Sie den Server-Host ein",
|
||||
"Enter server label": "Geben Sie das Server-Label ein",
|
||||
"Enter server port": "Geben Sie den Server-Port ein",
|
||||
"Enter stop sequence": "Stop-Sequenz eingeben",
|
||||
"Enter system prompt": "Systemprompt eingeben",
|
||||
"Enter Tavily API Key": "Geben Sie den Tavily-API-Schlüssel ein",
|
||||
@@ -355,28 +356,28 @@
|
||||
"Enter your message": "Geben Sie Ihre Nachricht ein",
|
||||
"Enter Your Password": "Geben Sie Ihr Passwort ein",
|
||||
"Enter Your Role": "Geben Sie Ihre Rolle ein",
|
||||
"Enter Your Username": "",
|
||||
"Enter Your Username": "Geben Sie Ihren Benutzernamen ein",
|
||||
"Error": "Fehler",
|
||||
"ERROR": "FEHLER",
|
||||
"Evaluations": "Evaluationen",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Beispiel: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Beispiel: ALL",
|
||||
"Example: ou=users,dc=foo,dc=example": "Beispiel: ou=users,dc=foo,dc=example",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "Beispiel: sAMAccountName or uid or userPrincipalName",
|
||||
"Exclude": "Ausschließen",
|
||||
"Experimental": "Experimentell",
|
||||
"Explore the cosmos": "",
|
||||
"Explore the cosmos": "Erforschen Sie das Universum",
|
||||
"Export": "Exportieren",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Archived Chats": "Alle archivierten Unterhaltungen exportieren",
|
||||
"Export All Chats (All Users)": "Alle Unterhaltungen exportieren (alle Benutzer)",
|
||||
"Export chat (.json)": "Unterhaltung exportieren (.json)",
|
||||
"Export Chats": "Unterhaltungen exportieren",
|
||||
"Export Config to JSON File": "Exportiere Konfiguration als JSON-Datei",
|
||||
"Export Functions": "Funktionen exportieren",
|
||||
"Export Models": "Modelle exportieren",
|
||||
"Export Presets": "",
|
||||
"Export Presets": "Voreinstellungen exportieren",
|
||||
"Export Prompts": "Prompts exportieren",
|
||||
"Export to CSV": "",
|
||||
"Export to CSV": "Als CSV exportieren",
|
||||
"Export Tools": "Werkzeuge exportieren",
|
||||
"External Models": "Externe Modelle",
|
||||
"Failed to add file.": "Fehler beim Hinzufügen der Datei.",
|
||||
@@ -386,7 +387,7 @@
|
||||
"Failed to upload file.": "Fehler beim Hochladen der Datei.",
|
||||
"February": "Februar",
|
||||
"Feedback History": "Feedback-Verlauf",
|
||||
"Feedbacks": "",
|
||||
"Feedbacks": "Feedbacks",
|
||||
"Feel free to add specific details": "Fühlen Sie sich frei, spezifische Details hinzuzufügen",
|
||||
"File": "Datei",
|
||||
"File added successfully.": "Datei erfolgreich hinzugefügt.",
|
||||
@@ -407,18 +408,18 @@
|
||||
"Folder name cannot be empty.": "Ordnername darf nicht leer sein.",
|
||||
"Folder name updated successfully": "Ordnername erfolgreich aktualisiert",
|
||||
"Followed instructions perfectly": "Anweisungen perfekt befolgt",
|
||||
"Forge new paths": "",
|
||||
"Forge new paths": "Neue Wege beschreiten",
|
||||
"Form": "Formular",
|
||||
"Format your variables using brackets like this:": "Formatieren Sie Ihre Variablen mit Klammern, wie hier:",
|
||||
"Frequency Penalty": "Frequenzstrafe",
|
||||
"Function": "Funktion",
|
||||
"Function created successfully": "Funktion erfolgreich erstellt",
|
||||
"Function deleted successfully": "Funktion erfolgreich gelöscht",
|
||||
"Function Description": "",
|
||||
"Function ID": "",
|
||||
"Function Description": "Funktionsbeschreibung",
|
||||
"Function ID": "Funktions-ID",
|
||||
"Function is now globally disabled": "Die Funktion ist jetzt global deaktiviert",
|
||||
"Function is now globally enabled": "Die Funktion ist jetzt global aktiviert",
|
||||
"Function Name": "",
|
||||
"Function Name": "Funktionsname",
|
||||
"Function updated successfully": "Funktion erfolgreich aktualisiert",
|
||||
"Functions": "Funktionen",
|
||||
"Functions allow arbitrary code execution": "Funktionen ermöglichen die Ausführung beliebigen Codes",
|
||||
@@ -429,34 +430,34 @@
|
||||
"Generate Image": "Bild erzeugen",
|
||||
"Generating search query": "Suchanfrage wird erstellt",
|
||||
"Generation Info": "Generierungsinformationen",
|
||||
"Get started": "",
|
||||
"Get started with {{WEBUI_NAME}}": "",
|
||||
"Get started": "Loslegen",
|
||||
"Get started with {{WEBUI_NAME}}": "Loslegen mit {{WEBUI_NAME}}",
|
||||
"Global": "Global",
|
||||
"Good Response": "Gute Antwort",
|
||||
"Google PSE API Key": "Google PSE-API-Schlüssel",
|
||||
"Google PSE Engine Id": "Google PSE-Engine-ID",
|
||||
"Group created successfully": "",
|
||||
"Group deleted successfully": "",
|
||||
"Group Description": "",
|
||||
"Group Name": "",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"Group created successfully": "Gruppe erfolgreich erstellt",
|
||||
"Group deleted successfully": "Gruppe erfolgreich gelöscht",
|
||||
"Group Description": "Gruppenbeschreibung",
|
||||
"Group Name": "Gruppenname",
|
||||
"Group updated successfully": "Gruppe erfolgreich aktualisiert",
|
||||
"Groups": "Gruppen",
|
||||
"h:mm a": "h:mm a",
|
||||
"Haptic Feedback": "Haptisches Feedback",
|
||||
"has no conversations.": "hat keine Unterhaltungen.",
|
||||
"Hello, {{name}}": "Hallo, {{name}}",
|
||||
"Help": "Hilfe",
|
||||
"Help us create the best community leaderboard by sharing your feedback history!": "Helfen Sie uns, die beste Community-Bestenliste zu erstellen, indem Sie Ihren Feedback-Verlauf teilen!",
|
||||
"Hex Color": "",
|
||||
"Hex Color - Leave empty for default color": "",
|
||||
"Hex Color": "Hex-Farbe",
|
||||
"Hex Color - Leave empty for default color": "Hex-Farbe - Leer lassen für Standardfarbe",
|
||||
"Hide": "Verbergen",
|
||||
"Host": "",
|
||||
"Host": "Host",
|
||||
"How can I help you today?": "Wie kann ich Ihnen heute helfen?",
|
||||
"How would you rate this response?": "",
|
||||
"How would you rate this response?": "Wie würden Sie diese Antwort bewerten?",
|
||||
"Hybrid Search": "Hybride Suche",
|
||||
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Ich bestätige, dass ich gelesen habe und die Auswirkungen meiner Aktion verstehe. Mir sind die Risiken bewusst, die mit der Ausführung beliebigen Codes verbunden sind, und ich habe die Vertrauenswürdigkeit der Quelle überprüft.",
|
||||
"ID": "ID",
|
||||
"Ignite curiosity": "",
|
||||
"Ignite curiosity": "Neugier entfachen",
|
||||
"Image Generation (Experimental)": "Bildgenerierung (experimentell)",
|
||||
"Image Generation Engine": "Bildgenerierungs-Engine",
|
||||
"Image Settings": "Bildeinstellungen",
|
||||
@@ -465,13 +466,13 @@
|
||||
"Import Config from JSON File": "Konfiguration aus JSON-Datei importieren",
|
||||
"Import Functions": "Funktionen importieren",
|
||||
"Import Models": "Modelle importieren",
|
||||
"Import Presets": "",
|
||||
"Import Presets": "Voreinstellungen importieren",
|
||||
"Import Prompts": "Prompts importieren",
|
||||
"Import Tools": "Werkzeuge importieren",
|
||||
"Include": "Einschließen",
|
||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Fügen Sie beim Ausführen von stable-diffusion-webui die Option `--api-auth` hinzu",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "Fügen Sie beim Ausführen von stable-diffusion-webui die Option `--api` hinzu",
|
||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
|
||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "Beeinflusst, wie schnell der Algorithmus auf Feedback aus dem generierten Text reagiert. Eine niedrigere Lernrate führt zu langsameren Anpassungen, während eine höhere Lernrate den Algorithmus reaktionsschneller macht. (Standard: 0.1)",
|
||||
"Info": "Info",
|
||||
"Input commands": "Eingabebefehle",
|
||||
"Install from Github URL": "Installiere von der Github-URL",
|
||||
@@ -480,7 +481,7 @@
|
||||
"Invalid file format.": "Ungültiges Dateiformat.",
|
||||
"Invalid Tag": "Ungültiger Tag",
|
||||
"January": "Januar",
|
||||
"Jina API Key": "",
|
||||
"Jina API Key": "Jina-API-Schlüssel",
|
||||
"join our Discord for help.": "Treten Sie unserem Discord bei, um Hilfe zu erhalten.",
|
||||
"JSON": "JSON",
|
||||
"JSON Preview": "JSON-Vorschau",
|
||||
@@ -489,31 +490,31 @@
|
||||
"JWT Expiration": "JWT-Ablauf",
|
||||
"JWT Token": "JWT-Token",
|
||||
"Keep Alive": "Verbindung aufrechterhalten",
|
||||
"Key": "",
|
||||
"Key": "Schlüssel",
|
||||
"Keyboard shortcuts": "Tastenkombinationen",
|
||||
"Knowledge": "Wissen",
|
||||
"Knowledge Access": "",
|
||||
"Knowledge Access": "Wissenszugriff",
|
||||
"Knowledge created successfully.": "Wissen erfolgreich erstellt.",
|
||||
"Knowledge deleted successfully.": "Wissen erfolgreich gelöscht.",
|
||||
"Knowledge reset successfully.": "Wissen erfolgreich zurückgesetzt.",
|
||||
"Knowledge updated successfully": "Wissen erfolgreich aktualisiert",
|
||||
"Label": "",
|
||||
"Label": "Label",
|
||||
"Landing Page Mode": "Startseitenmodus",
|
||||
"Language": "Sprache",
|
||||
"Last Active": "Zuletzt aktiv",
|
||||
"Last Modified": "Zuletzt bearbeitet",
|
||||
"LDAP": "",
|
||||
"LDAP server updated": "",
|
||||
"LDAP": "LDAP",
|
||||
"LDAP server updated": "LDAP-Server aktualisiert",
|
||||
"Leaderboard": "Bestenliste",
|
||||
"Leave empty for unlimited": "Leer lassen für unbegrenzt",
|
||||
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "Leer lassen, um alle Modelle vom \"{{URL}}/api/tags\"-Endpunkt einzuschließen",
|
||||
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "Leer lassen, um alle Modelle vom \"{{URL}}/models\"-Endpunkt einzuschließen",
|
||||
"Leave empty to include all models or select specific models": "Leer lassen, um alle Modelle einzuschließen oder spezifische Modelle auszuwählen",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "Leer lassen, um den Standardprompt zu verwenden, oder geben Sie einen benutzerdefinierten Prompt ein",
|
||||
"Light": "Hell",
|
||||
"Listening...": "Höre zu...",
|
||||
"LLMs can make mistakes. Verify important information.": "LLMs können Fehler machen. Überprüfe wichtige Informationen.",
|
||||
"Local": "",
|
||||
"Local": "Lokal",
|
||||
"Local Models": "Lokale Modelle",
|
||||
"Lost": "Verloren",
|
||||
"LTR": "LTR",
|
||||
@@ -522,9 +523,9 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Stellen Sie sicher, dass sie eine workflow.json-Datei im API-Format von ComfyUI exportieren.",
|
||||
"Manage": "Verwalten",
|
||||
"Manage Arena Models": "Arena-Modelle verwalten",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Ollama": "Ollama verwalten",
|
||||
"Manage Ollama API Connections": "Ollama-API-Verbindungen verwalten",
|
||||
"Manage OpenAI API Connections": "OpenAI-API-Verbindungen verwalten",
|
||||
"Manage Pipelines": "Pipelines verwalten",
|
||||
"March": "März",
|
||||
"Max Tokens (num_predict)": "Maximale Tokenanzahl (num_predict)",
|
||||
@@ -558,21 +559,22 @@
|
||||
"Model accepts image inputs": "Modell akzeptiert Bileingaben",
|
||||
"Model created successfully!": "Modell erfolgreich erstellt!",
|
||||
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modell-Dateisystempfad erkannt. Modellkurzname ist für das Update erforderlich, Fortsetzung nicht möglich.",
|
||||
"Model Filtering": "",
|
||||
"Model Filtering": "Modellfilterung",
|
||||
"Model ID": "Modell-ID",
|
||||
"Model IDs": "",
|
||||
"Model IDs": "Modell-IDs",
|
||||
"Model Name": "Modell-Name",
|
||||
"Model not selected": "Modell nicht ausgewählt",
|
||||
"Model Params": "Modell-Params",
|
||||
"Model Permissions": "",
|
||||
"Model Params": "Modell-Parameter",
|
||||
"Model Permissions": "Modellberechtigungen",
|
||||
"Model updated successfully": "Modell erfolgreich aktualisiert",
|
||||
"Modelfile Content": "Modelfile-Inhalt",
|
||||
"Models": "Modelle",
|
||||
"Models Access": "",
|
||||
"Models Access": "Modell-Zugriff",
|
||||
"Mojeek Search API Key": "Mojeek Search API-Schlüssel",
|
||||
"more": "mehr",
|
||||
"More": "Mehr",
|
||||
"Name": "Name",
|
||||
"Name your knowledge base": "",
|
||||
"Name your knowledge base": "Benennen Sie Ihren Wissensspeicher",
|
||||
"New Chat": "Neue Unterhaltung",
|
||||
"New folder": "Neuer Ordner",
|
||||
"New Password": "Neues Passwort",
|
||||
@@ -582,15 +584,15 @@
|
||||
"No feedbacks found": "Kein Feedback gefunden",
|
||||
"No file selected": "Keine Datei ausgewählt",
|
||||
"No files found.": "Keine Dateien gefunden.",
|
||||
"No groups with access, add a group to grant access": "",
|
||||
"No groups with access, add a group to grant access": "Keine Gruppen mit Zugriff, fügen Sie eine Gruppe hinzu, um Zugriff zu gewähren",
|
||||
"No HTML, CSS, or JavaScript content found.": "Keine HTML-, CSS- oder JavaScript-Inhalte gefunden.",
|
||||
"No knowledge found": "Kein Wissen gefunden",
|
||||
"No model IDs": "",
|
||||
"No model IDs": "Keine Modell-IDs",
|
||||
"No models found": "Keine Modelle gefunden",
|
||||
"No results found": "Keine Ergebnisse gefunden",
|
||||
"No search query generated": "Keine Suchanfrage generiert",
|
||||
"No source available": "Keine Quelle verfügbar",
|
||||
"No users were found.": "",
|
||||
"No users were found.": "Keine Benutzer gefunden.",
|
||||
"No valves to update": "Keine Valves zum Aktualisieren",
|
||||
"None": "Nichts",
|
||||
"Not factually correct": "Nicht sachlich korrekt",
|
||||
@@ -609,13 +611,13 @@
|
||||
"Ollama": "Ollama",
|
||||
"Ollama API": "Ollama-API",
|
||||
"Ollama API disabled": "Ollama-API deaktiviert",
|
||||
"Ollama API settings updated": "",
|
||||
"Ollama API settings updated": "Ollama-API-Einstellungen aktualisiert",
|
||||
"Ollama Version": "Ollama-Version",
|
||||
"On": "Ein",
|
||||
"Only alphanumeric characters and hyphens are allowed": "",
|
||||
"Only alphanumeric characters and hyphens are allowed": "Nur alphanumerische Zeichen und Bindestriche sind erlaubt",
|
||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "In der Befehlszeichenfolge sind nur alphanumerische Zeichen und Bindestriche erlaubt.",
|
||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Nur Sammlungen können bearbeitet werden. Erstellen Sie eine neue Wissensbasis, um Dokumente zu bearbeiten/hinzuzufügen.",
|
||||
"Only select users and groups with permission can access": "",
|
||||
"Only select users and groups with permission can access": "Nur ausgewählte Benutzer und Gruppen mit Berechtigung können darauf zugreifen",
|
||||
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Hoppla! Es scheint, dass die URL ungültig ist. Bitte überprüfen Sie diese und versuchen Sie es erneut.",
|
||||
"Oops! There are files still uploading. Please wait for the upload to complete.": "Hoppla! Es werden noch Dateien hochgeladen. Bitte warten Sie, bis der Upload abgeschlossen ist.",
|
||||
"Oops! There was an error in the previous response.": "Hoppla! Es gab einen Fehler in der vorherigen Antwort.",
|
||||
@@ -624,34 +626,34 @@
|
||||
"Open in full screen": "Im Vollbildmodus öffnen",
|
||||
"Open new chat": "Neuen Chat öffnen",
|
||||
"Open WebUI uses faster-whisper internally.": "Open WebUI verwendet intern faster-whisper.",
|
||||
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "",
|
||||
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI verwendet SpeechT5 und CMU Arctic-Sprecher-Embeddings.",
|
||||
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Die installierte Open-WebUI-Version (v{{OPEN_WEBUI_VERSION}}) ist niedriger als die erforderliche Version (v{{REQUIRED_VERSION}})",
|
||||
"OpenAI": "OpenAI",
|
||||
"OpenAI API": "OpenAI-API",
|
||||
"OpenAI API Config": "OpenAI-API-Konfiguration",
|
||||
"OpenAI API Key is required.": "OpenAI-API-Schlüssel erforderlich.",
|
||||
"OpenAI API settings updated": "",
|
||||
"OpenAI API settings updated": "OpenAI-API-Einstellungen aktualisiert",
|
||||
"OpenAI URL/Key required.": "OpenAI-URL/Schlüssel erforderlich.",
|
||||
"or": "oder",
|
||||
"Organize your users": "",
|
||||
"Organize your users": "Organisieren Sie Ihre Benutzer",
|
||||
"Other": "Andere",
|
||||
"OUTPUT": "AUSGABE",
|
||||
"Output format": "Ausgabeformat",
|
||||
"Overview": "Übersicht",
|
||||
"page": "Seite",
|
||||
"Password": "Passwort",
|
||||
"Paste Large Text as File": "",
|
||||
"Paste Large Text as File": "Großen Text als Datei einfügen",
|
||||
"PDF document (.pdf)": "PDF-Dokument (.pdf)",
|
||||
"PDF Extract Images (OCR)": "Text von Bildern aus PDFs extrahieren (OCR)",
|
||||
"pending": "ausstehend",
|
||||
"Permission denied when accessing media devices": "Zugriff auf Mediengeräte verweigert",
|
||||
"Permission denied when accessing microphone": "Zugriff auf das Mikrofon verweigert",
|
||||
"Permission denied when accessing microphone: {{error}}": "Zugriff auf das Mikrofon verweigert: {{error}}",
|
||||
"Permissions": "",
|
||||
"Permissions": "Berechtigungen",
|
||||
"Personalization": "Personalisierung",
|
||||
"Pin": "Anheften",
|
||||
"Pinned": "Angeheftet",
|
||||
"Pioneer insights": "",
|
||||
"Pioneer insights": "Bahnbrechende Erkenntnisse",
|
||||
"Pipeline deleted successfully": "Pipeline erfolgreich gelöscht",
|
||||
"Pipeline downloaded successfully": "Pipeline erfolgreich heruntergeladen",
|
||||
"Pipelines": "Pipelines",
|
||||
@@ -663,23 +665,23 @@
|
||||
"Please enter a prompt": "Bitte geben Sie einen Prompt ein",
|
||||
"Please fill in all fields.": "Bitte füllen Sie alle Felder aus.",
|
||||
"Please select a reason": "Bitte wählen Sie einen Grund aus",
|
||||
"Port": "",
|
||||
"Port": "Port",
|
||||
"Positive attitude": "Positive Einstellung",
|
||||
"Prefix ID": "",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||
"Prefix ID": "Präfix-ID",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix-ID wird verwendet, um Konflikte mit anderen Verbindungen zu vermeiden, indem ein Präfix zu den Modell-IDs hinzugefügt wird - leer lassen, um zu deaktivieren",
|
||||
"Previous 30 days": "Vorherige 30 Tage",
|
||||
"Previous 7 days": "Vorherige 7 Tage",
|
||||
"Profile Image": "Profilbild",
|
||||
"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 created successfully": "Prompt erfolgreich erstellt",
|
||||
"Prompt suggestions": "Prompt-Vorschläge",
|
||||
"Prompt updated successfully": "",
|
||||
"Prompt updated successfully": "Prompt erfolgreich aktualisiert",
|
||||
"Prompts": "Prompts",
|
||||
"Prompts Access": "",
|
||||
"Prompts Access": "Prompt-Zugriff",
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\" von Ollama.com beziehen",
|
||||
"Pull a model from Ollama.com": "Modell von Ollama.com beziehen",
|
||||
"Query Generation Prompt": "",
|
||||
"Query Generation Prompt": "Abfragegenerierungsprompt",
|
||||
"Query Params": "Abfrageparameter",
|
||||
"RAG Template": "RAG-Vorlage",
|
||||
"Rating": "Bewertung",
|
||||
@@ -687,7 +689,7 @@
|
||||
"Read Aloud": "Vorlesen",
|
||||
"Record voice": "Stimme aufnehmen",
|
||||
"Redirecting you to OpenWebUI Community": "Sie werden zur OpenWebUI-Community weitergeleitet",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "Reduziert die Wahrscheinlichkeit, Unsinn zu generieren. Ein höherer Wert (z.B. 100) liefert vielfältigere Antworten, während ein niedrigerer Wert (z.B. 10) konservativer ist. (Standard: 40)",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Beziehen Sie sich auf sich selbst als \"Benutzer\" (z. B. \"Benutzer lernt Spanisch\")",
|
||||
"References from": "Referenzen aus",
|
||||
"Refused when it shouldn't have": "Abgelehnt, obwohl es nicht hätte abgelehnt werden sollen",
|
||||
@@ -726,18 +728,18 @@
|
||||
"Scroll to bottom when switching between branches": "Beim Wechsel zwischen Branches nach unten scrollen",
|
||||
"Search": "Suchen",
|
||||
"Search a model": "Modell suchen",
|
||||
"Search Base": "",
|
||||
"Search Base": "Suchbasis",
|
||||
"Search Chats": "Unterhaltungen durchsuchen...",
|
||||
"Search Collection": "Sammlung durchsuchen",
|
||||
"Search Filters": "",
|
||||
"Search Filters": "Suchfilter",
|
||||
"search for tags": "nach Tags suchen",
|
||||
"Search Functions": "Funktionen durchsuchen...",
|
||||
"Search Knowledge": "Wissen durchsuchen",
|
||||
"Search Models": "Modelle durchsuchen...",
|
||||
"Search options": "",
|
||||
"Search options": "Suchoptionen",
|
||||
"Search Prompts": "Prompts durchsuchen...",
|
||||
"Search Result Count": "Anzahl der Suchergebnisse",
|
||||
"Search the web": "",
|
||||
"Search the web": "Im Web suchen",
|
||||
"Search Tools": "Werkzeuge durchsuchen...",
|
||||
"SearchApi API Key": "SearchApi-API-Schlüssel",
|
||||
"SearchApi Engine": "SearchApi-Engine",
|
||||
@@ -752,7 +754,7 @@
|
||||
"Select a base model": "Wählen Sie ein Basismodell",
|
||||
"Select a engine": "Wählen Sie eine Engine",
|
||||
"Select a function": "Wählen Sie eine Funktion",
|
||||
"Select a group": "",
|
||||
"Select a group": "Wählen Sie eine Gruppe",
|
||||
"Select a model": "Wählen Sie ein Modell",
|
||||
"Select a pipeline": "Wählen Sie eine Pipeline",
|
||||
"Select a pipeline url": "Wählen Sie eine Pipeline-URL",
|
||||
@@ -775,7 +777,7 @@
|
||||
"Set as default": "Als Standard festlegen",
|
||||
"Set CFG Scale": "CFG-Skala festlegen",
|
||||
"Set Default Model": "Standardmodell festlegen",
|
||||
"Set embedding model": "",
|
||||
"Set embedding model": "Einbettungsmodell festlegen",
|
||||
"Set embedding model (e.g. {{model}})": "Einbettungsmodell festlegen (z. B. {{model}})",
|
||||
"Set Image Size": "Bildgröße festlegen",
|
||||
"Set reranking model (e.g. {{model}})": "Rerankingmodell festlegen (z. B. {{model}})",
|
||||
@@ -783,29 +785,29 @@
|
||||
"Set Scheduler": "Scheduler festlegen",
|
||||
"Set Steps": "Schrittgröße festlegen",
|
||||
"Set Task Model": "Aufgabenmodell festlegen",
|
||||
"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
|
||||
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
|
||||
"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "Legt die Anzahl der für die Berechnung verwendeten GPU-Geräte fest. Diese Option steuert, wie viele GPU-Geräte (falls verfügbar) zur Verarbeitung eingehender Anfragen verwendet werden. Eine Erhöhung dieses Wertes kann die Leistung für Modelle, die für GPU-Beschleunigung optimiert sind, erheblich verbessern, kann jedoch auch mehr Strom und GPU-Ressourcen verbrauchen.",
|
||||
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Legt die Anzahl der für die Berechnung verwendeten GPU-Geräte fest. Diese Option steuert, wie viele GPU-Geräte (falls verfügbar) zur Verarbeitung eingehender Anfragen verwendet werden. Eine Erhöhung dieses Wertes kann die Leistung für Modelle, die für GPU-Beschleunigung optimiert sind, erheblich verbessern, kann jedoch auch mehr Strom und GPU-Ressourcen verbrauchen.",
|
||||
"Set Voice": "Stimme festlegen",
|
||||
"Set whisper model": "Whisper-Modell festlegen",
|
||||
"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
|
||||
"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
|
||||
"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
|
||||
"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
|
||||
"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
|
||||
"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "Legt fest, wie weit das Modell zurückblicken soll, um Wiederholungen zu verhindern. (Standard: 64, 0 = deaktiviert, -1 = num_ctx)",
|
||||
"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "Legt fest, wie stark Wiederholungen bestraft werden sollen. Ein höherer Wert (z.B. 1.5) bestraft Wiederholungen stärker, während ein niedrigerer Wert (z.B. 0.9) nachsichtiger ist. (Standard: 1.1)",
|
||||
"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "Legt den Zufallszahlengenerator-Seed für die Generierung fest. Wenn dieser auf eine bestimmte Zahl gesetzt wird, erzeugt das Modell denselben Text für denselben Prompt. (Standard: zufällig)",
|
||||
"Sets the size of the context window used to generate the next token. (Default: 2048)": "Legt die Größe des Kontextfensters fest, das zur Generierung des nächsten Tokens verwendet wird. (Standard: 2048)",
|
||||
"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Legt die zu verwendenden Stoppsequenzen fest. Wenn dieses Muster erkannt wird, stoppt das LLM die Textgenerierung und gibt zurück. Mehrere Stoppmuster können festgelegt werden, indem mehrere separate Stopp-Parameter in einer Modelldatei angegeben werden.",
|
||||
"Settings": "Einstellungen",
|
||||
"Settings saved successfully!": "Einstellungen erfolgreich gespeichert!",
|
||||
"Share": "Teilen",
|
||||
"Share Chat": "Unterhaltung teilen",
|
||||
"Share to OpenWebUI Community": "Mit OpenWebUI Community teilen",
|
||||
"Show": "Anzeigen",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show \"What's New\" modal on login": "\"Was gibt's Neues\"-Modal beim Anmelden anzeigen",
|
||||
"Show Admin Details in Account Pending Overlay": "Admin-Details im Account-Pending-Overlay anzeigen",
|
||||
"Show shortcuts": "Verknüpfungen anzeigen",
|
||||
"Show your support!": "Zeigen Sie Ihre Unterstützung!",
|
||||
"Showcased creativity": "Kreativität gezeigt",
|
||||
"Sign in": "Anmelden",
|
||||
"Sign in to {{WEBUI_NAME}}": "Bei {{WEBUI_NAME}} anmelden",
|
||||
"Sign in to {{WEBUI_NAME}} with LDAP": "",
|
||||
"Sign in to {{WEBUI_NAME}} with LDAP": "Bei {{WEBUI_NAME}} mit LDAP anmelden",
|
||||
"Sign Out": "Abmelden",
|
||||
"Sign up": "Registrieren",
|
||||
"Sign up to {{WEBUI_NAME}}": "Bei {{WEBUI_NAME}} registrieren",
|
||||
@@ -830,7 +832,7 @@
|
||||
"System Instructions": "Systemanweisungen",
|
||||
"System Prompt": "System-Prompt",
|
||||
"Tags Generation Prompt": "Prompt für Tag-Generierung",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "Tail-Free Sampling wird verwendet, um den Einfluss weniger wahrscheinlicher Tokens auf die Ausgabe zu reduzieren. Ein höherer Wert (z.B. 2.0) reduziert den Einfluss stärker, während ein Wert von 1.0 diese Einstellung deaktiviert. (Standard: 1)",
|
||||
"Tap to interrupt": "Zum Unterbrechen tippen",
|
||||
"Tavily API Key": "Tavily-API-Schlüssel",
|
||||
"Tell us more:": "Erzähl uns mehr",
|
||||
@@ -841,30 +843,30 @@
|
||||
"Text-to-Speech Engine": "Text-zu-Sprache-Engine",
|
||||
"Tfs Z": "Tfs Z",
|
||||
"Thanks for your feedback!": "Danke für Ihr Feedback!",
|
||||
"The Application Account DN you bind with for search": "",
|
||||
"The base to search for users": "",
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The Application Account DN you bind with for search": "Der Anwendungs-Konto-DN, mit dem Sie für die Suche binden",
|
||||
"The base to search for users": "Die Basis, in der nach Benutzern gesucht wird",
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "Die Batch-Größe bestimmt, wie viele Textanfragen gleichzeitig verarbeitet werden. Eine größere Batch-Größe kann die Leistung und Geschwindigkeit des Modells erhöhen, erfordert jedoch auch mehr Speicher. (Standard: 512)",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Die Entwickler hinter diesem Plugin sind leidenschaftliche Freiwillige aus der Community. Wenn Sie dieses Plugin hilfreich finden, erwägen Sie bitte, zu seiner Entwicklung beizutragen.",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "Die Bewertungs-Bestenliste basiert auf dem Elo-Bewertungssystem und wird in Echtzeit aktualisiert.",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "Das LDAP-Attribut, das dem Benutzernamen zugeordnet ist, den Benutzer zum Anmelden verwenden.",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "Die Bestenliste befindet sich derzeit in der Beta-Phase, und es ist möglich, dass wir die Bewertungsberechnungen anpassen, während wir den Algorithmus verfeinern.",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Die maximale Dateigröße in MB. Wenn die Dateigröße dieses Limit überschreitet, wird die Datei nicht hochgeladen.",
|
||||
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Die maximale Anzahl von Dateien, die gleichzeitig in der Unterhaltung verwendet werden können. Wenn die Anzahl der Dateien dieses Limit überschreitet, werden die Dateien nicht hochgeladen.",
|
||||
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Die Punktzahl sollte ein Wert zwischen 0,0 (0 %) und 1,0 (100 %) sein.",
|
||||
"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
|
||||
"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "Die Temperatur des Modells. Eine Erhöhung der Temperatur führt dazu, dass das Modell kreativer antwortet. (Standard: 0,8)",
|
||||
"Theme": "Design",
|
||||
"Thinking...": "Denke nach...",
|
||||
"This action cannot be undone. Do you wish to continue?": "Diese Aktion kann nicht rückgängig gemacht werden. Möchten Sie fortfahren?",
|
||||
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Dies stellt sicher, dass Ihre wertvollen Unterhaltungen sicher in Ihrer Backend-Datenbank gespeichert werden. Vielen Dank!",
|
||||
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Dies ist eine experimentelle Funktion, sie funktioniert möglicherweise nicht wie erwartet und kann jederzeit geändert werden.",
|
||||
"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
|
||||
"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated. (Default: 128)": "",
|
||||
"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "Diese Option steuert, wie viele Tokens beim Aktualisieren des Kontexts beibehalten werden. Wenn sie beispielsweise auf 2 gesetzt ist, werden die letzten 2 Tokens des Gesprächskontexts beibehalten. Das Beibehalten des Kontexts kann helfen, die Kontinuität eines Gesprächs aufrechtzuerhalten, kann jedoch die Fähigkeit verringern, auf neue Themen zu reagieren. (Standard: 24)",
|
||||
"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated. (Default: 128)": "Diese Option legt die maximale Anzahl von Tokens fest, die das Modell in seiner Antwort generieren kann. Eine Erhöhung dieses Limits ermöglicht es dem Modell, längere Antworten zu geben, kann jedoch auch die Wahrscheinlichkeit erhöhen, dass unhilfreicher oder irrelevanter Inhalt generiert wird. (Standard: 128)",
|
||||
"This option will delete all existing files in the collection and replace them with newly uploaded files.": "Diese Option löscht alle vorhandenen Dateien in der Sammlung und ersetzt sie durch neu hochgeladene Dateien.",
|
||||
"This response was generated by \"{{model}}\"": "Diese Antwort wurde von \"{{model}}\" generiert",
|
||||
"This will delete": "Dies löscht",
|
||||
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Dies löscht <strong>{{NAME}}</strong> und <strong>alle Inhalte</strong>.",
|
||||
"This will delete all models including custom models": "",
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will delete all models including custom models": "Dies wird alle Modelle einschließlich benutzerdefinierter Modelle löschen",
|
||||
"This will delete all models including custom models and cannot be undone.": "Dies wird alle Modelle einschließlich benutzerdefinierter Modelle löschen und kann nicht rückgängig gemacht werden.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Dadurch wird die Wissensdatenbank zurückgesetzt und alle Dateien synchronisiert. Möchten Sie fortfahren?",
|
||||
"Thorough explanation": "Ausführliche Erklärung",
|
||||
"Tika": "Tika",
|
||||
@@ -876,7 +878,7 @@
|
||||
"Title Auto-Generation": "Unterhaltungstitel automatisch generieren",
|
||||
"Title cannot be an empty string.": "Titel darf nicht leer sein.",
|
||||
"Title Generation Prompt": "Prompt für Titelgenerierung",
|
||||
"TLS": "",
|
||||
"TLS": "TLS",
|
||||
"To access the available model names for downloading,": "Um auf die verfügbaren Modellnamen zuzugreifen,",
|
||||
"To access the GGUF models available for downloading,": "Um auf die verfügbaren GGUF-Modelle zuzugreifen,",
|
||||
"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "Um auf das WebUI zugreifen zu können, wenden Sie sich bitte an einen Administrator. Administratoren können den Benutzerstatus über das Admin-Panel verwalten.",
|
||||
@@ -894,19 +896,19 @@
|
||||
"Too verbose": "Zu ausführlich",
|
||||
"Tool created successfully": "Werkzeug erfolgreich erstellt",
|
||||
"Tool deleted successfully": "Werkzeug erfolgreich gelöscht",
|
||||
"Tool Description": "",
|
||||
"Tool ID": "",
|
||||
"Tool Description": "Werkzeugbeschreibung",
|
||||
"Tool ID": "Werkzeug-ID",
|
||||
"Tool imported successfully": "Werkzeug erfolgreich importiert",
|
||||
"Tool Name": "",
|
||||
"Tool Name": "Werkzeugname",
|
||||
"Tool updated successfully": "Werkzeug erfolgreich aktualisiert",
|
||||
"Tools": "Werkzeuge",
|
||||
"Tools Access": "",
|
||||
"Tools Access": "Werkzeugzugriff",
|
||||
"Tools are a function calling system with arbitrary code execution": "Wekzeuge sind ein Funktionssystem mit beliebiger Codeausführung",
|
||||
"Tools have a function calling system that allows arbitrary code execution": "Werkezuge verfügen über ein Funktionssystem, das die Ausführung beliebigen Codes ermöglicht",
|
||||
"Tools have a function calling system that allows arbitrary code execution.": "Werkzeuge verfügen über ein Funktionssystem, das die Ausführung beliebigen Codes ermöglicht.",
|
||||
"Top K": "Top K",
|
||||
"Top P": "Top P",
|
||||
"Transformers": "",
|
||||
"Transformers": "Transformers",
|
||||
"Trouble accessing Ollama?": "Probleme beim Zugriff auf Ollama?",
|
||||
"TTS Model": "TTS-Modell",
|
||||
"TTS Settings": "TTS-Einstellungen",
|
||||
@@ -915,12 +917,12 @@
|
||||
"Type Hugging Face Resolve (Download) URL": "Geben Sie die Hugging Face Resolve-URL ein",
|
||||
"Uh-oh! There was an issue connecting to {{provider}}.": "Ups! Es gab ein Problem bei der Verbindung mit {{provider}}.",
|
||||
"UI": "Oberfläche",
|
||||
"Unarchive All": "",
|
||||
"Unarchive All Archived Chats": "",
|
||||
"Unarchive Chat": "",
|
||||
"Unlock mysteries": "",
|
||||
"Unarchive All": "Alle wiederherstellen",
|
||||
"Unarchive All Archived Chats": "Alle archivierten Unterhaltungen wiederherstellen",
|
||||
"Unarchive Chat": "Unterhaltung wiederherstellen",
|
||||
"Unlock mysteries": "Geheimnisse entsperren",
|
||||
"Unpin": "Lösen",
|
||||
"Unravel secrets": "",
|
||||
"Unravel secrets": "Geheimnisse lüften",
|
||||
"Untagged": "Ungetaggt",
|
||||
"Update": "Aktualisieren",
|
||||
"Update and Copy Link": "Aktualisieren und Link kopieren",
|
||||
@@ -936,18 +938,18 @@
|
||||
"Upload Files": "Datei(en) hochladen",
|
||||
"Upload Pipeline": "Pipeline hochladen",
|
||||
"Upload Progress": "Hochladefortschritt",
|
||||
"URL": "",
|
||||
"URL": "URL",
|
||||
"URL Mode": "URL-Modus",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Nutzen Sie '#' in der Prompt-Eingabe, um Ihr Wissen zu laden und einzuschließen.",
|
||||
"Use Gravatar": "Gravatar verwenden",
|
||||
"Use groups to group your users and assign permissions.": "",
|
||||
"Use groups to group your users and assign permissions.": "Nutzen Sie Gruppen, um Ihre Benutzer zu gruppieren und Berechtigungen zuzuweisen.",
|
||||
"Use Initials": "Initialen verwenden",
|
||||
"use_mlock (Ollama)": "use_mlock (Ollama)",
|
||||
"use_mmap (Ollama)": "use_mmap (Ollama)",
|
||||
"user": "Benutzer",
|
||||
"User": "Benutzer",
|
||||
"User location successfully retrieved.": "Benutzerstandort erfolgreich ermittelt.",
|
||||
"Username": "",
|
||||
"Username": "Benutzername",
|
||||
"Users": "Benutzer",
|
||||
"Using the default arena model with all models. Click the plus button to add custom models.": "Verwendung des Standard-Arena-Modells mit allen Modellen. Klicken Sie auf die Plus-Schaltfläche, um benutzerdefinierte Modelle hinzuzufügen.",
|
||||
"Utilize": "Verwende",
|
||||
@@ -959,12 +961,12 @@
|
||||
"variable to have them replaced with clipboard content.": "Variable, um den Inhalt der Zwischenablage beim Nutzen des Prompts zu ersetzen.",
|
||||
"Version": "Version",
|
||||
"Version {{selectedVersion}} of {{totalVersions}}": "Version {{selectedVersion}} von {{totalVersions}}",
|
||||
"Visibility": "",
|
||||
"Visibility": "Sichtbarkeit",
|
||||
"Voice": "Stimme",
|
||||
"Voice Input": "Spracheingabe",
|
||||
"Warning": "Warnung",
|
||||
"Warning:": "Warnung:",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Warnung: Wenn Sie dies aktivieren, können Benutzer beliebigen Code auf dem Server hochladen.",
|
||||
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Warnung: Wenn Sie das Einbettungsmodell aktualisieren oder ändern, müssen Sie alle Dokumente erneut importieren.",
|
||||
"Web": "Web",
|
||||
"Web API": "Web-API",
|
||||
@@ -973,30 +975,30 @@
|
||||
"Web Search Engine": "Suchmaschine",
|
||||
"Webhook URL": "Webhook URL",
|
||||
"WebUI Settings": "WebUI-Einstellungen",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "",
|
||||
"What are you trying to achieve?": "",
|
||||
"What are you working on?": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI wird Anfragen an \"{{url}}/api/chat\" senden",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI wird Anfragen an \"{{url}}/chat/completions\" senden",
|
||||
"What are you trying to achieve?": "Was versuchen Sie zu erreichen?",
|
||||
"What are you working on?": "Woran arbeiten Sie?",
|
||||
"What’s New in": "Neuigkeiten von",
|
||||
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
|
||||
"wherever you are": "",
|
||||
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Wenn aktiviert, antwortet das Modell in Echtzeit auf jede Chat-Nachricht und generiert eine Antwort, sobald der Benutzer eine Nachricht sendet. Dieser Modus ist nützlich für Live-Chat-Anwendungen, kann jedoch die Leistung auf langsamerer Hardware beeinträchtigen.",
|
||||
"wherever you are": "wo immer Sie sind",
|
||||
"Whisper (Local)": "Whisper (lokal)",
|
||||
"Why?": "",
|
||||
"Why?": "Warum?",
|
||||
"Widescreen Mode": "Breitbildmodus",
|
||||
"Won": "Gewonnen",
|
||||
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
|
||||
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "Funktioniert zusammen mit top-k. Ein höherer Wert (z.B. 0,95) führt zu vielfältigerem Text, während ein niedrigerer Wert (z.B. 0,5) fokussierteren und konservativeren Text erzeugt. (Standard: 0,9)",
|
||||
"Workspace": "Arbeitsbereich",
|
||||
"Workspace Permissions": "",
|
||||
"Workspace Permissions": "Arbeitsbereichsberechtigungen",
|
||||
"Write a prompt suggestion (e.g. Who are you?)": "Schreiben Sie einen Promptvorschlag (z. B. Wer sind Sie?)",
|
||||
"Write a summary in 50 words that summarizes [topic or keyword].": "Schreibe eine kurze Zusammenfassung in 50 Wörtern, die [Thema oder Schlüsselwort] zusammenfasst.",
|
||||
"Write something...": "Schreiben Sie etwas...",
|
||||
"Write your model template content here": "",
|
||||
"Write your model template content here": "Schreiben Sie hier Ihren Modellvorlageninhalt",
|
||||
"Yesterday": "Gestern",
|
||||
"You": "Sie",
|
||||
"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Sie können nur mit maximal {{maxCount}} Datei(en) gleichzeitig chatten.",
|
||||
"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Personalisieren Sie Interaktionen mit LLMs, indem Sie über die Schaltfläche \"Verwalten\" Erinnerungen hinzufügen.",
|
||||
"You cannot upload an empty file.": "Sie können keine leere Datei hochladen.",
|
||||
"You do not have permission to upload files.": "",
|
||||
"You do not have permission to upload files.": "Sie haben keine Berechtigung zum Hochladen von Dateien.",
|
||||
"You have no archived conversations.": "Du hast keine archivierten Unterhaltungen.",
|
||||
"You have shared this chat": "Sie haben diese Unterhaltung geteilt",
|
||||
"You're a helpful assistant.": "Du bist ein hilfreicher Assistent.",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "",
|
||||
"Enter Model ID": "",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Enter model doge tag (e.g. {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Enter Number of Steps (e.g. 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "Modelfile Content",
|
||||
"Models": "Wowdels",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "",
|
||||
"Name": "Name",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "",
|
||||
"Enter Model ID": "",
|
||||
"Enter model tag (e.g. {{modelTag}})": "",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "",
|
||||
"Models": "",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "",
|
||||
"Name": "",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "",
|
||||
"Enter Model ID": "",
|
||||
"Enter model tag (e.g. {{modelTag}})": "",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "",
|
||||
"Models": "",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "",
|
||||
"Name": "",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "Ingrese códigos de idioma",
|
||||
"Enter Model ID": "Ingresa el ID del modelo",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Ingrese la etiqueta del modelo (p.ej. {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Ingrese el número de pasos (p.ej., 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "Ingrese el sampler (p.ej., Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Ingrese el planificador (p.ej., Karras)",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "Contenido del Modelfile",
|
||||
"Models": "Modelos",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "Más",
|
||||
"Name": "Nombre",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "کد زبان را وارد کنید",
|
||||
"Enter Model ID": "",
|
||||
"Enter model tag (e.g. {{modelTag}})": "تگ مدل را وارد کنید (مثلا {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "تعداد گام ها را وارد کنید (مثال: 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "محتویات فایل مدل",
|
||||
"Models": "مدل\u200cها",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "بیشتر",
|
||||
"Name": "نام",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "Syötä kielikoodit",
|
||||
"Enter Model ID": "",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Syötä mallitagi (esim. {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Syötä askelien määrä (esim. 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "Mallitiedoston sisältö",
|
||||
"Models": "Mallit",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "Lisää",
|
||||
"Name": "Nimi",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "Entrez les codes de langue",
|
||||
"Enter Model ID": "",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Entrez l'étiquette du modèle (par ex. {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Entrez le nombre de pas (par ex. 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "Contenu du Fichier de Modèle",
|
||||
"Models": "Modèles",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "Plus de",
|
||||
"Name": "Nom",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "Entrez les codes de langue",
|
||||
"Enter Model ID": "Entrez l'ID du modèle",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Entrez le tag du modèle (par ex. {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Entrez le nombre d'étapes (par ex. 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "Entrez le sampler (par ex. Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Entrez le planificateur (par ex. Karras)",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "Contenu du Fichier de Modèle",
|
||||
"Models": "Modèles",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "plus",
|
||||
"More": "Plus",
|
||||
"Name": "Nom d'utilisateur",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "הזן קודי שפה",
|
||||
"Enter Model ID": "",
|
||||
"Enter model tag (e.g. {{modelTag}})": "הזן תג מודל (למשל {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "הזן מספר שלבים (למשל 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "תוכן קובץ מודל",
|
||||
"Models": "מודלים",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "עוד",
|
||||
"Name": "שם",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "भाषा कोड दर्ज करें",
|
||||
"Enter Model ID": "",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Model tag दर्ज करें (उदा. {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "चरणों की संख्या दर्ज करें (उदा. 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "मॉडल फ़ाइल सामग्री",
|
||||
"Models": "सभी मॉडल",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "और..",
|
||||
"Name": "नाम",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "Unesite kodove jezika",
|
||||
"Enter Model ID": "",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Unesite oznaku modela (npr. {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Unesite broj koraka (npr. 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "Sadržaj datoteke modela",
|
||||
"Models": "Modeli",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "Više",
|
||||
"Name": "Ime",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "Add meg a nyelvi kódokat",
|
||||
"Enter Model ID": "Add meg a modell azonosítót",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Add meg a modell címkét (pl. {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Add meg a lépések számát (pl. 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "Add meg a mintavételezőt (pl. Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Add meg az ütemezőt (pl. Karras)",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "Modellfájl tartalom",
|
||||
"Models": "Modellek",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "több",
|
||||
"More": "Több",
|
||||
"Name": "Név",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "Masukkan kode bahasa",
|
||||
"Enter Model ID": "",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Masukkan tag model (misalnya {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Masukkan Jumlah Langkah (mis. 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "Konten File Model",
|
||||
"Models": "Model",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "Lainnya",
|
||||
"Name": "Nama",
|
||||
|
||||
@@ -11,33 +11,33 @@
|
||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Úsáidtear samhail tasc agus tascanna á ndéanamh agat mar theidil a ghiniúint do chomhráite agus ceisteanna cuardaigh gréasáin",
|
||||
"a user": "úsáideoir",
|
||||
"About": "Maidir",
|
||||
"Access": "",
|
||||
"Access Control": "",
|
||||
"Accessible to all users": "",
|
||||
"Access": "Rochtain",
|
||||
"Access Control": "Rialaithe Rochtana",
|
||||
"Accessible to all users": "Inrochtana do gach úsáideoir",
|
||||
"Account": "Cuntas",
|
||||
"Account Activation Pending": "Gníomhachtaithe Cuntas",
|
||||
"Accurate information": "Faisnéis chruinn",
|
||||
"Actions": "Gníomhartha",
|
||||
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
|
||||
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Gníomhachtaigh an t-ordú seo trí \"/{{COMMAND}}\" a chlóscríobh chun ionchur comhrá a dhéanamh.",
|
||||
"Active Users": "Úsáideoirí Gníomhacha",
|
||||
"Add": "Cuir",
|
||||
"Add a model ID": "",
|
||||
"Add a model ID": "Cuir ID samhail leis",
|
||||
"Add a short description about what this model does": "Cuir cur síos gairid leis faoin méid a dhéanann an tsamhail seo",
|
||||
"Add a tag": "Cuir clib leis",
|
||||
"Add Arena Model": "Cuir Múnla Arena leis",
|
||||
"Add Connection": "",
|
||||
"Add Connection": "Cuir Ceangal leis",
|
||||
"Add Content": "Cuir Ábhar leis",
|
||||
"Add content here": "Cuir ábhar anseo",
|
||||
"Add custom prompt": "Cuir pras saincheaptha leis",
|
||||
"Add Files": "Cuir Comhaid",
|
||||
"Add Group": "",
|
||||
"Add Group": "Cuir Grúpa leis",
|
||||
"Add Memory": "Cuir Cuimhne",
|
||||
"Add Model": "Cuir múnla leis",
|
||||
"Add Tag": "Cuir Clib leis",
|
||||
"Add Tags": "Cuir Clibeanna leis",
|
||||
"Add text content": "Cuir ábhar téacs leis",
|
||||
"Add User": "Cuir Úsáideoir leis",
|
||||
"Add User Group": "",
|
||||
"Add User Group": "Cuir Grúpa Úsáideoirí leis",
|
||||
"Adjusting these settings will apply changes universally to all users.": "Cuirfear na socruithe seo ag coigeartú athruithe go huilíoch ar gach úsáideoir.",
|
||||
"admin": "riarachán",
|
||||
"Admin": "Riarachán",
|
||||
@@ -48,18 +48,18 @@
|
||||
"Advanced Params": "Paraiméid Casta",
|
||||
"All chats": "Gach comhrá",
|
||||
"All Documents": "Gach Doiciméad",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
"All models deleted successfully": "Scriosadh na samhlacha go léir go rathúil",
|
||||
"Allow Chat Delete": "Ceadaigh Comhrá a Scriosadh",
|
||||
"Allow Chat Deletion": "Cead Scriosadh Comhrá",
|
||||
"Allow Chat Edit": "",
|
||||
"Allow File Upload": "",
|
||||
"Allow Chat Edit": "Ceadaigh Eagarthóireacht Comhrá",
|
||||
"Allow File Upload": "Ceadaigh Uaslódáil Comhad",
|
||||
"Allow non-local voices": "Lig guthanna neamh-áitiúla",
|
||||
"Allow Temporary Chat": "Cead Comhrá Sealadach",
|
||||
"Allow User Location": "Ceadaigh Suíomh Úsáideora",
|
||||
"Allow Voice Interruption in Call": "Ceadaigh Briseadh Guth i nGlao",
|
||||
"Already have an account?": "Tá cuntas agat cheana féin?",
|
||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||
"Amazing": "",
|
||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Rogha eile seachas an top_p, agus tá sé mar aidhm aige cothromaíocht cáilíochta agus éagsúlachta a chinntiú. Léiríonn an paraiméadar p an dóchúlacht íosta go mbreithneofar comhartha, i gcoibhneas le dóchúlacht an chomhartha is dóichí. Mar shampla, le p=0.05 agus dóchúlacht 0.9 ag an comhartha is dóichí, déantar logits le luach níos lú ná 0.045 a scagadh amach. (Réamhshocrú: 0.0)",
|
||||
"Amazing": "Iontach",
|
||||
"an assistant": "cúntóir",
|
||||
"and": "agus",
|
||||
"and {{COUNT}} more": "agus {{COUNT}} eile",
|
||||
@@ -68,15 +68,15 @@
|
||||
"API Key": "Eochair API",
|
||||
"API Key created.": "Cruthaíodh Eochair API.",
|
||||
"API keys": "Eochracha API",
|
||||
"Application DN": "",
|
||||
"Application DN Password": "",
|
||||
"applies to all users with the \"user\" role": "",
|
||||
"Application DN": "Feidhmchlár DN",
|
||||
"Application DN Password": "Feidhmchlár DN Pasfhocal",
|
||||
"applies to all users with the \"user\" role": "baineann sé le gach úsáideoir a bhfuil an ról \"úsáideoir\" aige",
|
||||
"April": "Aibreán",
|
||||
"Archive": "Cartlann",
|
||||
"Archive All Chats": "Cartlann Gach Comhrá",
|
||||
"Archived Chats": "Comhráite Cartlann",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"archived-chat-export": "gcartlann-comhrá-onnmhairiú",
|
||||
"Are you sure you want to unarchive all archived chats?": "An bhfuil tú cinnte gur mhaith leat gach comhrá cartlainne a dhíchartlannú?",
|
||||
"Are you sure?": "An bhfuil tú cinnte?",
|
||||
"Arena Models": "Múnlaí Airéine",
|
||||
"Artifacts": "Déantáin",
|
||||
@@ -84,10 +84,10 @@
|
||||
"Assistant": "Cúntóir",
|
||||
"Attach file": "Ceangail comhad",
|
||||
"Attention to detail": "Aird ar mhionsonraí",
|
||||
"Attribute for Username": "",
|
||||
"Attribute for Username": "Tréith don Ainm Úsáideora",
|
||||
"Audio": "Fuaim",
|
||||
"August": "Lúnasa",
|
||||
"Authenticate": "",
|
||||
"Authenticate": "Fíordheimhnigh",
|
||||
"Auto-Copy Response to Clipboard": "Freagra AutoCopy go Gearrthaisce",
|
||||
"Auto-playback response": "Freagra uathsheinm",
|
||||
"Automatic1111": "Uathoibríoch1111",
|
||||
@@ -96,7 +96,7 @@
|
||||
"AUTOMATIC1111 Base URL is required.": "Tá URL bonn UATHOMATIC1111 ag teastáil.",
|
||||
"Available list": "Liosta atá ar fáil",
|
||||
"available!": "ar fáil!",
|
||||
"Awful": "",
|
||||
"Awful": "Uafásach",
|
||||
"Azure AI Speech": "Óráid Azure AI",
|
||||
"Azure Region": "Réigiún Azure",
|
||||
"Back": "Ar ais",
|
||||
@@ -106,27 +106,27 @@
|
||||
"Batch Size (num_batch)": "Méid Baisc (num_batch)",
|
||||
"before": "roimh",
|
||||
"Being lazy": "A bheith leisciúil",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bing Search V7 Endpoint": "Cuardach Bing V7 Críochphointe",
|
||||
"Bing Search V7 Subscription Key": "Eochair Síntiúis Bing Cuardach V7",
|
||||
"Brave Search API Key": "Eochair API Cuardaigh Brave",
|
||||
"By {{name}}": "",
|
||||
"By {{name}}": "Le {{name}}",
|
||||
"Bypass SSL verification for Websites": "Seachbhachtar fíorú SSL do Láithreáin",
|
||||
"Call": "Glaoigh",
|
||||
"Call feature is not supported when using Web STT engine": "Ní thacaítear le gné glaonna agus inneall Web STT á úsáid",
|
||||
"Camera": "Ceamara",
|
||||
"Cancel": "Cealaigh",
|
||||
"Capabilities": "Cumais",
|
||||
"Certificate Path": "",
|
||||
"Certificate Path": "Cosán Teastais",
|
||||
"Change Password": "Athraigh Pasfhocal",
|
||||
"Character": "Carachtar",
|
||||
"Chart new frontiers": "",
|
||||
"Chart new frontiers": "Cairt teorainneacha nua",
|
||||
"Chat": "Comhrá",
|
||||
"Chat Background Image": "Íomhá Cúlra Comhrá",
|
||||
"Chat Bubble UI": "Comhrá Bubble UI",
|
||||
"Chat Controls": "Rialuithe Comhrá",
|
||||
"Chat direction": "Treo comhrá",
|
||||
"Chat Overview": "Forbhreathnú ar an",
|
||||
"Chat Permissions": "",
|
||||
"Chat Permissions": "Ceadanna Comhrá",
|
||||
"Chat Tags Auto-Generation": "Clibeanna Comhrá Auto-Giniúint",
|
||||
"Chats": "Comhráite",
|
||||
"Check Again": "Seiceáil Arís",
|
||||
@@ -136,11 +136,11 @@
|
||||
"Chunk Overlap": "Forluí smután",
|
||||
"Chunk Params": "Chunk Params",
|
||||
"Chunk Size": "Méid an Píosa",
|
||||
"Ciphers": "",
|
||||
"Ciphers": "Cipéirí",
|
||||
"Citation": "Lua",
|
||||
"Clear memory": "Cuimhne ghlan",
|
||||
"click here": "",
|
||||
"Click here for filter guides.": "",
|
||||
"click here": "cliceáil anseo",
|
||||
"Click here for filter guides.": "Cliceáil anseo le haghaidh treoracha scagaire.",
|
||||
"Click here for help.": "Cliceáil anseo le haghaidh cabhair.",
|
||||
"Click here to": "Cliceáil anseo chun",
|
||||
"Click here to download user import template file.": "Cliceáil anseo chun an comhad iompórtála úsáideora a íoslódáil.",
|
||||
@@ -157,7 +157,7 @@
|
||||
"Code execution": "Cód a fhorghníomhú",
|
||||
"Code formatted successfully": "Cód formáidithe go rathúil",
|
||||
"Collection": "Bailiúchán",
|
||||
"Color": "",
|
||||
"Color": "Dath",
|
||||
"ComfyUI": "ComfyUI",
|
||||
"ComfyUI Base URL": "URL Bonn ComfyUI",
|
||||
"ComfyUI Base URL is required.": "Teastaíonn URL ComfyUI Base.",
|
||||
@@ -166,7 +166,7 @@
|
||||
"Command": "Ordú",
|
||||
"Completions": "Críochnaithe",
|
||||
"Concurrent Requests": "Iarrataí Comhthéime",
|
||||
"Configure": "",
|
||||
"Configure": "Cumraigh",
|
||||
"Confirm": "Deimhnigh",
|
||||
"Confirm Password": "Deimhnigh Pasfhocal",
|
||||
"Confirm your action": "Deimhnigh do ghníomh",
|
||||
@@ -177,11 +177,11 @@
|
||||
"Context Length": "Fad Comhthéacs",
|
||||
"Continue Response": "Leanúint ar aghaidh",
|
||||
"Continue with {{provider}}": "Lean ar aghaidh le {{provider}}",
|
||||
"Continue with Email": "",
|
||||
"Continue with LDAP": "",
|
||||
"Continue with Email": "Lean ar aghaidh le Ríomhphost",
|
||||
"Continue with LDAP": "Lean ar aghaidh le LDAP",
|
||||
"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "Rialú conas a roinntear téacs teachtaireachta d'iarratais TTS. Roinneann 'poncaíocht' ina abairtí, scoilteann 'míreanna' i míreanna, agus coinníonn 'aon' an teachtaireacht mar shreang amháin.",
|
||||
"Controls": "Rialuithe",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "Rialaíonn sé an chothromaíocht idir comhleanúnachas agus éagsúlacht an aschuir. Beidh téacs níos dírithe agus níos soiléire mar thoradh ar luach níos ísle. (Réamhshocrú: 5.0)",
|
||||
"Copied": "Cóipeáladh",
|
||||
"Copied shared chat URL to clipboard!": "Cóipeáladh URL an chomhrá roinnte chuig an ngearrthaisce!",
|
||||
"Copied to clipboard": "Cóipeáilte go gear",
|
||||
@@ -191,12 +191,12 @@
|
||||
"Copy Link": "Cóipeáil Nasc",
|
||||
"Copy to clipboard": "Cóipeáil chuig an ngearrthaisce",
|
||||
"Copying to clipboard was successful!": "D'éirigh le cóipeáil chuig an ngearrthaisce!",
|
||||
"Create": "",
|
||||
"Create a knowledge base": "",
|
||||
"Create": "Cruthaigh",
|
||||
"Create a knowledge base": "Cruthaigh bonn eolais",
|
||||
"Create a model": "Cruthaigh samhail",
|
||||
"Create Account": "Cruthaigh Cuntas",
|
||||
"Create Admin Account": "",
|
||||
"Create Group": "",
|
||||
"Create Admin Account": "Cruthaigh Cuntas Riaracháin",
|
||||
"Create Group": "Cruthaigh Grúpa",
|
||||
"Create Knowledge": "Cruthaigh Eolais",
|
||||
"Create new key": "Cruthaigh eochair nua",
|
||||
"Create new secret key": "Cruthaigh eochair rúnda nua",
|
||||
@@ -215,16 +215,16 @@
|
||||
"Default (SentenceTransformers)": "Réamhshocraithe (SentenceTransFormers)",
|
||||
"Default Model": "Samhail Réamhshocraithe",
|
||||
"Default model updated": "An tsamhail réamhshocraithe",
|
||||
"Default permissions": "",
|
||||
"Default permissions updated successfully": "",
|
||||
"Default permissions": "Ceadanna réamhshocraithe",
|
||||
"Default permissions updated successfully": "D'éirigh le ceadanna réamhshocraithe a nuashonrú",
|
||||
"Default Prompt Suggestions": "Moltaí Pras Réamhshocraithe",
|
||||
"Default to 389 or 636 if TLS is enabled": "",
|
||||
"Default to ALL": "",
|
||||
"Default to 389 or 636 if TLS is enabled": "Réamhshocrú go 389 nó 636 má tá TLS cumasaithe",
|
||||
"Default to ALL": "Réamhshocrú do GACH",
|
||||
"Default User Role": "Ról Úsáideora Réamhshoc",
|
||||
"Delete": "Scrios",
|
||||
"Delete a model": "Scrios samhail",
|
||||
"Delete All Chats": "Scrios Gach Comhrá",
|
||||
"Delete All Models": "",
|
||||
"Delete All Models": "Scrios Gach Múnla",
|
||||
"Delete chat": "Scrios comhrá",
|
||||
"Delete Chat": "Scrios Comhrá",
|
||||
"Delete chat?": "Scrios comhrá?",
|
||||
@@ -236,8 +236,8 @@
|
||||
"Delete User": "Scrios Úsáideoir",
|
||||
"Deleted {{deleteModelTag}}": "Scriosta {{deleteModelTag}}",
|
||||
"Deleted {{name}}": "Scriosta {{name}}",
|
||||
"Deleted User": "",
|
||||
"Describe your knowledge base and objectives": "",
|
||||
"Deleted User": "Úsáideoir Scriosta",
|
||||
"Describe your knowledge base and objectives": "Déan cur síos ar do bhunachar eolais agus do chuspóirí",
|
||||
"Description": "Cur síos",
|
||||
"Didn't fully follow instructions": "Níor lean sé treoracha go hiomlán",
|
||||
"Disabled": "Díchumasaithe",
|
||||
@@ -245,17 +245,17 @@
|
||||
"Discover a model": "Faigh amach samhail",
|
||||
"Discover a prompt": "Faigh amach pras",
|
||||
"Discover a tool": "Faigh amach uirlis",
|
||||
"Discover wonders": "",
|
||||
"Discover wonders": "Faigh amach iontais",
|
||||
"Discover, download, and explore custom functions": "Faigh amach, íoslódáil agus iniúchadh feidhmeanna saincheaptha",
|
||||
"Discover, download, and explore custom prompts": "Leideanna saincheaptha a fháil amach, a íoslódáil agus a iniúchadh",
|
||||
"Discover, download, and explore custom tools": "Uirlisí saincheaptha a fháil amach, íoslódáil agus iniúchadh",
|
||||
"Discover, download, and explore model presets": "Réamhshocruithe samhail a fháil amach, a íoslódáil agus a iniúchadh",
|
||||
"Dismissible": "Dífhostaithe",
|
||||
"Display": "",
|
||||
"Display": "Taispeáin",
|
||||
"Display Emoji in Call": "Taispeáin Emoji i nGlao",
|
||||
"Display the username instead of You in the Chat": "Taispeáin an t-ainm úsáideora in ionad Tú sa Comhrá",
|
||||
"Displays citations in the response": "",
|
||||
"Dive into knowledge": "",
|
||||
"Displays citations in the response": "Taispeánann sé luanna sa fhreagra",
|
||||
"Dive into knowledge": "Léim isteach eolas",
|
||||
"Do not install functions from sources you do not fully trust.": "Ná suiteáil feidhmeanna ó fhoinsí nach bhfuil muinín iomlán agat.",
|
||||
"Do not install tools from sources you do not fully trust.": "Ná suiteáil uirlisí ó fhoinsí nach bhfuil muinín iomlán agat.",
|
||||
"Document": "Doiciméad",
|
||||
@@ -270,39 +270,39 @@
|
||||
"Download": "Íoslódáil",
|
||||
"Download canceled": "Íoslódáil cealaithe",
|
||||
"Download Database": "Íoslódáil Bunachair",
|
||||
"Drag and drop a file to upload or select a file to view": "",
|
||||
"Drag and drop a file to upload or select a file to view": "Tarraing agus scaoil comhad le huaslódáil nó roghnaigh comhad le féachaint air",
|
||||
"Draw": "Tarraing",
|
||||
"Drop any files here to add to the conversation": "Scaoil aon chomhaid anseo le cur leis an gcomhrá",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "m.sh. '30s', '10m'. Is iad aonaid ama bailí ná 's', 'm', 'h'.",
|
||||
"e.g. A filter to remove profanity from text": "",
|
||||
"e.g. My Filter": "",
|
||||
"e.g. My Tools": "",
|
||||
"e.g. my_filter": "",
|
||||
"e.g. my_tools": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g. A filter to remove profanity from text": "m.h. Scagaire chun profanity a bhaint as téacs",
|
||||
"e.g. My Filter": "m.sh. Mo Scagaire",
|
||||
"e.g. My Tools": "e.g. Mo Uirlisí",
|
||||
"e.g. my_filter": "m.sh. mo_scagaire",
|
||||
"e.g. my_tools": "m.sh. mo_uirlisí",
|
||||
"e.g. Tools for performing various operations": "m.sh. Uirlisí chun oibríochtaí éagsúla a dhéanamh",
|
||||
"Edit": "Cuir in eagar",
|
||||
"Edit Arena Model": "Cuir Samhail Airéine in Eagar",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Connection": "Cuir Ceangal in Eagar",
|
||||
"Edit Default Permissions": "Cuir Ceadanna Réamhshocraithe in Eagar",
|
||||
"Edit Memory": "Cuir Cuimhne in eagar",
|
||||
"Edit User": "Cuir Úsáideoir in eagar",
|
||||
"Edit User Group": "",
|
||||
"Edit User Group": "Cuir Grúpa Úsáideoirí in Eagar",
|
||||
"ElevenLabs": "Eleven Labs",
|
||||
"Email": "Ríomhphost",
|
||||
"Embark on adventures": "",
|
||||
"Embark on adventures": "Dul ar eachtraí",
|
||||
"Embedding Batch Size": "Méid Baisc a ionchorprú",
|
||||
"Embedding Model": "Múnla Leabháilte",
|
||||
"Embedding Model Engine": "Inneall Múnla Ionchorprú",
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Samhail leabaithe atá socraithe go \"{{embedding_model}}\"",
|
||||
"Enable API Key Auth": "",
|
||||
"Enable API Key Auth": "Cumasaigh Fíordheimhniú Eochracha API",
|
||||
"Enable Community Sharing": "Cumasaigh Comhroinnt Pobail",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
|
||||
"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Cumasaigh Glasáil Cuimhne (mlock) chun sonraí samhaltaithe a chosc ó RAM. Glasálann an rogha seo sraith oibre leathanaigh an mhúnla isteach i RAM, ag cinntiú nach ndéanfar iad a mhalartú go diosca. Is féidir leis seo cabhrú le feidhmíocht a choinneáil trí lochtanna leathanaigh a sheachaint agus rochtain tapa ar shonraí a chinntiú.",
|
||||
"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "Cumasaigh Mapáil Cuimhne (mmap) chun sonraí samhla a lódáil. Ligeann an rogha seo don chóras stóráil diosca a úsáid mar leathnú ar RAM trí chomhaid diosca a chóireáil amhail is dá mba i RAM iad. Is féidir leis seo feidhmíocht na samhla a fheabhsú trí rochtain níos tapúla ar shonraí a cheadú. Mar sin féin, d'fhéadfadh sé nach n-oibreoidh sé i gceart le gach córas agus féadfaidh sé méid suntasach spáis diosca a ithe.",
|
||||
"Enable Message Rating": "Cumasaigh Rátáil Teachtai",
|
||||
"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
|
||||
"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Cumasaigh sampláil Mirostat chun seachrán a rialú. (Réamhshocrú: 0, 0 = Díchumasaithe, 1 = Mirostat, 2 = Mirostat 2.0)",
|
||||
"Enable New Sign Ups": "Cumasaigh Clárúcháin Nua",
|
||||
"Enable Retrieval Query Generation": "",
|
||||
"Enable Tags Generation": "",
|
||||
"Enable Retrieval Query Generation": "Cumasaigh Giniúint Iarratas Aisghabhála",
|
||||
"Enable Tags Generation": "Cumasaigh Giniúint Clibeanna",
|
||||
"Enable Web Search": "Cumasaigh Cuardach Gréasáin",
|
||||
"Enable Web Search Query Generation": "Cumasaigh Giniúint Ceist Cuardaigh Gréasáin",
|
||||
"Enabled": "Cumasaithe",
|
||||
@@ -311,12 +311,12 @@
|
||||
"Enter {{role}} message here": "Cuir isteach teachtaireacht {{role}} anseo",
|
||||
"Enter a detail about yourself for your LLMs to recall": "Cuir isteach mionsonraí fút féin chun do LLManna a mheabhrú",
|
||||
"Enter api auth string (e.g. username:password)": "Cuir isteach sreang auth api (m.sh. ainm úsáideora: pasfhocal)",
|
||||
"Enter Application DN": "",
|
||||
"Enter Application DN Password": "",
|
||||
"Enter Bing Search V7 Endpoint": "",
|
||||
"Enter Bing Search V7 Subscription Key": "",
|
||||
"Enter Brave Search API Key": "Cuir isteach Eochair API Brave Search",
|
||||
"Enter certificate path": "",
|
||||
"Enter Application DN": "Cuir isteach Feidhmchlár DN",
|
||||
"Enter Application DN Password": "Iontráil Feidhmchlár DN Pasfhocal",
|
||||
"Enter Bing Search V7 Endpoint": "Cuir isteach Cuardach Bing V7 Críochphointe",
|
||||
"Enter Bing Search V7 Subscription Key": "Cuir isteach Eochair Síntiúis Bing Cuardach V7",
|
||||
"Enter Brave Search API Key": "Cuir isteach Eochair API Brave Cuardach",
|
||||
"Enter certificate path": "Cuir isteach cosán an teastais",
|
||||
"Enter CFG Scale (e.g. 7.0)": "Cuir isteach Scála CFG (m.sh. 7.0)",
|
||||
"Enter Chunk Overlap": "Cuir isteach Chunk Forluí",
|
||||
"Enter Chunk Size": "Cuir isteach Méid an Chunc",
|
||||
@@ -325,10 +325,11 @@
|
||||
"Enter Google PSE API Key": "Cuir isteach Eochair API Google PSE",
|
||||
"Enter Google PSE Engine Id": "Cuir isteach ID Inneall Google PSE",
|
||||
"Enter Image Size (e.g. 512x512)": "Iontráil Méid Íomhá (m.sh. 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter Jina API Key": "Cuir isteach Eochair API Jina",
|
||||
"Enter language codes": "Cuir isteach cóid teanga",
|
||||
"Enter Model ID": "Iontráil ID Mhúnla",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Cuir isteach chlib samhail (m.sh. {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Iontráil Líon na gCéimeanna (m.sh. 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "Cuir isteach Sampler (m.sh. Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Cuir isteach Sceidealóir (m.sh. Karras)",
|
||||
@@ -336,13 +337,13 @@
|
||||
"Enter SearchApi API Key": "Cuir isteach Eochair API SearchAPI",
|
||||
"Enter SearchApi Engine": "Cuir isteach Inneall SearchAPI",
|
||||
"Enter Searxng Query URL": "Cuir isteach URL Ceist Searxng",
|
||||
"Enter Seed": "",
|
||||
"Enter Seed": "Cuir isteach Síl",
|
||||
"Enter Serper API Key": "Cuir isteach Eochair API Serper",
|
||||
"Enter Serply API Key": "Cuir isteach Eochair API Serply",
|
||||
"Enter Serpstack API Key": "Cuir isteach Eochair API Serpstack",
|
||||
"Enter server host": "",
|
||||
"Enter server label": "",
|
||||
"Enter server port": "",
|
||||
"Enter server host": "Cuir isteach óstach freastalaí",
|
||||
"Enter server label": "Cuir isteach lipéad freastalaí",
|
||||
"Enter server port": "Cuir isteach port freastalaí",
|
||||
"Enter stop sequence": "Cuir isteach seicheamh stad",
|
||||
"Enter system prompt": "Cuir isteach an chóras pras",
|
||||
"Enter Tavily API Key": "Cuir isteach eochair API Tavily",
|
||||
@@ -355,28 +356,28 @@
|
||||
"Enter your message": "Cuir isteach do theachtaireacht",
|
||||
"Enter Your Password": "Cuir isteach do phasfhocal",
|
||||
"Enter Your Role": "Cuir isteach do Ról",
|
||||
"Enter Your Username": "",
|
||||
"Enter Your Username": "Cuir isteach D'Ainm Úsáideora",
|
||||
"Error": "Earráid",
|
||||
"ERROR": "EARRÁID",
|
||||
"Evaluations": "Meastóireachtaí",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
"Example: ou=users,dc=foo,dc=example": "",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Sampla: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Sampla: GACH",
|
||||
"Example: ou=users,dc=foo,dc=example": "Sampla: ou=úsáideoirí,dc=foo,dc=sampla",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "Sampla: sAMAaccountName nó uid nó userPrincipalName",
|
||||
"Exclude": "Eisigh",
|
||||
"Experimental": "Turgnamhach",
|
||||
"Explore the cosmos": "",
|
||||
"Explore the cosmos": "Déan iniúchadh ar an cosmos",
|
||||
"Export": "Easpórtáil",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Archived Chats": "Easpórtáil Gach Comhrá Cartlainne",
|
||||
"Export All Chats (All Users)": "Easpórtáil gach comhrá (Gach Úsáideoir)",
|
||||
"Export chat (.json)": "Easpórtáil comhrá (.json)",
|
||||
"Export Chats": "Comhráite Easpórtá",
|
||||
"Export Config to JSON File": "Easpórtáil Cumraíocht chuig Comhad JSON",
|
||||
"Export Functions": "Feidhmeanna Easp",
|
||||
"Export Models": "Múnlaí a Easpórtáil",
|
||||
"Export Presets": "",
|
||||
"Export Presets": "Easpórtáil Gach Comhrá Cartlainne",
|
||||
"Export Prompts": "Leideanna Easpórtála",
|
||||
"Export to CSV": "",
|
||||
"Export to CSV": "Easpórtáil go CSV",
|
||||
"Export Tools": "Uirlisí Easpór",
|
||||
"External Models": "Múnlaí Seachtracha",
|
||||
"Failed to add file.": "Theip ar an gcomhad a chur leis.",
|
||||
@@ -386,7 +387,7 @@
|
||||
"Failed to upload file.": "Theip ar uaslódáil an chomhaid.",
|
||||
"February": "Feabhra",
|
||||
"Feedback History": "Stair Aiseolais",
|
||||
"Feedbacks": "",
|
||||
"Feedbacks": "Aiseolas",
|
||||
"Feel free to add specific details": "Ná bíodh leisce ort sonraí ar leith a chur leis",
|
||||
"File": "Comhad",
|
||||
"File added successfully.": "D'éirigh leis an gcomhad a chur leis.",
|
||||
@@ -407,18 +408,18 @@
|
||||
"Folder name cannot be empty.": "Ní féidir ainm fillteáin a bheith folamh.",
|
||||
"Folder name updated successfully": "D'éirigh le hainm an fhillteáin a nuashonrú",
|
||||
"Followed instructions perfectly": "Lean treoracha go foirfe",
|
||||
"Forge new paths": "",
|
||||
"Forge new paths": "Déan cosáin nua a chruthú",
|
||||
"Form": "Foirm",
|
||||
"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 created successfully": "Cruthaíodh feidhm go rathúil",
|
||||
"Function deleted successfully": "Feidhm scriosta go rathúil",
|
||||
"Function Description": "",
|
||||
"Function ID": "",
|
||||
"Function Description": "Cur síos ar Fheidhm",
|
||||
"Function ID": "ID Feidhme",
|
||||
"Function is now globally disabled": "Tá an fheidhm faoi mhíchumas go domhanda",
|
||||
"Function is now globally enabled": "Tá feidhm cumasaithe go domhanda anois",
|
||||
"Function Name": "",
|
||||
"Function Name": "Ainm Feidhme",
|
||||
"Function updated successfully": "Feidhm nuashonraithe",
|
||||
"Functions": "Feidhmeanna",
|
||||
"Functions allow arbitrary code execution": "Ligeann feidhmeanna forghníomhú cód",
|
||||
@@ -429,34 +430,34 @@
|
||||
"Generate Image": "Ginigh Íomhá",
|
||||
"Generating search query": "Giniúint ceist cuardaigh",
|
||||
"Generation Info": "Eolas Giniúin",
|
||||
"Get started": "",
|
||||
"Get started with {{WEBUI_NAME}}": "",
|
||||
"Get started": "Cuir tús leis",
|
||||
"Get started with {{WEBUI_NAME}}": "Cuir tús le {{WEBUI_NAME}}",
|
||||
"Global": "Domhanda",
|
||||
"Good Response": "Freagra Mhaith",
|
||||
"Google PSE API Key": "Eochair API Google PSE",
|
||||
"Google PSE Engine Id": "ID Inneall Google PSE",
|
||||
"Group created successfully": "",
|
||||
"Group deleted successfully": "",
|
||||
"Group Description": "",
|
||||
"Group Name": "",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"Group created successfully": "Grúpa cruthaithe go rathúil",
|
||||
"Group deleted successfully": "D'éirigh le scriosadh an ghrúpa",
|
||||
"Group Description": "Cur síos ar an nGrúpa",
|
||||
"Group Name": "Ainm an Ghrúpa",
|
||||
"Group updated successfully": "D'éirigh le nuashonrú an ghrúpa",
|
||||
"Groups": "Grúpaí",
|
||||
"h:mm a": "h: mm a",
|
||||
"Haptic Feedback": "Aiseolas Haptic",
|
||||
"has no conversations.": "níl aon chomhráite aige.",
|
||||
"Hello, {{name}}": "Dia duit, {{name}}",
|
||||
"Help": "Cabhair",
|
||||
"Help us create the best community leaderboard by sharing your feedback history!": "Cabhraigh linn an clár ceannairí pobail is fearr a chruthú trí do stair aiseolais a roinnt!",
|
||||
"Hex Color": "",
|
||||
"Hex Color - Leave empty for default color": "",
|
||||
"Hex Color": "Dath Heics",
|
||||
"Hex Color - Leave empty for default color": "Dath Heics - Fág folamh don dath réamhshocraithe",
|
||||
"Hide": "Folaigh",
|
||||
"Host": "",
|
||||
"Host": "Óstach",
|
||||
"How can I help you today?": "Conas is féidir liom cabhrú leat inniu?",
|
||||
"How would you rate this response?": "",
|
||||
"How would you rate this response?": "Cad é mar a mheasfá an freagra seo?",
|
||||
"Hybrid Search": "Cuardach Hibrideach",
|
||||
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Admhaím gur léigh mé agus tuigim impleachtaí mo ghníomhaíochta. Táim ar an eolas faoi na rioscaí a bhaineann le cód treallach a fhorghníomhú agus tá iontaofacht na foinse fíoraithe agam.",
|
||||
"ID": "ID",
|
||||
"Ignite curiosity": "",
|
||||
"Ignite curiosity": "Las fiosracht",
|
||||
"Image Generation (Experimental)": "Giniúint Íomhá (Turgnaimh)",
|
||||
"Image Generation Engine": "Inneall Giniúna Íomh",
|
||||
"Image Settings": "Socruithe Íomhá",
|
||||
@@ -465,13 +466,13 @@
|
||||
"Import Config from JSON File": "Cumraíocht Iompórtáil ó Chomhad JSON",
|
||||
"Import Functions": "Feidhmeanna Iom",
|
||||
"Import Models": "Múnlaí a Iompórtáil",
|
||||
"Import Presets": "",
|
||||
"Import Presets": "Réamhshocruithe Iompórtáil",
|
||||
"Import Prompts": "Leideanna Iompórtála",
|
||||
"Import Tools": "Uirlisí Iomp",
|
||||
"Include": "Cuir san áireamh",
|
||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Cuir bratach `--api-auth` san áireamh agus webui stable-diffusion-reatha á rith",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "Cuir bratach `--api` san áireamh agus webui cobhsaí-scaipthe á rith",
|
||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
|
||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "Bíonn tionchar aige ar chomh tapa agus a fhreagraíonn an t-algartam d’aiseolas ón téacs ginte. Beidh coigeartuithe níos moille mar thoradh ar ráta foghlama níos ísle, agus déanfaidh ráta foghlama níos airde an t-algartam níos freagraí. (Réamhshocrú: 0.1)",
|
||||
"Info": "Eolas",
|
||||
"Input commands": "Orduithe ionchuir",
|
||||
"Install from Github URL": "Suiteáil ó Github URL",
|
||||
@@ -480,7 +481,7 @@
|
||||
"Invalid file format.": "Formáid comhaid neamhbhailí.",
|
||||
"Invalid Tag": "Clib neamhbhailí",
|
||||
"January": "Eanáir",
|
||||
"Jina API Key": "",
|
||||
"Jina API Key": "Jina API Eochair",
|
||||
"join our Discord for help.": "bí inár Discord chun cabhair a fháil.",
|
||||
"JSON": "JSON",
|
||||
"JSON Preview": "Réamhamharc JSON",
|
||||
@@ -489,31 +490,31 @@
|
||||
"JWT Expiration": "Éag JWT",
|
||||
"JWT Token": "Comhartha JWT",
|
||||
"Keep Alive": "Coinnigh Beo",
|
||||
"Key": "",
|
||||
"Key": "Eochair",
|
||||
"Keyboard shortcuts": "Aicearraí méarchlár",
|
||||
"Knowledge": "Eolas",
|
||||
"Knowledge Access": "",
|
||||
"Knowledge Access": "Rochtain Eolais",
|
||||
"Knowledge created successfully.": "Eolas cruthaithe go rathúil.",
|
||||
"Knowledge deleted successfully.": "D'éirigh leis an eolas a scriosadh.",
|
||||
"Knowledge reset successfully.": "D'éirigh le hathshocrú eolais.",
|
||||
"Knowledge updated successfully": "D'éirigh leis an eolas a nuashonrú",
|
||||
"Label": "",
|
||||
"Label": "Lipéad",
|
||||
"Landing Page Mode": "Mód Leathanach Tuirlingthe",
|
||||
"Language": "Teanga",
|
||||
"Last Active": "Gníomhach Deiridh",
|
||||
"Last Modified": "Athraithe Deiridh",
|
||||
"LDAP": "",
|
||||
"LDAP server updated": "",
|
||||
"LDAP": "LDAP",
|
||||
"LDAP server updated": "Nuashonraíodh freastalaí LDAP",
|
||||
"Leaderboard": "An Clár Ceannairí",
|
||||
"Leave empty for unlimited": "Fág folamh le haghaidh neamhtheoranta",
|
||||
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "Fág folamh chun gach múnla ó chríochphointe \"{{URL}}/api/tags\" a chur san áireamh",
|
||||
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "Fág folamh chun gach múnla ón gcríochphointe \"{{URL}}/models\" a chur san áireamh",
|
||||
"Leave empty to include all models or select specific models": "Fág folamh chun gach múnla a chur san áireamh nó roghnaigh múnlaí sonracha",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "Fág folamh chun an pras réamhshocraithe a úsáid, nó cuir isteach pras saincheaptha",
|
||||
"Light": "Solas",
|
||||
"Listening...": "Éisteacht...",
|
||||
"LLMs can make mistakes. Verify important information.": "Is féidir le LLManna botúin a dhéanamh. Fíoraigh faisnéis thábhachtach.",
|
||||
"Local": "",
|
||||
"Local": "Áitiúil",
|
||||
"Local Models": "Múnlaí Áitiúla",
|
||||
"Lost": "Cailleadh",
|
||||
"LTR": "LTR",
|
||||
@@ -522,9 +523,9 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Déan cinnte comhad workflow.json a onnmhairiú mar fhormáid API ó ComfyUI.",
|
||||
"Manage": "Bainistiú",
|
||||
"Manage Arena Models": "Bainistigh Múnlaí Airéine",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Ollama": "Bainistigh Ollama",
|
||||
"Manage Ollama API Connections": "Bainistigh Naisc API Ollama",
|
||||
"Manage OpenAI API Connections": "Bainistigh Naisc API OpenAI",
|
||||
"Manage Pipelines": "Bainistigh píblín",
|
||||
"March": "Márta",
|
||||
"Max Tokens (num_predict)": "Comharthaí Uasta (num_predicate)",
|
||||
@@ -547,8 +548,8 @@
|
||||
"Mirostat Eta": "Mirostat Eta",
|
||||
"Mirostat Tau": "Mirostat Tau",
|
||||
"MMMM DD, YYYY": "MMMM LL, BBBB",
|
||||
"MMMM DD, YYYY HH:mm": "MMMM LL, BBBB HH:mm",
|
||||
"MMMM DD, YYYY hh:mm:ss A": "MMMM LL, BBBB hh:mm:ss A",
|
||||
"MMMM DD, YYYY HH:mm": "MMMM LL, BBBB UU:nn",
|
||||
"MMMM DD, YYYY hh:mm:ss A": "MMMM LL, BBBB uu:nn:ss A",
|
||||
"Model": "Múnla",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Rinneadh an tsamhail '{{modelName}}' a íoslódáil go rathúil.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Tá múnla ‘{{modelTag}}’ sa scuaine cheana féin le híoslódáil.",
|
||||
@@ -558,21 +559,22 @@
|
||||
"Model accepts image inputs": "Glacann múnla le hionchuir",
|
||||
"Model created successfully!": "Cruthaíodh múnla go rathúil!",
|
||||
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Braitheadh \u200b\u200bconair chóras comhad samhail. Teastaíonn mionainm múnla le haghaidh nuashonraithe, ní féidir leanúint ar aghaidh.",
|
||||
"Model Filtering": "",
|
||||
"Model ID": "ID Mhúnla",
|
||||
"Model IDs": "",
|
||||
"Model Filtering": "Scagadh Múnla",
|
||||
"Model ID": "ID Múnla",
|
||||
"Model IDs": "IDanna Múnla",
|
||||
"Model Name": "Ainm Múnla",
|
||||
"Model not selected": "Múnla nach roghnaíodh",
|
||||
"Model Params": "Múnla Params",
|
||||
"Model Permissions": "",
|
||||
"Model Permissions": "Ceadanna Múnla",
|
||||
"Model updated successfully": "An tsamhail nuashonraithe",
|
||||
"Modelfile Content": "Ábhar Modelfile",
|
||||
"Models": "Múnlaí",
|
||||
"Models Access": "",
|
||||
"Models Access": "Rochtain Múnlaí",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "níos mó",
|
||||
"More": "Tuilleadh",
|
||||
"Name": "Ainm",
|
||||
"Name your knowledge base": "",
|
||||
"Name your knowledge base": "Cuir ainm ar do bhunachar eolais",
|
||||
"New Chat": "Comhrá Nua",
|
||||
"New folder": "Fillteán nua",
|
||||
"New Password": "Pasfhocal Nua",
|
||||
@@ -582,15 +584,15 @@
|
||||
"No feedbacks found": "Níor aimsíodh aon aiseolas",
|
||||
"No file selected": "Níl aon chomhad roghnaithe",
|
||||
"No files found.": "Níor aimsíodh aon chomhaid.",
|
||||
"No groups with access, add a group to grant access": "",
|
||||
"No groups with access, add a group to grant access": "Gan aon ghrúpa a bhfuil rochtain acu, cuir grúpa leis chun rochtain a dheonú",
|
||||
"No HTML, CSS, or JavaScript content found.": "Níor aimsíodh aon ábhar HTML, CSS nó JavaScript.",
|
||||
"No knowledge found": "Níor aimsíodh aon eolas",
|
||||
"No model IDs": "",
|
||||
"No model IDs": "Gan IDanna múnla",
|
||||
"No models found": "Níor aimsíodh aon mhúnlaí",
|
||||
"No results found": "Níl aon torthaí le fáil",
|
||||
"No search query generated": "Ní ghintear aon cheist cuardaigh",
|
||||
"No source available": "Níl aon fhoinse ar fáil",
|
||||
"No users were found.": "",
|
||||
"No users were found.": "Níor aimsíodh aon úsáideoirí.",
|
||||
"No valves to update": "Gan comhlaí le nuashonrú",
|
||||
"None": "Dada",
|
||||
"Not factually correct": "Níl sé ceart go fírineach",
|
||||
@@ -609,13 +611,13 @@
|
||||
"Ollama": "Ollama",
|
||||
"Ollama API": "Ollama API",
|
||||
"Ollama API disabled": "Ollama API faoi mhíchumas",
|
||||
"Ollama API settings updated": "",
|
||||
"Ollama API settings updated": "Nuashonraíodh socruithe Olama API",
|
||||
"Ollama Version": "Leagan Ollama",
|
||||
"On": "Ar",
|
||||
"Only alphanumeric characters and hyphens are allowed": "",
|
||||
"Only alphanumeric characters and hyphens are allowed": "Ní cheadaítear ach carachtair alfa-uimhriúla agus fleiscíní",
|
||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Ní cheadaítear ach carachtair alfauméireacha agus braithíní sa sreangán ordaithe.",
|
||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Ní féidir ach bailiúcháin a chur in eagar, bonn eolais nua a chruthú chun doiciméid a chur in eagar/a chur leis.",
|
||||
"Only select users and groups with permission can access": "",
|
||||
"Only select users and groups with permission can access": "Ní féidir ach le húsáideoirí roghnaithe agus le grúpaí a bhfuil cead acu rochtain a fháil",
|
||||
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Ups! Is cosúil go bhfuil an URL neamhbhailí. Seiceáil faoi dhó le do thoil agus iarracht arís.",
|
||||
"Oops! There are files still uploading. Please wait for the upload to complete.": "Úps! Tá comhaid fós á n-uaslódáil. Fan go mbeidh an uaslódáil críochnaithe.",
|
||||
"Oops! There was an error in the previous response.": "Úps! Bhí earráid sa fhreagra roimhe seo.",
|
||||
@@ -624,34 +626,34 @@
|
||||
"Open in full screen": "Oscail i scáileán iomlán",
|
||||
"Open new chat": "Oscail comhrá nua",
|
||||
"Open WebUI uses faster-whisper internally.": "Úsáideann Open WebUI cogar níos tapúla go hinmheánach.",
|
||||
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "",
|
||||
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Úsáideann Open WebUI úsáidí SpeechT5 agus CMU leabaithe cainteoir Artach.",
|
||||
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Tá leagan WebUI oscailte (v{{OPEN_WEBUI_VERSION}}) níos ísle ná an leagan riachtanach (v{{REQUIRED_VERSION}})",
|
||||
"OpenAI": "OpenAI",
|
||||
"OpenAI API": "API OpenAI",
|
||||
"OpenAI API Config": "Cumraíocht API OpenAI",
|
||||
"OpenAI API Key is required.": "Tá Eochair API OpenAI ag teastáil.",
|
||||
"OpenAI API settings updated": "",
|
||||
"OpenAI API settings updated": "Nuashonraíodh socruithe OpenAI API",
|
||||
"OpenAI URL/Key required.": "Teastaíonn URL/eochair OpenAI.",
|
||||
"or": "nó",
|
||||
"Organize your users": "",
|
||||
"Organize your users": "Eagraigh do chuid úsáideoirí",
|
||||
"Other": "Eile",
|
||||
"OUTPUT": "ASCHUR",
|
||||
"Output format": "Formáid aschuir",
|
||||
"Overview": "Forbhreathnú",
|
||||
"page": "leathanach",
|
||||
"Password": "Pasfhocal",
|
||||
"Paste Large Text as File": "",
|
||||
"Paste Large Text as File": "Greamaigh Téacs Mór mar Chomhad",
|
||||
"PDF document (.pdf)": "Doiciméad PDF (.pdf)",
|
||||
"PDF Extract Images (OCR)": "Íomhánna Sliocht PDF (OCR)",
|
||||
"pending": "ar feitheamh",
|
||||
"Permission denied when accessing media devices": "Cead diúltaithe nuair a bhíonn rochtain agat",
|
||||
"Permission denied when accessing microphone": "Cead diúltaithe agus tú ag rochtain ar",
|
||||
"Permission denied when accessing microphone: {{error}}": "Cead diúltaithe agus tú ag teacht ar mhicreafón: {{error}}",
|
||||
"Permissions": "",
|
||||
"Permissions": "Ceadanna",
|
||||
"Personalization": "Pearsantú",
|
||||
"Pin": "Bioráin",
|
||||
"Pinned": "Pinneáilte",
|
||||
"Pioneer insights": "",
|
||||
"Pioneer insights": "Léargais ceannródaí",
|
||||
"Pipeline deleted successfully": "Scriosta píblíne go rathúil",
|
||||
"Pipeline downloaded successfully": "Íoslódáilte píblíne",
|
||||
"Pipelines": "Píblínte",
|
||||
@@ -663,23 +665,23 @@
|
||||
"Please enter a prompt": "Cuir isteach leid",
|
||||
"Please fill in all fields.": "Líon isteach gach réimse le do thoil.",
|
||||
"Please select a reason": "Roghnaigh cúis le do thoil",
|
||||
"Port": "",
|
||||
"Port": "Port",
|
||||
"Positive attitude": "Dearcadh dearfach",
|
||||
"Prefix ID": "",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||
"Prefix ID": "Aitheantas Réimír",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Úsáidtear Aitheantas Réimír chun coinbhleachtaí le naisc eile a sheachaint trí réimír a chur le haitheantas na samhla - fág folamh le díchumasú",
|
||||
"Previous 30 days": "30 lá roimhe seo",
|
||||
"Previous 7 days": "7 lá roimhe seo",
|
||||
"Profile Image": "Íomhá Próifíl",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Pras (m.sh. inis dom fíric spraíúil faoin Impireacht Rómhánach)",
|
||||
"Prompt Content": "Ábhar Pras",
|
||||
"Prompt created successfully": "",
|
||||
"Prompt created successfully": "Leid cruthaithe go rathúil",
|
||||
"Prompt suggestions": "Moltaí pras",
|
||||
"Prompt updated successfully": "",
|
||||
"Prompt updated successfully": "D'éirigh leis an leid a nuashonrú",
|
||||
"Prompts": "Leabhair",
|
||||
"Prompts Access": "",
|
||||
"Prompts Access": "Rochtain ar Chuirí",
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Tarraing \"{{searchValue}}\" ó Ollama.com",
|
||||
"Pull a model from Ollama.com": "Tarraing múnla ó Ollama.com",
|
||||
"Query Generation Prompt": "",
|
||||
"Query Generation Prompt": "Cuirí Ginearáil Ceisteanna",
|
||||
"Query Params": "Fiosrúcháin Params",
|
||||
"RAG Template": "Teimpléad RAG",
|
||||
"Rating": "Rátáil",
|
||||
@@ -687,7 +689,7 @@
|
||||
"Read Aloud": "Léigh Ard",
|
||||
"Record voice": "Taifead guth",
|
||||
"Redirecting you to OpenWebUI Community": "Tú a atreorú chuig OpenWebUI Community",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "Laghdaíonn sé an dóchúlacht go giniúint nonsense. Tabharfaidh luach níos airde (m.sh. 100) freagraí níos éagsúla, agus beidh luach níos ísle (m.sh. 10) níos coimeádaí. (Réamhshocrú: 40)",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Tagairt duit féin mar \"Úsáideoir\" (m.sh., \"Tá an úsáideoir ag foghlaim Spáinnis\")",
|
||||
"References from": "Tagairtí ó",
|
||||
"Refused when it shouldn't have": "Diúltaíodh nuair nár chóir dó",
|
||||
@@ -725,19 +727,19 @@
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Ní thacaítear le logaí comhrá a shábháil go díreach chuig stóráil do bhrabhsálaí Tóg nóiméad chun do logaí comhrá a íoslódáil agus a scriosadh trí chliceáil an cnaipe thíos. Ná bíodh imní ort, is féidir leat do logaí comhrá a athiompórtáil go héasca chuig an gcúltaca trí",
|
||||
"Scroll to bottom when switching between branches": "Scrollaigh go bun agus tú ag athrú idir brainsí",
|
||||
"Search": "Cuardaigh",
|
||||
"Search a model": "Cuardaigh samhail",
|
||||
"Search Base": "",
|
||||
"Search a model": "Cuardaigh múnla",
|
||||
"Search Base": "Bonn Cuardaigh",
|
||||
"Search Chats": "Cuardaigh Comhráite",
|
||||
"Search Collection": "Bailiúchán Cuardaigh",
|
||||
"Search Filters": "",
|
||||
"Search Filters": "Scagairí Cuardaigh",
|
||||
"search for tags": "cuardach le haghaidh clibeanna",
|
||||
"Search Functions": "Feidhmeanna Cuardaigh",
|
||||
"Search Knowledge": "Cuardaigh Eolais",
|
||||
"Search Models": "Múnlaí Cuardaigh",
|
||||
"Search options": "",
|
||||
"Search options": "Roghanna cuardaigh",
|
||||
"Search Prompts": "Leideanna Cuardaigh",
|
||||
"Search Result Count": "Líon Torthaí Cuardaigh",
|
||||
"Search the web": "",
|
||||
"Search the web": "Cuardaigh an gréasán",
|
||||
"Search Tools": "Uirlisí Cuardaigh",
|
||||
"SearchApi API Key": "Eochair API SearchAPI",
|
||||
"SearchApi Engine": "Inneall SearchAPI",
|
||||
@@ -752,7 +754,7 @@
|
||||
"Select a base model": "Roghnaigh bunmhúnla",
|
||||
"Select a engine": "Roghnaigh inneall",
|
||||
"Select a function": "Roghnaigh feidhm",
|
||||
"Select a group": "",
|
||||
"Select a group": "Roghnaigh grúpa",
|
||||
"Select a model": "Roghnaigh samhail",
|
||||
"Select a pipeline": "Roghnaigh píblíne",
|
||||
"Select a pipeline url": "Roghnaigh url píblíne",
|
||||
@@ -775,7 +777,7 @@
|
||||
"Set as default": "Socraigh mar réamhshocraithe",
|
||||
"Set CFG Scale": "Socraigh Scála CFG",
|
||||
"Set Default Model": "Socraigh Samhail Réamhshocrú",
|
||||
"Set embedding model": "",
|
||||
"Set embedding model": "Socraigh samhail leabaithe",
|
||||
"Set embedding model (e.g. {{model}})": "Socraigh samhail leabaithe (m.sh. {{model}})",
|
||||
"Set Image Size": "Socraigh Méid Íomhá",
|
||||
"Set reranking model (e.g. {{model}})": "Socraigh samhail athrangú (m.sh. {{model}})",
|
||||
@@ -783,29 +785,29 @@
|
||||
"Set Scheduler": "Socraigh Sceidealóir",
|
||||
"Set Steps": "Socraigh Céimeanna",
|
||||
"Set Task Model": "Socraigh Samhail Tasc",
|
||||
"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
|
||||
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
|
||||
"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "Socraigh líon na bhfeistí GPU a úsáidtear le haghaidh ríomh. Rialaíonn an rogha seo cé mhéad gléas GPU (má tá siad ar fáil) a úsáidtear chun iarratais isteach a phróiseáil. Is féidir leis an luach seo a mhéadú feabhas suntasach a chur ar fheidhmíocht do mhúnlaí atá optamaithe le haghaidh luasghéarú GPU ach d’fhéadfadh go n-ídíonn siad níos mó cumhachta agus acmhainní GPU freisin.",
|
||||
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Socraigh líon na snáitheanna oibrithe a úsáidtear le haghaidh ríomh. Rialaíonn an rogha seo cé mhéad snáithe a úsáidtear chun iarratais a thagann isteach a phróiseáil i gcomhthráth. D'fhéadfadh méadú ar an luach seo feidhmíocht a fheabhsú faoi ualaí oibre comhairgeadra ard ach féadfaidh sé níos mó acmhainní LAP a úsáid freisin.",
|
||||
"Set Voice": "Socraigh Guth",
|
||||
"Set whisper model": "Socraigh múnla cogar",
|
||||
"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
|
||||
"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
|
||||
"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
|
||||
"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
|
||||
"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
|
||||
"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "Socraíonn sé cé chomh fada siar is atá an tsamhail le breathnú siar chun athrá a chosc. (Réamhshocrú: 64, 0 = díchumasaithe, -1 = num_ctx)",
|
||||
"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "Socraíonn sé cé chomh láidir is féidir pionós a ghearradh ar athrá. Cuirfidh luach níos airde (m.sh., 1.5) pionós níos láidre ar athrá, agus beidh luach níos ísle (m.sh., 0.9) níos boige. (Réamhshocrú: 1.1)",
|
||||
"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "Socraíonn sé an síol uimhir randamach a úsáid le haghaidh giniúna. Má shocraítear é seo ar uimhir shainiúil, ginfidh an tsamhail an téacs céanna don leid céanna. (Réamhshocrú: randamach)",
|
||||
"Sets the size of the context window used to generate the next token. (Default: 2048)": "Socraíonn sé méid na fuinneoige comhthéacs a úsáidtear chun an chéad chomhartha eile a ghiniúint. (Réamhshocrú: 2048)",
|
||||
"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Socraíonn sé na stadanna le húsáid. Nuair a thagtar ar an bpatrún seo, stopfaidh an LLM ag giniúint téacs agus ag filleadh. Is féidir patrúin stad iolracha a shocrú trí pharaiméadair stadanna iolracha a shonrú i gcomhad samhail.",
|
||||
"Settings": "Socruithe",
|
||||
"Settings saved successfully!": "Socruithe sábhálta go rathúil!",
|
||||
"Share": "Comhroinn",
|
||||
"Share Chat": "Comhroinn Comhrá",
|
||||
"Share to OpenWebUI Community": "Comhroinn le Pobal OpenWebUI",
|
||||
"Show": "Taispeáin",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show \"What's New\" modal on login": "Taispeáin módúil \"Cad atá Nua\" ar logáil isteach",
|
||||
"Show Admin Details in Account Pending Overlay": "Taispeáin Sonraí Riaracháin sa Chuntas ar Feitheamh Forleagan",
|
||||
"Show shortcuts": "Taispeáin aicearraí",
|
||||
"Show your support!": "Taispeáin do thacaíocht!",
|
||||
"Showcased creativity": "Cruthaitheacht léirithe",
|
||||
"Sign in": "Sínigh isteach",
|
||||
"Sign in to {{WEBUI_NAME}}": "Sínigh isteach ar {{WEBUI_NAME}}",
|
||||
"Sign in to {{WEBUI_NAME}} with LDAP": "",
|
||||
"Sign in to {{WEBUI_NAME}} with LDAP": "Sínigh isteach ar {{WEBUI_NAME}} le LDAP",
|
||||
"Sign Out": "Sínigh Amach",
|
||||
"Sign up": "Cláraigh",
|
||||
"Sign up to {{WEBUI_NAME}}": "Cláraigh le {{WEBUI_NAME}}",
|
||||
@@ -830,7 +832,7 @@
|
||||
"System Instructions": "Treoracha Córas",
|
||||
"System Prompt": "Córas Pras",
|
||||
"Tags Generation Prompt": "Clibeanna Giniúint Pras",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
|
||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "Úsáidtear sampláil saor ó eireabaill chun tionchar na n-chomharthaí ón aschur nach bhfuil chomh dóchúil céanna a laghdú. Laghdóidh luach níos airde (m.sh., 2.0) an tionchar níos mó, agus díchumasaíonn luach 1.0 an socrú seo. (réamhshocraithe: 1)",
|
||||
"Tap to interrupt": "Tapáil chun cur isteach",
|
||||
"Tavily API Key": "Eochair API Tavily",
|
||||
"Tell us more:": "Inis dúinn níos mó:",
|
||||
@@ -841,30 +843,30 @@
|
||||
"Text-to-Speech Engine": "Inneall téacs-go-labhra",
|
||||
"Tfs Z": "TFS Z",
|
||||
"Thanks for your feedback!": "Go raibh maith agat as do chuid aiseolas!",
|
||||
"The Application Account DN you bind with for search": "",
|
||||
"The base to search for users": "",
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
|
||||
"The Application Account DN you bind with for search": "An Cuntas Feidhmchláir DN a nascann tú leis le haghaidh cuardaigh",
|
||||
"The base to search for users": "An bonn chun cuardach a dhéanamh ar úsáideoirí",
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "Cinneann méid an bhaisc cé mhéad iarratas téacs a phróiseáiltear le chéile ag an am céanna. Is féidir le méid baisc níos airde feidhmíocht agus luas an mhúnla a mhéadú, ach éilíonn sé níos mó cuimhne freisin. (Réamhshocrú: 512)",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Is deonacha paiseanta ón bpobal iad na forbróirí taobh thiar den bhreiseán seo. Má aimsíonn an breiseán seo cabhrach leat, smaoinigh ar rannchuidiú lena fhorbairt.",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "Tá an clár ceannairí meastóireachta bunaithe ar chóras rátála Elo agus déantar é a nuashonrú i bhfíor-am.",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "An tréith LDAP a mhapálann don ainm úsáideora a úsáideann úsáideoirí chun síniú isteach.",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "Tá an clár ceannairí i béite faoi láthair, agus d'fhéadfaimis na ríomhanna rátála a choigeartú de réir mar a dhéanfaimid an t-algartam a bheachtú.",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Uasmhéid an chomhaid i MB. Má sháraíonn méid an chomhaid an teorainn seo, ní uaslódófar an comhad.",
|
||||
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "An líon uasta na gcomhaid is féidir a úsáid ag an am céanna i gcomhrá. Má sháraíonn líon na gcomhaid an teorainn seo, ní uaslódófar na comhaid.",
|
||||
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Ba chóir go mbeadh an scór ina luach idir 0.0 (0%) agus 1.0 (100%).",
|
||||
"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
|
||||
"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "Teocht an mhúnla. Déanfaidh méadú ar an teocht an freagra múnla níos cruthaithí. (Réamhshocrú: 0.8)",
|
||||
"Theme": "Téama",
|
||||
"Thinking...": "Smaointeoireacht...",
|
||||
"This action cannot be undone. Do you wish to continue?": "Ní féidir an gníomh seo a chur ar ais. Ar mhaith leat leanúint ar aghaidh?",
|
||||
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Cinntíonn sé seo go sábhálfar do chomhráite luachmhara go daingean i do bhunachar sonraí cúltaca Go raibh maith agat!",
|
||||
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Is gné turgnamhach í seo, b'fhéidir nach bhfeidhmeoidh sé mar a bhíothas ag súil leis agus tá sé faoi réir athraithe ag am ar bith.",
|
||||
"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
|
||||
"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated. (Default: 128)": "",
|
||||
"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "Rialaíonn an rogha seo cé mhéad comhartha a chaomhnaítear agus an comhthéacs á athnuachan. Mar shampla, má shocraítear go 2 é, coinneofar an 2 chomhartha dheireanacha de chomhthéacs an chomhrá. Is féidir le comhthéacs a chaomhnú cabhrú le leanúnachas comhrá a choinneáil, ach d’fhéadfadh sé laghdú a dhéanamh ar an gcumas freagairt do thopaicí nua. (Réamhshocrú: 24)",
|
||||
"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated. (Default: 128)": "Socraíonn an rogha seo an t-uaslíon comharthaí is féidir leis an tsamhail a ghiniúint ina fhreagra. Tríd an teorainn seo a mhéadú is féidir leis an tsamhail freagraí níos faide a sholáthar, ach d’fhéadfadh go méadódh sé an dóchúlacht go nginfear ábhar neamhchabhrach nó nach mbaineann le hábhar. (Réamhshocrú: 128)",
|
||||
"This option will delete all existing files in the collection and replace them with newly uploaded files.": "Scriosfaidh an rogha seo gach comhad atá sa bhailiúchán agus cuirfear comhaid nua-uaslódála ina n-ionad.",
|
||||
"This response was generated by \"{{model}}\"": "Gin an freagra seo ag \"{{model}}\"",
|
||||
"This will delete": "Scriosfaidh sé seo",
|
||||
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Scriosfaidh sé seo <strong>{{NAME}}</strong> agus <strong>a bhfuil ann go léir</strong>.",
|
||||
"This will delete all models including custom models": "",
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will delete all models including custom models": "Scriosfaidh sé seo gach múnla lena n-áirítear samhlacha saincheaptha",
|
||||
"This will delete all models including custom models and cannot be undone.": "Scriosfaidh sé seo gach samhail lena n-áirítear samhlacha saincheaptha agus ní féidir é a chealú.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Déanfaidh sé seo an bonn eolais a athshocrú agus gach comhad a shioncronú. Ar mhaith leat leanúint ar aghaidh?",
|
||||
"Thorough explanation": "Míniú críochnúil",
|
||||
"Tika": "Tika",
|
||||
@@ -876,7 +878,7 @@
|
||||
"Title Auto-Generation": "Teideal Auto-Generation",
|
||||
"Title cannot be an empty string.": "Ní féidir leis an teideal a bheith ina teaghrán folamh.",
|
||||
"Title Generation Prompt": "Pras Giniúint Teideal",
|
||||
"TLS": "",
|
||||
"TLS": "TLS",
|
||||
"To access the available model names for downloading,": "Chun teacht ar na hainmneacha múnla atá ar fáil le híoslódáil,",
|
||||
"To access the GGUF models available for downloading,": "Chun rochtain a fháil ar na múnlaí GGUF atá ar fáil le híoslódáil,",
|
||||
"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "Chun rochtain a fháil ar an WebUI, déan teagmháil leis an riarthóir le do thoil. Is féidir le riarthóirí stádas úsáideora a bhainistiú ón bPainéal Riaracháin.",
|
||||
@@ -894,19 +896,19 @@
|
||||
"Too verbose": "Ró-fhocal",
|
||||
"Tool created successfully": "Uirlis cruthaithe go rathúil",
|
||||
"Tool deleted successfully": "Uirlis scriosta go rathúil",
|
||||
"Tool Description": "",
|
||||
"Tool ID": "",
|
||||
"Tool Description": "Cur síos ar an Uirlis",
|
||||
"Tool ID": "ID Uirlis",
|
||||
"Tool imported successfully": "Uirlis iompórtáilte",
|
||||
"Tool Name": "",
|
||||
"Tool Name": "Ainm Uirlis",
|
||||
"Tool updated successfully": "An uirlis nuashonraithe",
|
||||
"Tools": "Uirlisí",
|
||||
"Tools Access": "",
|
||||
"Tools Access": "Rochtain Uirlisí",
|
||||
"Tools are a function calling system with arbitrary code execution": "Is córas glaonna feidhme iad uirlisí le forghníomhú cód treallach",
|
||||
"Tools have a function calling system that allows arbitrary code execution": "Tá córas glaonna feidhme ag uirlisí a cheadaíonn forghníomhú cód treallach",
|
||||
"Tools have a function calling system that allows arbitrary code execution.": "Tá córas glaonna feidhme ag uirlisí a cheadaíonn forghníomhú cód treallach.",
|
||||
"Top K": "Barr K",
|
||||
"Top P": "Barr P",
|
||||
"Transformers": "",
|
||||
"Transformers": "Claochladáin",
|
||||
"Trouble accessing Ollama?": "Deacracht teacht ar Ollama?",
|
||||
"TTS Model": "TTS Múnla",
|
||||
"TTS Settings": "Socruithe TTS",
|
||||
@@ -915,12 +917,12 @@
|
||||
"Type Hugging Face Resolve (Download) URL": "Cineál Hugging Face Resolve (Íoslódáil) URL",
|
||||
"Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! Bhí ceist ann ag nascadh le {{provider}}.",
|
||||
"UI": "UI",
|
||||
"Unarchive All": "",
|
||||
"Unarchive All Archived Chats": "",
|
||||
"Unarchive Chat": "",
|
||||
"Unlock mysteries": "",
|
||||
"Unarchive All": "Díchartlannaigh Uile",
|
||||
"Unarchive All Archived Chats": "Díchartlannaigh Gach Comhrá Cartlainne",
|
||||
"Unarchive Chat": "Comhrá a dhíchartlannú",
|
||||
"Unlock mysteries": "Díghlasáil rúndiamhra",
|
||||
"Unpin": "Díphoráil",
|
||||
"Unravel secrets": "",
|
||||
"Unravel secrets": "Rúin a réiteach",
|
||||
"Untagged": "Gan chlib",
|
||||
"Update": "Nuashonraigh",
|
||||
"Update and Copy Link": "Nuashonraigh agus Cóipeáil Nasc",
|
||||
@@ -936,18 +938,18 @@
|
||||
"Upload Files": "Uaslódáil Comhaid",
|
||||
"Upload Pipeline": "Uaslódáil píblíne",
|
||||
"Upload Progress": "Uaslódáil an Dul",
|
||||
"URL": "",
|
||||
"URL": "URL",
|
||||
"URL Mode": "Mód URL",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Úsáid '#' san ionchur pras chun do chuid eolais a lódáil agus a chur san áireamh.",
|
||||
"Use Gravatar": "Úsáid Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "",
|
||||
"Use groups to group your users and assign permissions.": "Úsáid grúpaí chun d'úsáideoirí a ghrúpáil agus ceadanna a shannadh",
|
||||
"Use Initials": "Úsáid ceannlitreacha",
|
||||
"use_mlock (Ollama)": "use_mlock (Ollama)",
|
||||
"use_mmap (Ollama)": "use_mmap (Ollama)",
|
||||
"user": "úsáideoir",
|
||||
"User": "Úsáideoir",
|
||||
"User location successfully retrieved.": "Fuarthas suíomh an úsáideora go rathúil.",
|
||||
"Username": "",
|
||||
"Username": "Ainm Úsáideora",
|
||||
"Users": "Úsáideoirí",
|
||||
"Using the default arena model with all models. Click the plus button to add custom models.": "Ag baint úsáide as an múnla réimse réamhshocraithe le gach múnlaí. Cliceáil ar an gcnaipe móide chun múnlaí saincheaptha a chur leis.",
|
||||
"Utilize": "Úsáid",
|
||||
@@ -959,12 +961,12 @@
|
||||
"variable to have them replaced with clipboard content.": "athróg chun ábhar gearrthaisce a chur in ionad iad.",
|
||||
"Version": "Leagan",
|
||||
"Version {{selectedVersion}} of {{totalVersions}}": "Leagan {{selectedVersion}} de {{totalVersions}}",
|
||||
"Visibility": "",
|
||||
"Visibility": "Infheictheacht",
|
||||
"Voice": "Guth",
|
||||
"Voice Input": "Ionchur Gutha",
|
||||
"Warning": "Rabhadh",
|
||||
"Warning:": "Rabhadh:",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Rabhadh: Cuirfidh sé seo ar chumas úsáideoirí cód treallach a uaslódáil ar an bhfreastalaí.",
|
||||
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Rabhadh: Má nuashonraíonn tú nó má athraíonn tú do mhúnla leabaithe, beidh ort gach doiciméad a athiompórtáil.",
|
||||
"Web": "Gréasán",
|
||||
"Web API": "API Gréasáin",
|
||||
@@ -973,30 +975,30 @@
|
||||
"Web Search Engine": "Inneall Cuardaigh Gréasáin",
|
||||
"Webhook URL": "URL Webhook",
|
||||
"WebUI Settings": "Socruithe WebUI",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "",
|
||||
"What are you trying to achieve?": "",
|
||||
"What are you working on?": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "Déanfaidh WebUI iarratais ar \"{{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "Déanfaidh WebUI iarratais ar \"{{url}}/chat/completions\"",
|
||||
"What are you trying to achieve?": "Cad atá tú ag iarraidh a bhaint amach?",
|
||||
"What are you working on?": "Cad air a bhfuil tú ag obair?",
|
||||
"What’s New in": "Cad atá Nua i",
|
||||
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
|
||||
"wherever you are": "",
|
||||
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Nuair a bheidh sé cumasaithe, freagróidh an tsamhail gach teachtaireacht comhrá i bhfíor-am, ag giniúint freagra a luaithe a sheolann an t-úsáideoir teachtaireacht. Tá an mód seo úsáideach le haghaidh feidhmchláir chomhrá beo, ach d’fhéadfadh tionchar a bheith aige ar fheidhmíocht ar chrua-earraí níos moille.",
|
||||
"wherever you are": "aon áit a bhfuil tú",
|
||||
"Whisper (Local)": "Whisper (Áitiúil)",
|
||||
"Why?": "",
|
||||
"Why?": "Cén fáth?",
|
||||
"Widescreen Mode": "Mód Leathanscáileán",
|
||||
"Won": "Bhuaigh",
|
||||
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
|
||||
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "Oibríonn sé le barr-k. Beidh téacs níos éagsúla mar thoradh ar luach níos airde (m.sh., 0.95), agus ginfidh luach níos ísle (m.sh., 0.5) téacs níos dírithe agus níos coimeádaí. (Réamhshocrú: 0.9)",
|
||||
"Workspace": "Spás oibre",
|
||||
"Workspace Permissions": "",
|
||||
"Workspace Permissions": "Ceadanna Spás Oibre",
|
||||
"Write a prompt suggestion (e.g. Who are you?)": "Scríobh moladh pras (m.sh. Cé hé tú?)",
|
||||
"Write a summary in 50 words that summarizes [topic or keyword].": "Scríobh achoimre i 50 focal a dhéanann achoimre ar [ábhar nó eochairfhocal].",
|
||||
"Write something...": "Scríobh rud...",
|
||||
"Write your model template content here": "",
|
||||
"Write your model template content here": "Scríobh do mhúnla ábhar teimpléad anseo",
|
||||
"Yesterday": "Inné",
|
||||
"You": "Tú",
|
||||
"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Ní féidir leat comhrá a dhéanamh ach le comhad {{maxCount}} ar a mhéad ag an am.",
|
||||
"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Is féidir leat do chuid idirghníomhaíochtaí le LLManna a phearsantú ach cuimhní cinn a chur leis tríd an gcnaipe 'Bainistigh' thíos, rud a fhágann go mbeidh siad níos cabhrach agus níos oiriúnaí duit.",
|
||||
"You cannot upload an empty file.": "Ní féidir leat comhad folamh a uaslódáil.",
|
||||
"You do not have permission to upload files.": "",
|
||||
"You do not have permission to upload files.": "Níl cead agat comhaid a uaslódáil.",
|
||||
"You have no archived conversations.": "Níl aon chomhráite cartlainne agat.",
|
||||
"You have shared this chat": "Tá an comhrá seo roinnte agat",
|
||||
"You're a helpful assistant.": "Is cúntóir cabhrach tú.",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "Inserisci i codici lingua",
|
||||
"Enter Model ID": "",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Inserisci il tag del modello (ad esempio {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Inserisci il numero di passaggi (ad esempio 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "Contenuto del file modello",
|
||||
"Models": "Modelli",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "Altro",
|
||||
"Name": "Nome",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "言語コードを入力してください",
|
||||
"Enter Model ID": "モデルIDを入力してください。",
|
||||
"Enter model tag (e.g. {{modelTag}})": "モデルタグを入力してください (例: {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "ステップ数を入力してください (例: 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "サンプラーを入力してください(e.g. Euler a)。",
|
||||
"Enter Scheduler (e.g. Karras)": "スケジューラーを入力してください。(e.g. Karras)",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "モデルファイルの内容",
|
||||
"Models": "モデル",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "もっと見る",
|
||||
"Name": "名前",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "შეიყვანეთ ენის კოდი",
|
||||
"Enter Model ID": "",
|
||||
"Enter model tag (e.g. {{modelTag}})": "შეიყვანეთ მოდელის ტეგი (მაგ. {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "შეიყვანეთ ნაბიჯების რაოდენობა (მაგ. 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "მოდელური ფაილის კონტენტი",
|
||||
"Models": "მოდელები",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "ვრცლად",
|
||||
"Name": "სახელი",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "언어 코드 입력",
|
||||
"Enter Model ID": "모델 ID 입력",
|
||||
"Enter model tag (e.g. {{modelTag}})": "모델 태그 입력(예: {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "단계 수 입력(예: 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "샘플러 입력 (예: 오일러 a(Euler a))",
|
||||
"Enter Scheduler (e.g. Karras)": "스케쥴러 입력 (예: 카라스(Karras))",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "Modelfile 내용",
|
||||
"Models": "모델",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "더보기",
|
||||
"More": "더보기",
|
||||
"Name": "이름",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "Įveskite kalbos kodus",
|
||||
"Enter Model ID": "",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Įveskite modelio žymą (pvz. {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Įveskite žingsnių kiekį (pvz. 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "Modelio failo turinys",
|
||||
"Models": "Modeliai",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "Daugiau",
|
||||
"Name": "Pavadinimas",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "Masukkan kod bahasa",
|
||||
"Enter Model ID": "",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Masukkan tag model (cth {{ modelTag }})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Masukkan Bilangan Langkah (cth 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "Kandungan Modelfail",
|
||||
"Models": "Model",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "Lagi",
|
||||
"Name": "Nama",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "Angi språkkoder",
|
||||
"Enter Model ID": "Angi modellens ID",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Angi modellens etikett (f.eks. {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Angi antall steg (f.eks. 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "Angi Sampler (e.g. Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Angi Scheduler (f.eks. Karras)",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "Modellfilinnhold",
|
||||
"Models": "Modeller",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "mer",
|
||||
"More": "Mer",
|
||||
"Name": "Navn",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "Voeg taal codes toe",
|
||||
"Enter Model ID": "Voer model-ID in",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Voeg model tag toe (Bijv. {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Voeg aantal stappen toe (Bijv. 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "Voer Sampler in (bv. Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Voer Scheduler in (bv. Karras)",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "Modelfile Inhoud",
|
||||
"Models": "Modellen",
|
||||
"Models Access": "Modellentoegang",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "Meer",
|
||||
"More": "Meer",
|
||||
"Name": "Naam",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "ਭਾਸ਼ਾ ਕੋਡ ਦਰਜ ਕਰੋ",
|
||||
"Enter Model ID": "",
|
||||
"Enter model tag (e.g. {{modelTag}})": "ਮਾਡਲ ਟੈਗ ਦਰਜ ਕਰੋ (ਉਦਾਹਰਣ ਲਈ {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "ਕਦਮਾਂ ਦੀ ਗਿਣਤੀ ਦਰਜ ਕਰੋ (ਉਦਾਹਰਣ ਲਈ 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "ਮਾਡਲਫਾਈਲ ਸਮੱਗਰੀ",
|
||||
"Models": "ਮਾਡਲ",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "ਹੋਰ",
|
||||
"Name": "ਨਾਮ",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "Wprowadź kody języków",
|
||||
"Enter Model ID": "",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Wprowadź tag modelu (np. {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Wprowadź liczbę kroków (np. 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "Zawartość pliku modelu",
|
||||
"Models": "Modele",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "Więcej",
|
||||
"Name": "Nazwa",
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
"Account Activation Pending": "Ativação da Conta Pendente",
|
||||
"Accurate information": "Informação precisa",
|
||||
"Actions": "Ações",
|
||||
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
|
||||
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Ativar esse comando no chat digitando \"/{{COMMAND}}\"",
|
||||
"Active Users": "Usuários Ativos",
|
||||
"Add": "Adicionar",
|
||||
"Add a model ID": "Adicione um ID de modelo",
|
||||
@@ -43,26 +43,26 @@
|
||||
"Admin": "Admin",
|
||||
"Admin Panel": "Painel do Admin",
|
||||
"Admin Settings": "Configurações do Admin",
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Os admins têm acesso a todas as ferramentas o tempo todo; os usuários precisam de ferramentas atribuídas por modelo no workspace.",
|
||||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Os admins têm acesso a todas as ferramentas o tempo todo; os usuários precisam de ferramentas atribuídas, por modelo, no workspace.",
|
||||
"Advanced Parameters": "Parâmetros Avançados",
|
||||
"Advanced Params": "Parâmetros Avançados",
|
||||
"All chats": "Todos os chats",
|
||||
"All Documents": "Todos os Documentos",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "Permitir exclusão de Chats",
|
||||
"All models deleted successfully": "Todos os modelos foram excluídos com sucesso",
|
||||
"Allow Chat Delete": "Permitir Exclusão de Chats",
|
||||
"Allow Chat Deletion": "Permitir Exclusão de Chats",
|
||||
"Allow Chat Edit": "Permitir edição de Chats",
|
||||
"Allow File Upload": "Permitir envio de arquivos",
|
||||
"Allow Chat Edit": "Permitir Edição de Chats",
|
||||
"Allow File Upload": "Permitir Envio de arquivos",
|
||||
"Allow non-local voices": "Permitir vozes não locais",
|
||||
"Allow Temporary Chat": "Permitir Conversa Temporária",
|
||||
"Allow User Location": "Permitir Localização do Usuário",
|
||||
"Allow Voice Interruption in Call": "Permitir Interrupção de Voz na Chamada",
|
||||
"Already have an account?": "Já tem uma conta?",
|
||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
|
||||
"Amazing": "",
|
||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternativa ao 'top_p', e visa garantir um equilíbrio entre qualidade e variedade. O parâmetro 'p' representa a probabilidade mínima para que um token seja considerado, em relação à probabilidade do token mais provável. Por exemplo, com 'p=0.05' e o token mais provável com probabilidade de '0.9', as predições com valor inferior a '0.045' são filtrados. (Default: 0.0)",
|
||||
"Amazing": "Incrível",
|
||||
"an assistant": "um assistente",
|
||||
"and": "e",
|
||||
"and {{COUNT}} more": "e {{COUNT}} mais",
|
||||
"and {{COUNT}} more": "e mais {{COUNT}}",
|
||||
"and create a new shared link.": "e criar um novo link compartilhado.",
|
||||
"API Base URL": "URL Base da API",
|
||||
"API Key": "Chave API",
|
||||
@@ -76,9 +76,9 @@
|
||||
"Archive All Chats": "Arquivar Todos os Chats",
|
||||
"Archived Chats": "Chats Arquivados",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Você tem certeza que deseja arquivar todos os chats?",
|
||||
"Are you sure you want to unarchive all archived chats?": "Você tem certeza que deseja desarquivar todos os chats arquivados?",
|
||||
"Are you sure?": "Você tem certeza?",
|
||||
"Arena Models": "Modelos Arena",
|
||||
"Arena Models": "Arena de Modelos",
|
||||
"Artifacts": "Artefatos",
|
||||
"Ask a question": "Faça uma pergunta",
|
||||
"Assistant": "Assistente",
|
||||
@@ -96,13 +96,13 @@
|
||||
"AUTOMATIC1111 Base URL is required.": "URL Base AUTOMATIC1111 é necessária.",
|
||||
"Available list": "Lista disponível",
|
||||
"available!": "disponível!",
|
||||
"Awful": "",
|
||||
"Awful": "Horrível",
|
||||
"Azure AI Speech": "",
|
||||
"Azure Region": "",
|
||||
"Back": "Voltar",
|
||||
"Bad Response": "Resposta Ruim",
|
||||
"Banners": "Banners",
|
||||
"Base Model (From)": "Modelo Base (From)",
|
||||
"Base Model (From)": "Modelo Base (De)",
|
||||
"Batch Size (num_batch)": "Tamanho do Lote (num_batch)",
|
||||
"before": "antes",
|
||||
"Being lazy": "Sendo preguiçoso",
|
||||
@@ -116,10 +116,10 @@
|
||||
"Camera": "Câmera",
|
||||
"Cancel": "Cancelar",
|
||||
"Capabilities": "Capacidades",
|
||||
"Certificate Path": "",
|
||||
"Certificate Path": "Caminho do Certificado",
|
||||
"Change Password": "Mudar Senha",
|
||||
"Character": "Caracter",
|
||||
"Chart new frontiers": "",
|
||||
"Chart new frontiers": "Trace novas fronteiras",
|
||||
"Chat": "Chat",
|
||||
"Chat Background Image": "Imagem de Fundo do Chat",
|
||||
"Chat Bubble UI": "Interface de Bolha de Chat",
|
||||
@@ -147,7 +147,7 @@
|
||||
"Click here to learn more about faster-whisper and see the available models.": "Clique aqui para aprender mais sobre Whisper e ver os modelos disponíveis.",
|
||||
"Click here to select": "Clique aqui para enviar",
|
||||
"Click here to select a csv file.": "Clique aqui para enviar um arquivo csv.",
|
||||
"Click here to select a py file.": "Clique aqui para enviar um arquivo py.",
|
||||
"Click here to select a py file.": "Clique aqui para enviar um arquivo python.",
|
||||
"Click here to upload a workflow.json file.": "Clique aqui para enviar um arquivo workflow.json.",
|
||||
"click here.": "clique aqui.",
|
||||
"Click on the user role button to change a user's role.": "Clique no botão de função do usuário para alterar a função de um usuário.",
|
||||
@@ -174,7 +174,7 @@
|
||||
"Contact Admin for WebUI Access": "Contate o Admin para Acesso ao WebUI",
|
||||
"Content": "Conteúdo",
|
||||
"Content Extraction": "Extração de Conteúdo",
|
||||
"Context Length": "Context Length",
|
||||
"Context Length": "Tamanho de Contexto",
|
||||
"Continue Response": "Continuar Resposta",
|
||||
"Continue with {{provider}}": "Continuar com {{provider}}",
|
||||
"Continue with Email": "Continuar com Email",
|
||||
@@ -196,8 +196,8 @@
|
||||
"Create a model": "Criar um modelo",
|
||||
"Create Account": "Criar Conta",
|
||||
"Create Admin Account": "Criar Conta de Admin",
|
||||
"Create Group": "Criar grupo",
|
||||
"Create Knowledge": "Criar conhecimento",
|
||||
"Create Group": "Criar Grupo",
|
||||
"Create Knowledge": "Criar Conhecimento",
|
||||
"Create new key": "Criar nova chave",
|
||||
"Create new secret key": "Criar nova chave secreta",
|
||||
"Created at": "Criado em",
|
||||
@@ -216,27 +216,27 @@
|
||||
"Default Model": "Modelo Padrão",
|
||||
"Default model updated": "Modelo padrão atualizado",
|
||||
"Default permissions": "Permissões padrão",
|
||||
"Default permissions updated successfully": "",
|
||||
"Default permissions updated successfully": "Permissões padrão atualizadas com sucesso",
|
||||
"Default Prompt Suggestions": "Sugestões de Prompt Padrão",
|
||||
"Default to 389 or 636 if TLS is enabled": "",
|
||||
"Default to ALL": "Padrão para todos",
|
||||
"Default to ALL": "Padrão para TODOS",
|
||||
"Default User Role": "Padrão para novos usuários",
|
||||
"Delete": "Deletar",
|
||||
"Delete a model": "Deletar um modelo",
|
||||
"Delete All Chats": "Deletar Todos os Chats",
|
||||
"Delete All Models": "",
|
||||
"Delete chat": "Deletar chat",
|
||||
"Delete Chat": "Deletar Chat",
|
||||
"Delete chat?": "Deletar chat?",
|
||||
"Delete folder?": "Deletar pasta?",
|
||||
"Delete function?": "Deletar função?",
|
||||
"Delete prompt?": "Deletar prompt?",
|
||||
"delete this link": "deletar este link",
|
||||
"Delete tool?": "Deletar ferramenta?",
|
||||
"Delete User": "Deletar Usuário",
|
||||
"Deleted {{deleteModelTag}}": "Deletado {{deleteModelTag}}",
|
||||
"Deleted {{name}}": "Deletado {{name}}",
|
||||
"Deleted User": "",
|
||||
"Delete": "Excluir",
|
||||
"Delete a model": "Excluir um modelo",
|
||||
"Delete All Chats": "Excluir Todos os Chats",
|
||||
"Delete All Models": "Excluir Todos os Modelos",
|
||||
"Delete chat": "Excluir chat",
|
||||
"Delete Chat": "Excluir Chat",
|
||||
"Delete chat?": "Excluir chat?",
|
||||
"Delete folder?": "Excluir pasta?",
|
||||
"Delete function?": "Excluir função?",
|
||||
"Delete prompt?": "Excluir prompt?",
|
||||
"delete this link": "Excluir este link",
|
||||
"Delete tool?": "Excluir ferramenta?",
|
||||
"Delete User": "Excluir Usuário",
|
||||
"Deleted {{deleteModelTag}}": "Excluído {{deleteModelTag}}",
|
||||
"Deleted {{name}}": "Excluído {{name}}",
|
||||
"Deleted User": "Usuário Excluído",
|
||||
"Describe your knowledge base and objectives": "Descreva sua base de conhecimento e objetivos",
|
||||
"Description": "Descrição",
|
||||
"Didn't fully follow instructions": "Não seguiu completamente as instruções",
|
||||
@@ -254,7 +254,7 @@
|
||||
"Display": "Exibir",
|
||||
"Display Emoji in Call": "Exibir Emoji na Chamada",
|
||||
"Display the username instead of You in the Chat": "Exibir o nome de usuário em vez de Você no Chat",
|
||||
"Displays citations in the response": "",
|
||||
"Displays citations in the response": "Exibir citações na resposta",
|
||||
"Dive into knowledge": "Explorar base de conhecimento",
|
||||
"Do not install functions from sources you do not fully trust.": "Não instale funções de fontes que você não confia totalmente.",
|
||||
"Do not install tools from sources you do not fully trust.": "Não instale ferramentas de fontes que você não confia totalmente.",
|
||||
@@ -270,23 +270,23 @@
|
||||
"Download": "Baixar",
|
||||
"Download canceled": "Download cancelado",
|
||||
"Download Database": "Baixar Banco de Dados",
|
||||
"Drag and drop a file to upload or select a file to view": "",
|
||||
"Drag and drop a file to upload or select a file to view": "Arraste e solte um arquivo para enviar ou selecione um arquivo para visualizar",
|
||||
"Draw": "Empate",
|
||||
"Drop any files here to add to the conversation": "Solte qualquer arquivo aqui para adicionar à conversa",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "por exemplo, '30s', '10m'. Unidades de tempo válidas são 's', 'm', 'h'.",
|
||||
"e.g. A filter to remove profanity from text": "Exemplo: Um filtro para remover o homofobia de texto",
|
||||
"e.g. My Filter": "Exemplo: Um filtro",
|
||||
"e.g. My Tools": "Exemplo: Minhas ferramentas",
|
||||
"e.g. A filter to remove profanity from text": "Exemplo: Um filtro para remover palavrões do texto",
|
||||
"e.g. My Filter": "Exemplo: Meu Filtro",
|
||||
"e.g. My Tools": "Exemplo: Minhas Ferramentas",
|
||||
"e.g. my_filter": "Exemplo: my_filter",
|
||||
"e.g. my_tools": "Exemplo: my_tools",
|
||||
"e.g. Tools for performing various operations": "Exemplo: Ferramentas para executar operações diversas",
|
||||
"Edit": "Editar",
|
||||
"Edit Arena Model": "Editar Modelo Arena",
|
||||
"Edit Connection": "Editar conexão",
|
||||
"Edit Default Permissions": "Editar permissões padrão",
|
||||
"Edit Arena Model": "Editar Arena de Modelos",
|
||||
"Edit Connection": "Editar Conexão",
|
||||
"Edit Default Permissions": "Editar Permissões Padrão",
|
||||
"Edit Memory": "Editar Memória",
|
||||
"Edit User": "Editar Usuário",
|
||||
"Edit User Group": "Editar grupo de usuários",
|
||||
"Edit User Group": "Editar Grupo de Usuários",
|
||||
"ElevenLabs": "",
|
||||
"Email": "Email",
|
||||
"Embark on adventures": "Embarque em aventuras",
|
||||
@@ -294,15 +294,15 @@
|
||||
"Embedding Model": "Modelo de Embedding",
|
||||
"Embedding Model Engine": "Motor do Modelo de Embedding",
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Modelo de embedding definido para \"{{embedding_model}}\"",
|
||||
"Enable API Key Auth": "",
|
||||
"Enable API Key Auth": "Ativar Autenticação por API Key",
|
||||
"Enable Community Sharing": "Ativar Compartilhamento com a Comunidade",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Habilite o bloqueio de memória (mlock) para evitar que os dados do modelo sejam transferidos da RAM para a área de troca (swap). Essa opção bloqueia o conjunto de páginas em uso pelo modelo na RAM, garantindo que elas não sejam transferidas para o disco. Isso pode ajudar a manter o desempenho, evitando falhas de página e garantindo acesso rápido aos dados.",
|
||||
"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "Habilite o mapeamento de memória (mmap) para carregar dados do modelo. Esta opção permite que o sistema use o armazenamento em disco como uma extensão da RAM, tratando os arquivos do disco como se estivessem na RAM. Isso pode melhorar o desempenho do modelo, permitindo acesso mais rápido aos dados. No entanto, pode não funcionar corretamente com todos os sistemas e consumir uma quantidade significativa de espaço em disco.",
|
||||
"Enable Message Rating": "Habilitar Avaliação de Mensagens",
|
||||
"Enable Message Rating": "Ativar Avaliação de Mensagens",
|
||||
"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Habilite a amostragem Mirostat para controlar a perplexidade. (Padrão: 0, 0 = Desativado, 1 = Mirostat, 2 = Mirostat 2.0)",
|
||||
"Enable New Sign Ups": "Ativar Novos Cadastros",
|
||||
"Enable Retrieval Query Generation": "",
|
||||
"Enable Tags Generation": "Habilitar geração de Tags",
|
||||
"Enable Retrieval Query Generation": "Ativar Geração Baseada em Busca",
|
||||
"Enable Tags Generation": "Habilitar Geração de Tags",
|
||||
"Enable Web Search": "Ativar Pesquisa na Web",
|
||||
"Enable Web Search Query Generation": "Habilitar Geração de Consultas na Web",
|
||||
"Enabled": "Ativado",
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "Digite os códigos de idioma",
|
||||
"Enter Model ID": "Digite o ID do modelo",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Digite a tag do modelo (por exemplo, {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "Digite a Chave API do Mojeek Search",
|
||||
"Enter Number of Steps (e.g. 50)": "Digite o Número de Passos (por exemplo, 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "Digite o Sampler (por exemplo, Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Digite o Agendador (por exemplo, Karras)",
|
||||
@@ -358,11 +359,11 @@
|
||||
"Enter Your Username": "Digite seu usuário",
|
||||
"Error": "Erro",
|
||||
"ERROR": "",
|
||||
"Evaluations": "Evoluções",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Examplo: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Examplo: ALL",
|
||||
"Example: ou=users,dc=foo,dc=example": "Examplo: ou=users,dc=foo,dc=example",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "Examplo: sAMAccountName or uid or userPrincipalName",
|
||||
"Evaluations": "Avaliações",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Exemplo: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Exemplo: ALL",
|
||||
"Example: ou=users,dc=foo,dc=example": "Exemplo: ou=users,dc=foo,dc=example",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "Exemplo: sAMAccountName ou uid ou userPrincipalName",
|
||||
"Exclude": "Excluir",
|
||||
"Experimental": "Experimental",
|
||||
"Explore the cosmos": "Explorar o cosmos",
|
||||
@@ -386,7 +387,7 @@
|
||||
"Failed to upload file.": "Falha ao carregar o arquivo.",
|
||||
"February": "Fevereiro",
|
||||
"Feedback History": "Histórico de comentários",
|
||||
"Feedbacks": "",
|
||||
"Feedbacks": "Comentários",
|
||||
"Feel free to add specific details": "Sinta-se à vontade para adicionar detalhes específicos",
|
||||
"File": "Arquivo",
|
||||
"File added successfully.": "Arquivo adicionado com sucesso.",
|
||||
@@ -402,23 +403,23 @@
|
||||
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Falsificação de impressão digital detectada: Não foi possível usar as iniciais como avatar. Usando a imagem de perfil padrão.",
|
||||
"Fluidly stream large external response chunks": "Transmitir fluentemente grandes blocos de respostas externas",
|
||||
"Focus chat input": "Focar entrada de chat",
|
||||
"Folder deleted successfully": "Pasta deletada com sucesso",
|
||||
"Folder name cannot be empty": "Nome da pasta não pode estar vazia",
|
||||
"Folder name cannot be empty.": "Nome da pasta não pode estar vazia.",
|
||||
"Folder deleted successfully": "Pasta excluída com sucesso",
|
||||
"Folder name cannot be empty": "Nome da pasta não pode estar vazio",
|
||||
"Folder name cannot be empty.": "Nome da pasta não pode estar vazio.",
|
||||
"Folder name updated successfully": "Nome da pasta atualizado com sucesso",
|
||||
"Followed instructions perfectly": "Seguiu as instruções perfeitamente",
|
||||
"Forge new paths": "Trilhar novos caminhos",
|
||||
"Form": "Formulário",
|
||||
"Format your variables using brackets like this:": "Formate suas variáveis usando colchetes como este:",
|
||||
"Frequency Penalty": "Frequency Penalty",
|
||||
"Frequency Penalty": "Penalização por Frequência",
|
||||
"Function": "Função",
|
||||
"Function created successfully": "Função criada com sucesso",
|
||||
"Function deleted successfully": "Função deletada com sucesso",
|
||||
"Function Description": "Descrição da função",
|
||||
"Function deleted successfully": "Função excluída com sucesso",
|
||||
"Function Description": "Descrição da Função",
|
||||
"Function ID": "ID da Função",
|
||||
"Function is now globally disabled": "A função está agora desativada globalmente",
|
||||
"Function is now globally enabled": "A função está agora ativada globalmente",
|
||||
"Function Name": "Nome da função",
|
||||
"Function Name": "Nome da Função",
|
||||
"Function updated successfully": "Função atualizada com sucesso",
|
||||
"Functions": "Funções",
|
||||
"Functions allow arbitrary code execution": "Funções permitem a execução arbitrária de código",
|
||||
@@ -436,9 +437,9 @@
|
||||
"Google PSE API Key": "Chave API do Google PSE",
|
||||
"Google PSE Engine Id": "ID do Motor do Google PSE",
|
||||
"Group created successfully": "Grupo criado com sucesso",
|
||||
"Group deleted successfully": "Grupo deletado com sucesso",
|
||||
"Group Description": "Descrição do grupo",
|
||||
"Group Name": "Nome do grupo",
|
||||
"Group deleted successfully": "Grupo excluído com sucesso",
|
||||
"Group Description": "Descrição do Grupo",
|
||||
"Group Name": "Nome do Grupo",
|
||||
"Group updated successfully": "Grupo atualizado com sucesso",
|
||||
"Groups": "Grupos",
|
||||
"h:mm a": "h:mm a",
|
||||
@@ -446,13 +447,13 @@
|
||||
"has no conversations.": "não tem conversas.",
|
||||
"Hello, {{name}}": "Olá, {{name}}",
|
||||
"Help": "Ajuda",
|
||||
"Help us create the best community leaderboard by sharing your feedback history!": "Ajude-nos a criar o melhor ranking da comunidade compartilhando sua historial de comentaários!",
|
||||
"Help us create the best community leaderboard by sharing your feedback history!": "Ajude-nos a criar o melhor ranking da comunidade compartilhando sua historia de comentários!",
|
||||
"Hex Color": "Cor hexadecimal",
|
||||
"Hex Color - Leave empty for default color": "Cor Hexadecimal - Deixe em branco para a cor padrão",
|
||||
"Hide": "Ocultar",
|
||||
"Host": "Servidor",
|
||||
"How can I help you today?": "Como posso ajudar você hoje?",
|
||||
"How would you rate this response?": "",
|
||||
"How would you rate this response?": "Como você avalia essa resposta?",
|
||||
"Hybrid Search": "Pesquisa Híbrida",
|
||||
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Eu reconheço que li e entendi as implicações da minha ação. Estou ciente dos riscos associados à execução de código arbitrário e verifiquei a confiabilidade da fonte.",
|
||||
"ID": "",
|
||||
@@ -497,7 +498,7 @@
|
||||
"Knowledge deleted successfully.": "Conhecimento excluído com sucesso.",
|
||||
"Knowledge reset successfully.": "Conhecimento resetado com sucesso.",
|
||||
"Knowledge updated successfully": "Conhecimento atualizado com sucesso",
|
||||
"Label": "",
|
||||
"Label": "Rótulo",
|
||||
"Landing Page Mode": "Modo Landing Page",
|
||||
"Language": "Idioma",
|
||||
"Last Active": "Última Atividade",
|
||||
@@ -515,13 +516,13 @@
|
||||
"LLMs can make mistakes. Verify important information.": "LLMs podem cometer erros. Verifique informações importantes.",
|
||||
"Local": "",
|
||||
"Local Models": "Modelos Locais",
|
||||
"Lost": "Negativo",
|
||||
"LTR": "LTR",
|
||||
"Lost": "Perdeu",
|
||||
"LTR": "Esquerda para Direita",
|
||||
"Made by OpenWebUI Community": "Feito pela Comunidade OpenWebUI",
|
||||
"Make sure to enclose them with": "Certifique-se de encerrá-los com",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Certifique-se de exportar um arquivo workflow.json como o formato API do ComfyUI.",
|
||||
"Manage": "Gerenciar",
|
||||
"Manage Arena Models": "Gerenciar Modelos Arena",
|
||||
"Manage Arena Models": "Gerenciar Arena de Modelos",
|
||||
"Manage Ollama": "Gerenciar Ollama",
|
||||
"Manage Ollama API Connections": "Gerenciar Conexões Ollama API",
|
||||
"Manage OpenAI API Connections": "Gerenciar Conexões OpenAI API",
|
||||
@@ -564,11 +565,12 @@
|
||||
"Model Name": "Nome do Modelo",
|
||||
"Model not selected": "Modelo não selecionado",
|
||||
"Model Params": "Parâmetros do Modelo",
|
||||
"Model Permissions": "Permissões do modelo",
|
||||
"Model Permissions": "Permissões do Modelo",
|
||||
"Model updated successfully": "Modelo atualizado com sucesso",
|
||||
"Modelfile Content": "Conteúdo do Arquivo do Modelo",
|
||||
"Models": "Modelos",
|
||||
"Models Access": "Acesso aos Modelos",
|
||||
"Mojeek Search API Key": "Chave de API Mojeel Search",
|
||||
"more": "mais",
|
||||
"More": "Mais",
|
||||
"Name": "Nome",
|
||||
@@ -582,9 +584,9 @@
|
||||
"No feedbacks found": "Comentários não encontrados",
|
||||
"No file selected": "Nenhum arquivo selecionado",
|
||||
"No files found.": "Nenhum arquivo encontrado.",
|
||||
"No groups with access, add a group to grant access": "",
|
||||
"No groups with access, add a group to grant access": "Nenhum grupo com acesso, adicione um grupo para dar acesso",
|
||||
"No HTML, CSS, or JavaScript content found.": "Nenhum conteúdo HTML, CSS ou JavaScript encontrado.",
|
||||
"No knowledge found": "nenhum conhecimento encontrado",
|
||||
"No knowledge found": "Nenhum conhecimento encontrado",
|
||||
"No model IDs": "Nenhum ID de modelo",
|
||||
"No models found": "Nenhum modelo encontrado",
|
||||
"No results found": "Nenhum resultado encontrado",
|
||||
@@ -599,8 +601,8 @@
|
||||
"Notes": "Notas",
|
||||
"Notifications": "Notificações",
|
||||
"November": "Novembro",
|
||||
"num_gpu (Ollama)": "",
|
||||
"num_thread (Ollama)": "num_thread (Ollama)",
|
||||
"num_gpu (Ollama)": "Número de GPUs (Ollama)",
|
||||
"num_thread (Ollama)": "Número de Threads (Ollama)",
|
||||
"OAuth ID": "OAuth ID",
|
||||
"October": "Outubro",
|
||||
"Off": "Desligado",
|
||||
@@ -609,7 +611,7 @@
|
||||
"Ollama": "Ollama",
|
||||
"Ollama API": "API Ollama",
|
||||
"Ollama API disabled": "API Ollama desativada",
|
||||
"Ollama API settings updated": "",
|
||||
"Ollama API settings updated": "Configurações da API Ollama atualizadas",
|
||||
"Ollama Version": "Versão Ollama",
|
||||
"On": "Ligado",
|
||||
"Only alphanumeric characters and hyphens are allowed": "Somente caracteres alfanuméricos e hífens são permitidos",
|
||||
@@ -623,7 +625,7 @@
|
||||
"Open file": "Abrir arquivo",
|
||||
"Open in full screen": "Abrir em tela cheia",
|
||||
"Open new chat": "Abrir novo chat",
|
||||
"Open WebUI uses faster-whisper internally.": "Open WebUI usa reconhecimento de fala rápido mais rápido internamente.",
|
||||
"Open WebUI uses faster-whisper internally.": "Open WebUI usa faster-whisper internamente.",
|
||||
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "A Open WebUI usa os embeddings de voz do SpeechT5 e do CMU Arctic.",
|
||||
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "A versão do Open WebUI (v{{OPEN_WEBUI_VERSION}}) é inferior à versão necessária (v{{REQUIRED_VERSION}})",
|
||||
"OpenAI": "OpenAI",
|
||||
@@ -640,7 +642,7 @@
|
||||
"Overview": "Visão Geral",
|
||||
"page": "página",
|
||||
"Password": "Senha",
|
||||
"Paste Large Text as File": "",
|
||||
"Paste Large Text as File": "Cole Textos Longos como Arquivo",
|
||||
"PDF document (.pdf)": "Documento PDF (.pdf)",
|
||||
"PDF Extract Images (OCR)": "Extrair Imagens do PDF (OCR)",
|
||||
"pending": "pendente",
|
||||
@@ -651,7 +653,7 @@
|
||||
"Personalization": "Personalização",
|
||||
"Pin": "Fixar",
|
||||
"Pinned": "Fixado",
|
||||
"Pioneer insights": "",
|
||||
"Pioneer insights": "Insights pioneiros",
|
||||
"Pipeline deleted successfully": "Pipeline excluído com sucesso",
|
||||
"Pipeline downloaded successfully": "Pipeline baixado com sucesso",
|
||||
"Pipelines": "Pipelines",
|
||||
@@ -679,7 +681,7 @@
|
||||
"Prompts Access": "Acessar prompts",
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Obter \"{{searchValue}}\" de Ollama.com",
|
||||
"Pull a model from Ollama.com": "Obter um modelo de Ollama.com",
|
||||
"Query Generation Prompt": "",
|
||||
"Query Generation Prompt": "Prompt de Geração de Consulta",
|
||||
"Query Params": "Parâmetros de Consulta",
|
||||
"RAG Template": "Modelo RAG",
|
||||
"Rating": "Avaliação",
|
||||
@@ -687,11 +689,11 @@
|
||||
"Read Aloud": "Ler em Voz Alta",
|
||||
"Record voice": "Gravar voz",
|
||||
"Redirecting you to OpenWebUI Community": "Redirecionando você para a Comunidade OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "Reduz a probabilidade de gerar absurdos. Um valor mais alto (por exemplo, 100) dará respostas mais diversas, enquanto um valor mais baixo (por exemplo, 10) será mais conservador. (Padrão: 40)",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Refira-se como \"Usuário\" (por exemplo, \"Usuário está aprendendo espanhol\")",
|
||||
"References from": "Referências de",
|
||||
"Refused when it shouldn't have": "Recusado quando não deveria",
|
||||
"Regenerate": "Regenerar",
|
||||
"Regenerate": "Gerar novamente",
|
||||
"Release Notes": "Notas de Lançamento",
|
||||
"Relevance": "Relevância",
|
||||
"Remove": "Remover",
|
||||
@@ -713,13 +715,13 @@
|
||||
"Role": "Função",
|
||||
"Rosé Pine": "Rosé Pine",
|
||||
"Rosé Pine Dawn": "Rosé Pine Dawn",
|
||||
"RTL": "RTL",
|
||||
"RTL": "Direita para Esquerda",
|
||||
"Run": "Executar",
|
||||
"Running": "Executando",
|
||||
"Save": "Salvar",
|
||||
"Save & Create": "Salvar e Criar",
|
||||
"Save & Update": "Salvar e Atualizar",
|
||||
"Save As Copy": "Salvar como cópia",
|
||||
"Save As Copy": "Salvar Como Cópia",
|
||||
"Save Tag": "Salvar Tag",
|
||||
"Saved": "Armazenado",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Salvar registros de chat diretamente no armazenamento do seu navegador não é mais suportado. Por favor, reserve um momento para baixar e excluir seus registros de chat clicando no botão abaixo. Não se preocupe, você pode facilmente reimportar seus registros de chat para o backend através de",
|
||||
@@ -729,17 +731,17 @@
|
||||
"Search Base": "Pesquisar base",
|
||||
"Search Chats": "Pesquisar Chats",
|
||||
"Search Collection": "Pesquisar Coleção",
|
||||
"Search Filters": "Pesquisar filtros",
|
||||
"Search Filters": "Pesquisar Filtros",
|
||||
"search for tags": "Pesquisar por tags",
|
||||
"Search Functions": "Pesquisar Funções",
|
||||
"Search Knowledge": "Pesquisar conhecimento",
|
||||
"Search Knowledge": "Pesquisar Conhecimento",
|
||||
"Search Models": "Pesquisar Modelos",
|
||||
"Search options": "Opções de pesquisa",
|
||||
"Search Prompts": "Pesquisar Prompts",
|
||||
"Search Prompts": "Prompts de Pesquisa",
|
||||
"Search Result Count": "Contagem de Resultados da Pesquisa",
|
||||
"Search the web": "Pesquisar web",
|
||||
"Search Tools": "Pesquisar Ferramentas",
|
||||
"SearchApi API Key": "Pesquisar SearchApi key",
|
||||
"SearchApi API Key": "Chave API SearchApi",
|
||||
"SearchApi Engine": "Motor SearchApi",
|
||||
"Searched {{count}} sites_one": "Pesquisou {{count}} sites_one",
|
||||
"Searched {{count}} sites_many": "Pesquisou {{count}} sites_many",
|
||||
@@ -758,8 +760,8 @@
|
||||
"Select a pipeline": "Selecione um pipeline",
|
||||
"Select a pipeline url": "Selecione uma URL de pipeline",
|
||||
"Select a tool": "Selecione uma ferramenta",
|
||||
"Select Engine": "Selecionar motor",
|
||||
"Select Knowledge": "Selecionar conhecimento",
|
||||
"Select Engine": "Selecionar Motor",
|
||||
"Select Knowledge": "Selecionar Conhecimento",
|
||||
"Select model": "Selecionar modelo",
|
||||
"Select only one model to call": "Selecione apenas um modelo para chamar",
|
||||
"Selected model(s) do not support image inputs": "Modelo(s) selecionado(s) não suportam entradas de imagem",
|
||||
@@ -781,7 +783,7 @@
|
||||
"Set Image Size": "Definir Tamanho da Imagem",
|
||||
"Set reranking model (e.g. {{model}})": "Definir modelo de reclassificação (por exemplo, {{model}})",
|
||||
"Set Sampler": "Definir Sampler",
|
||||
"Set Scheduler": "Definir Agenda",
|
||||
"Set Scheduler": "Definir Agendador",
|
||||
"Set Steps": "Definir Etapas",
|
||||
"Set Task Model": "Definir Modelo de Tarefa",
|
||||
"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "Defina o número de dispositivos GPU usados para computação. Esta opção controla quantos dispositivos GPU (se disponíveis) são usados para processar as solicitações recebidas. Aumentar esse valor pode melhorar significativamente o desempenho para modelos otimizados para aceleração de GPU, mas também pode consumir mais energia e recursos da GPU.",
|
||||
@@ -799,7 +801,7 @@
|
||||
"Share Chat": "Compartilhar Chat",
|
||||
"Share to OpenWebUI Community": "Compartilhar com a Comunidade OpenWebUI",
|
||||
"Show": "Mostrar",
|
||||
"Show \"What's New\" modal on login": "Mostrar \"novidades\" no login",
|
||||
"Show \"What's New\" modal on login": "Mostrar \"O que há de Novo\" no login",
|
||||
"Show Admin Details in Account Pending Overlay": "Mostrar Detalhes do Administrador na Sobreposição de Conta Pendentes",
|
||||
"Show shortcuts": "Mostrar atalhos",
|
||||
"Show your support!": "Mostre seu apoio!",
|
||||
@@ -817,10 +819,10 @@
|
||||
"Speech-to-Text Engine": "Motor de Transcrição de Fala",
|
||||
"Stop": "Parar",
|
||||
"Stop Sequence": "Sequência de Parada",
|
||||
"Stream Chat Response": "",
|
||||
"Stream Chat Response": "Stream Resposta do Chat",
|
||||
"STT Model": "Modelo STT",
|
||||
"STT Settings": "Configurações STT",
|
||||
"Subtitle (e.g. about the Roman Empire)": "Legenda (por exemplo, sobre o Império Romano)",
|
||||
"Subtitle (e.g. about the Roman Empire)": "Subtítulo (por exemplo, sobre o Império Romano)",
|
||||
"Success": "Sucesso",
|
||||
"Successfully updated.": "Atualizado com sucesso.",
|
||||
"Suggested": "Sugerido",
|
||||
@@ -836,12 +838,12 @@
|
||||
"Tavily API Key": "Chave da API Tavily",
|
||||
"Tell us more:": "Conte-nos mais:",
|
||||
"Temperature": "Temperatura",
|
||||
"Template": "Modelo",
|
||||
"Template": "Template",
|
||||
"Temporary Chat": "Chat temporário",
|
||||
"Text Splitter": "Divisor de texto",
|
||||
"Text Splitter": "Divisor de Texto",
|
||||
"Text-to-Speech Engine": "Motor de Texto para Fala",
|
||||
"Tfs Z": "Tfs Z",
|
||||
"Thanks for your feedback!": "Obrigado pelo seu feedback!",
|
||||
"Thanks for your feedback!": "Obrigado pelo seu comentário!",
|
||||
"The Application Account DN you bind with for search": "O DN (Distinguished Name) da Conta de Aplicação com a qual você se conecta para pesquisa.",
|
||||
"The base to search for users": "Base para pesquisar usuários.",
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "O tamanho do lote (batch size) determina quantas solicitações de texto são processadas juntas de uma vez. Um tamanho de lote maior pode aumentar o desempenho e a velocidade do modelo, mas também requer mais memória. (Padrão: 512)",
|
||||
@@ -863,9 +865,9 @@
|
||||
"This option will delete all existing files in the collection and replace them with newly uploaded files.": "Essa opção deletará todos os arquivos existentes na coleção e todos eles serão substituídos.",
|
||||
"This response was generated by \"{{model}}\"": "Esta resposta foi gerada por \"{{model}}\"",
|
||||
"This will delete": "Isso vai excluir",
|
||||
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Esta ação deletará <strong>{{NAME}}</strong> e <strong>todos seus conteúdos</strong>.",
|
||||
"This will delete all models including custom models": "",
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Esta ação excluirá <strong>{{NAME}}</strong> e <strong>todos seus conteúdos</strong>.",
|
||||
"This will delete all models including custom models": "Isto vai excluir todos os modelos, incluindo personalizados",
|
||||
"This will delete all models including custom models and cannot be undone.": "Isto vai excluir todos os modelos, incluindo personalizados e não pode ser desfeito.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Esta ação resetará a base de conhecimento e sincronizará todos os arquivos. Deseja continuar?",
|
||||
"Thorough explanation": "Explicação detalhada",
|
||||
"Tika": "Tika",
|
||||
@@ -882,7 +884,7 @@
|
||||
"To access the GGUF models available for downloading,": "Para acessar os modelos GGUF disponíveis para download,",
|
||||
"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "Para acessar a WebUI, entre em contato com o administrador. Os administradores podem gerenciar os status dos usuários no Painel de Administração.",
|
||||
"To attach knowledge base here, add them to the \"Knowledge\" workspace first.": "Para anexar a base de conhecimento aqui, adicione-os ao espaço de trabalho \"Conhecimento\" primeiro.",
|
||||
"To protect your privacy, only ratings, model IDs, tags, and metadata are shared from your feedback—your chat logs remain private and are not included.": "",
|
||||
"To protect your privacy, only ratings, model IDs, tags, and metadata are shared from your feedback—your chat logs remain private and are not included.": "Para proteger sua privacidade, apenas classificações, IDs de modelo, tags e metadados são compartilhados a partir de seus comentários – seus registros de bate-papo permanecem privados e não são incluídos.",
|
||||
"To select actions here, add them to the \"Functions\" workspace first.": "Para selecionar ações aqui, adicione-os ao espaço de trabalho \"Ações\" primeiro.",
|
||||
"To select filters here, add them to the \"Functions\" workspace first.": "Para selecionar filtros aqui, adicione-os ao espaço de trabalho \"Funções\" primeiro.",
|
||||
"To select toolkits here, add them to the \"Tools\" workspace first.": "Para selecionar kits de ferramentas aqui, adicione-os ao espaço de trabalho \"Ferramentas\" primeiro.",
|
||||
@@ -917,8 +919,8 @@
|
||||
"Uh-oh! There was an issue connecting to {{provider}}.": "Ops! Houve um problema ao conectar-se ao {{provider}}.",
|
||||
"UI": "Interface",
|
||||
"Unarchive All": "Desarquivar tudo",
|
||||
"Unarchive All Archived Chats": "Desarquivar todos os chats arquivados",
|
||||
"Unarchive Chat": "Desarquivar chat",
|
||||
"Unarchive All Archived Chats": "Desarquivar Todos os Chats Arquivados",
|
||||
"Unarchive Chat": "Desarquivar Chat",
|
||||
"Unlock mysteries": "Desvendar mistérios",
|
||||
"Unpin": "Desfixar",
|
||||
"Unravel secrets": "Desvendar segredos",
|
||||
@@ -929,7 +931,7 @@
|
||||
"Update password": "Atualizar senha",
|
||||
"Updated": "Atualizado",
|
||||
"Updated at": "Atualizado em",
|
||||
"Updated At": "Atualizado em",
|
||||
"Updated At": "Atualizado Em",
|
||||
"Upload": "Fazer upload",
|
||||
"Upload a GGUF model": "Fazer upload de um modelo GGUF",
|
||||
"Upload directory": "Carregar diretório",
|
||||
@@ -948,9 +950,9 @@
|
||||
"user": "usuário",
|
||||
"User": "Usuário",
|
||||
"User location successfully retrieved.": "Localização do usuário recuperada com sucesso.",
|
||||
"Username": "Usuário",
|
||||
"Username": "Nome do Usuário",
|
||||
"Users": "Usuários",
|
||||
"Using the default arena model with all models. Click the plus button to add custom models.": "Usando o modelo arena padrão para todos os modelos. Clique no botão mais para adicionar modelos personalizados.",
|
||||
"Using the default arena model with all models. Click the plus button to add custom models.": "Usando a arena de modelos padrão para todos os modelos. Clique no botão mais para adicionar modelos personalizados.",
|
||||
"Utilize": "Utilizar",
|
||||
"Valid time units:": "Unidades de tempo válidas:",
|
||||
"Valves": "Válvulas",
|
||||
@@ -977,21 +979,21 @@
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "A WebUI fará requisições para \"{{url}}/api/chat\".",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "A WebUI fará requisições para \"{{url}}/chat/completions\".",
|
||||
"What are you trying to achieve?": "O que está tentando alcançar?",
|
||||
"What are you working on?": "O que está trabalhando?",
|
||||
"What are you working on?": "No que está trabalhando?",
|
||||
"What’s New in": "O que há de novo em",
|
||||
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Quando habilitado, o modelo responderá a cada mensagem de chat em tempo real, gerando uma resposta assim que o usuário enviar uma mensagem. Este modo é útil para aplicativos de chat ao vivo, mas pode impactar o desempenho em hardware mais lento.",
|
||||
"wherever you are": "Onde quer que você esteja.",
|
||||
"wherever you are": "onde quer que você esteja.",
|
||||
"Whisper (Local)": "Whisper (Local)",
|
||||
"Why?": "",
|
||||
"Why?": "Por que",
|
||||
"Widescreen Mode": "Modo Tela Cheia",
|
||||
"Won": "Positivo",
|
||||
"Won": "Ganhou",
|
||||
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "Funciona em conjunto com o top-k. Um valor mais alto (por exemplo, 0,95) levará a um texto mais diversificado, enquanto um valor mais baixo (por exemplo, 0,5) gerará um texto mais focado e conservador. (Padrão: 0,9)",
|
||||
"Workspace": "Espaço de Trabalho",
|
||||
"Workspace Permissions": "Permissões do espaço de trabalho",
|
||||
"Write a prompt suggestion (e.g. Who are you?)": "Escreva uma sugestão de prompt (por exemplo, Quem é você?)",
|
||||
"Write a summary in 50 words that summarizes [topic or keyword].": "Escreva um resumo em 50 palavras que resuma [tópico ou palavra-chave].",
|
||||
"Write something...": "Escrevendo algo...",
|
||||
"Write your model template content here": "Escreva o conteúdo do modelo aqui.",
|
||||
"Write something...": "Escreva algo...",
|
||||
"Write your model template content here": "Escreva o conteúdo do template do modelo aqui.",
|
||||
"Yesterday": "Ontem",
|
||||
"You": "Você",
|
||||
"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Você só pode conversar com no máximo {{maxCount}} arquivo(s) de cada vez.",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "Escreva os códigos de idioma",
|
||||
"Enter Model ID": "",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Escreva a tag do modelo (por exemplo, {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Escreva o Número de Etapas (por exemplo, 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "Conteúdo do Ficheiro do Modelo",
|
||||
"Models": "Modelos",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "Mais",
|
||||
"Name": "Nome",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "Introduceți codurile limbilor",
|
||||
"Enter Model ID": "Introdu codul modelului",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Introduceți eticheta modelului (de ex. {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Introduceți Numărul de Pași (de ex. 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "Introduce Sampler (de exemplu, Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Introduceți Programatorul (de exemplu, Karras)",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "Conținutul Fișierului Model",
|
||||
"Models": "Modele",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "mai mult",
|
||||
"More": "Mai multe",
|
||||
"Name": "Nume",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "Введите коды языков",
|
||||
"Enter Model ID": "Введите ID модели",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Введите тег модели (например, {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Введите количество шагов (например, 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "Введите сэмплер (например, Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Введите планировщик (например, Karras)",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "Содержимое файла модели",
|
||||
"Models": "Модели",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "Больше",
|
||||
"Name": "Имя",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "Унесите кодове језика",
|
||||
"Enter Model ID": "",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Унесите ознаку модела (нпр. {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Унесите број корака (нпр. 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "Садржај модел-датотеке",
|
||||
"Models": "Модели",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "Више",
|
||||
"Name": "Име",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "Skriv språkkoder",
|
||||
"Enter Model ID": "",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Ange modelltagg (t.ex. {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Ange antal steg (t.ex. 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "Modelfilens innehåll",
|
||||
"Models": "Modeller",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "Mer",
|
||||
"Name": "Namn",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "ใส่รหัสภาษา",
|
||||
"Enter Model ID": "",
|
||||
"Enter model tag (e.g. {{modelTag}})": "ใส่แท็กโมเดล (เช่น {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "ใส่จำนวนขั้นตอน (เช่น 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "เนื้อหาของไฟล์โมเดล",
|
||||
"Models": "โมเดล",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "เพิ่มเติม",
|
||||
"Name": "ชื่อ",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "",
|
||||
"Enter Model ID": "",
|
||||
"Enter model tag (e.g. {{modelTag}})": "",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "",
|
||||
"Models": "",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "",
|
||||
"Name": "",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "Dil kodlarını girin",
|
||||
"Enter Model ID": "Model ID'sini Girin",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Model etiketini girin (örn. {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Adım Sayısını Girin (örn. 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "Örnekleyiciyi Girin (örn. Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Zamanlayıcıyı Girin (örn. Karras)",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "Model Dosyası İçeriği",
|
||||
"Models": "Modeller",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "Daha Fazla",
|
||||
"Name": "Ad",
|
||||
|
||||
@@ -7,37 +7,37 @@
|
||||
"{{user}}'s Chats": "Чати {{user}}а",
|
||||
"{{webUIName}} Backend Required": "Необхідно підключення бекенду {{webUIName}}",
|
||||
"*Prompt node ID(s) are required for image generation": "*Для генерації зображення потрібно вказати ідентифікатор(и) вузла(ів)",
|
||||
"A new version (v{{LATEST_VERSION}}) is now available.": "Нова версія (в{{LATEST_VERSION}}) зараз доступна.",
|
||||
"A new version (v{{LATEST_VERSION}}) is now available.": "Нова версія (v{{LATEST_VERSION}}) зараз доступна.",
|
||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Модель задач використовується при виконанні таких завдань, як генерація заголовків для чатів та пошукових запитів в Інтернеті",
|
||||
"a user": "користувача",
|
||||
"About": "Про програму",
|
||||
"Access": "",
|
||||
"Access Control": "",
|
||||
"Accessible to all users": "",
|
||||
"Access": "Доступ",
|
||||
"Access Control": "Контроль доступу",
|
||||
"Accessible to all users": "Доступно всім користувачам",
|
||||
"Account": "Обліковий запис",
|
||||
"Account Activation Pending": "Очікування активації облікового запису",
|
||||
"Accurate information": "Точна інформація",
|
||||
"Actions": "Дії",
|
||||
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
|
||||
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Активуйте цю команду, ввівши \"/{{COMMAND}}\" у введення чату.",
|
||||
"Active Users": "Активні користувачі",
|
||||
"Add": "Додати",
|
||||
"Add a model ID": "",
|
||||
"Add a model ID": "Додайти ID моделі",
|
||||
"Add a short description about what this model does": "Додайте короткий опис того, що робить ця модель",
|
||||
"Add a tag": "Додайте тег",
|
||||
"Add a tag": "Додайти тег",
|
||||
"Add Arena Model": "Додати модель Arena",
|
||||
"Add Connection": "",
|
||||
"Add Connection": "Додати з'єднання",
|
||||
"Add Content": "Додати вміст",
|
||||
"Add content here": "Додайте вміст сюди",
|
||||
"Add custom prompt": "Додати користувацьку підказку",
|
||||
"Add Files": "Додати файли",
|
||||
"Add Group": "",
|
||||
"Add Group": "Додати групу",
|
||||
"Add Memory": "Додати пам'ять",
|
||||
"Add Model": "Додати модель",
|
||||
"Add Tag": "Додати тег",
|
||||
"Add Tags": "Додати теги",
|
||||
"Add text content": "Додати текстовий вміст",
|
||||
"Add User": "Додати користувача",
|
||||
"Add User Group": "",
|
||||
"Add User Group": "Додати групу користувачів",
|
||||
"Adjusting these settings will apply changes universally to all users.": "Зміни в цих налаштуваннях будуть застосовані для всіх користувачів.",
|
||||
"admin": "адмін",
|
||||
"Admin": "Адмін",
|
||||
@@ -48,18 +48,18 @@
|
||||
"Advanced Params": "Розширені параметри",
|
||||
"All chats": "Усі чати",
|
||||
"All Documents": "Усі документи",
|
||||
"All models deleted successfully": "",
|
||||
"Allow Chat Delete": "",
|
||||
"All models deleted successfully": "Всі моделі видалені успішно",
|
||||
"Allow Chat Delete": "Дозволити видалення чату",
|
||||
"Allow Chat Deletion": "Дозволити видалення чату",
|
||||
"Allow Chat Edit": "",
|
||||
"Allow File Upload": "",
|
||||
"Allow Chat Edit": "Дозволити редагування чату",
|
||||
"Allow File Upload": "Дозволити завантаження файлів",
|
||||
"Allow non-local voices": "Дозволити не локальні голоси",
|
||||
"Allow Temporary Chat": "Дозволити тимчасовий чат",
|
||||
"Allow User Location": "Доступ до місцезнаходження",
|
||||
"Allow Voice Interruption in Call": "Дозволити переривання голосу під час виклику",
|
||||
"Already have an account?": "Вже є обліковий запис?",
|
||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Альтернатива параметру top_p, яка має на меті забезпечити баланс якості та різноманітності. Параметр p представляє мінімальну ймовірність для того, щоб токен був врахований, відносно ймовірності найбільш ймовірного токена. Наприклад, при p=0.05 і найбільш імовірному токені з ймовірністю 0.9, логіти зі значенням менше 0.045 будуть відфільтровані. (За замовчуванням: 0.0)",
|
||||
"Amazing": "",
|
||||
"Amazing": "Чудово",
|
||||
"an assistant": "асистента",
|
||||
"and": "та",
|
||||
"and {{COUNT}} more": "та ще {{COUNT}}",
|
||||
@@ -70,13 +70,13 @@
|
||||
"API keys": "Ключі API",
|
||||
"Application DN": "DN застосунку",
|
||||
"Application DN Password": "Пароль DN застосунку",
|
||||
"applies to all users with the \"user\" role": "",
|
||||
"applies to all users with the \"user\" role": "стосується всіх користувачів з роллю \"користувач\"",
|
||||
"April": "Квітень",
|
||||
"Archive": "Архів",
|
||||
"Archive All Chats": "Архівувати всі чати",
|
||||
"Archived Chats": "Архівовані чати",
|
||||
"archived-chat-export": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"archived-chat-export": "експорт-архівованих-чатів",
|
||||
"Are you sure you want to unarchive all archived chats?": "Ви впевнені, що хочете розархівувати всі архівовані чати?",
|
||||
"Are you sure?": "Ви впевнені?",
|
||||
"Arena Models": "Моделі Arena",
|
||||
"Artifacts": "Артефакти",
|
||||
@@ -96,7 +96,7 @@
|
||||
"AUTOMATIC1111 Base URL is required.": "Необхідна URL-адреса AUTOMATIC1111.",
|
||||
"Available list": "Список доступності",
|
||||
"available!": "доступно!",
|
||||
"Awful": "",
|
||||
"Awful": "Жахливо",
|
||||
"Azure AI Speech": "Мовлення Azure AI",
|
||||
"Azure Region": "Регіон Azure",
|
||||
"Back": "Назад",
|
||||
@@ -109,7 +109,7 @@
|
||||
"Bing Search V7 Endpoint": "Точка доступу Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Ключ підписки Bing Search V7",
|
||||
"Brave Search API Key": "Ключ API пошуку Brave",
|
||||
"By {{name}}": "",
|
||||
"By {{name}}": "Від {{name}}",
|
||||
"Bypass SSL verification for Websites": "Обхід SSL-перевірки для веб-сайтів",
|
||||
"Call": "Виклик",
|
||||
"Call feature is not supported when using Web STT engine": "Функція виклику не підтримується при використанні Web STT (розпізнавання мовлення) рушія",
|
||||
@@ -126,7 +126,7 @@
|
||||
"Chat Controls": "Керування чатом",
|
||||
"Chat direction": "Напрям чату",
|
||||
"Chat Overview": "Огляд чату",
|
||||
"Chat Permissions": "",
|
||||
"Chat Permissions": "Дозволи чату",
|
||||
"Chat Tags Auto-Generation": "Автоматична генерація тегів чату",
|
||||
"Chats": "Чати",
|
||||
"Check Again": "Перевірити ще раз",
|
||||
@@ -157,7 +157,7 @@
|
||||
"Code execution": "Виконання коду",
|
||||
"Code formatted successfully": "Код успішно відформатовано",
|
||||
"Collection": "Колекція",
|
||||
"Color": "",
|
||||
"Color": "Колір",
|
||||
"ComfyUI": "ComfyUI",
|
||||
"ComfyUI Base URL": "URL-адреса ComfyUI",
|
||||
"ComfyUI Base URL is required.": "Необхідно вказати URL-адресу ComfyUI.",
|
||||
@@ -166,7 +166,7 @@
|
||||
"Command": "Команда",
|
||||
"Completions": "Завершення",
|
||||
"Concurrent Requests": "Одночасні запити",
|
||||
"Configure": "",
|
||||
"Configure": "Налаштувати",
|
||||
"Confirm": "Підтвердити",
|
||||
"Confirm Password": "Підтвердіть пароль",
|
||||
"Confirm your action": "Підтвердіть свою дію",
|
||||
@@ -191,12 +191,12 @@
|
||||
"Copy Link": "Копіювати посилання",
|
||||
"Copy to clipboard": "Копіювати в буфер обміну",
|
||||
"Copying to clipboard was successful!": "Копіювання в буфер обміну виконано успішно!",
|
||||
"Create": "",
|
||||
"Create": "Створити",
|
||||
"Create a knowledge base": "Створити базу знань",
|
||||
"Create a model": "Створити модель",
|
||||
"Create Account": "Створити обліковий запис",
|
||||
"Create Admin Account": "Створити обліковий запис адміністратора",
|
||||
"Create Group": "",
|
||||
"Create Group": "Створити групу",
|
||||
"Create Knowledge": "Створити знання",
|
||||
"Create new key": "Створити новий ключ",
|
||||
"Create new secret key": "Створити новий секретний ключ",
|
||||
@@ -215,8 +215,8 @@
|
||||
"Default (SentenceTransformers)": "За замовчуванням (SentenceTransformers)",
|
||||
"Default Model": "Модель за замовчуванням",
|
||||
"Default model updated": "Модель за замовчуванням оновлено",
|
||||
"Default permissions": "",
|
||||
"Default permissions updated successfully": "",
|
||||
"Default permissions": "Дозволи за замовчуванням",
|
||||
"Default permissions updated successfully": "Дозволи за замовчуванням успішно оновлено",
|
||||
"Default Prompt Suggestions": "Пропозиції промтів замовчуванням",
|
||||
"Default to 389 or 636 if TLS is enabled": "За замовчуванням використовується 389 або 636, якщо TLS увімкнено.",
|
||||
"Default to ALL": "За замовчуванням — ВСІ.",
|
||||
@@ -224,7 +224,7 @@
|
||||
"Delete": "Видалити",
|
||||
"Delete a model": "Видалити модель",
|
||||
"Delete All Chats": "Видалити усі чати",
|
||||
"Delete All Models": "",
|
||||
"Delete All Models": "Видалити всі моделі",
|
||||
"Delete chat": "Видалити чат",
|
||||
"Delete Chat": "Видалити чат",
|
||||
"Delete chat?": "Видалити чат?",
|
||||
@@ -236,7 +236,7 @@
|
||||
"Delete User": "Видалити користувача",
|
||||
"Deleted {{deleteModelTag}}": "Видалено {{deleteModelTag}}",
|
||||
"Deleted {{name}}": "Видалено {{name}}",
|
||||
"Deleted User": "",
|
||||
"Deleted User": "Видалений користувач",
|
||||
"Describe your knowledge base and objectives": "Опишіть вашу базу знань та цілі",
|
||||
"Description": "Опис",
|
||||
"Didn't fully follow instructions": "Не повністю дотримувалися інструкцій",
|
||||
@@ -251,10 +251,10 @@
|
||||
"Discover, download, and explore custom tools": "Знайдіть, завантажте та досліджуйте налаштовані інструменти",
|
||||
"Discover, download, and explore model presets": "Знайдіть, завантажте та досліджуйте налаштування моделей",
|
||||
"Dismissible": "Неприйнятно",
|
||||
"Display": "",
|
||||
"Display": "Відображення",
|
||||
"Display Emoji in Call": "Відображати емодзі у викликах",
|
||||
"Display the username instead of You in the Chat": "Показувати ім'я користувача замість 'Ви' в чаті",
|
||||
"Displays citations in the response": "",
|
||||
"Displays citations in the response": "Показує посилання у відповіді",
|
||||
"Dive into knowledge": "Зануртесь у знання",
|
||||
"Do not install functions from sources you do not fully trust.": "Не встановлюйте функції з джерел, яким ви не повністю довіряєте.",
|
||||
"Do not install tools from sources you do not fully trust.": "Не встановлюйте інструменти з джерел, яким ви не повністю довіряєте.",
|
||||
@@ -270,23 +270,23 @@
|
||||
"Download": "Завантажити",
|
||||
"Download canceled": "Завантаження скасовано",
|
||||
"Download Database": "Завантажити базу даних",
|
||||
"Drag and drop a file to upload or select a file to view": "",
|
||||
"Drag and drop a file to upload or select a file to view": "Перетягніть файл для завантаження або виберіть файл для перегляду",
|
||||
"Draw": "Малювати",
|
||||
"Drop any files here to add to the conversation": "Перетягніть сюди файли, щоб додати до розмови",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "напр., '30s','10m'. Дійсні одиниці часу: 'с', 'хв', 'г'.",
|
||||
"e.g. A filter to remove profanity from text": "",
|
||||
"e.g. My Filter": "",
|
||||
"e.g. My Tools": "",
|
||||
"e.g. my_filter": "",
|
||||
"e.g. my_tools": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g. A filter to remove profanity from text": "напр., фільтр для видалення нецензурної лексики з тексту",
|
||||
"e.g. My Filter": "напр., Мій фільтр",
|
||||
"e.g. My Tools": "напр., Мої інструменти",
|
||||
"e.g. my_filter": "напр., my_filter",
|
||||
"e.g. my_tools": "напр., my_tools",
|
||||
"e.g. Tools for performing various operations": "напр., Інструменти для виконання різних операцій",
|
||||
"Edit": "Редагувати",
|
||||
"Edit Arena Model": "Редагувати модель Arena",
|
||||
"Edit Connection": "",
|
||||
"Edit Default Permissions": "",
|
||||
"Edit Connection": "Редагувати з'єднання",
|
||||
"Edit Default Permissions": "Редагувати дозволи за замовчуванням",
|
||||
"Edit Memory": "Редагувати пам'ять",
|
||||
"Edit User": "Редагувати користувача",
|
||||
"Edit User Group": "",
|
||||
"Edit User Group": "Редагувати групу користувачів",
|
||||
"ElevenLabs": "ElevenLabs",
|
||||
"Email": "Ел. пошта",
|
||||
"Embark on adventures": "Вирушайте в пригоди",
|
||||
@@ -294,14 +294,14 @@
|
||||
"Embedding Model": "Модель вбудовування",
|
||||
"Embedding Model Engine": "Рушій моделі вбудовування ",
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Встановлена модель вбудовування \"{{embedding_model}}\"",
|
||||
"Enable API Key Auth": "",
|
||||
"Enable API Key Auth": "Увімкнути автентифікацію за допомогою API ключа",
|
||||
"Enable Community Sharing": "Увімкнути спільний доступ",
|
||||
"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Увімкнути блокування пам'яті (mlock), щоб запобігти виведенню даних моделі з оперативної пам'яті. Цей параметр блокує робочий набір сторінок моделі в оперативній пам'яті, гарантуючи, що вони не будуть виведені на диск. Це може допомогти підтримувати продуктивність, уникати помилок сторінок та забезпечувати швидкий доступ до даних.",
|
||||
"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "Увімкнути відображення пам'яті (mmap) для завантаження даних моделі. Цей параметр дозволяє системі використовувати дискове сховище як розширення оперативної пам'яті, трактуючи файли на диску, як ніби вони знаходяться в RAM. Це може покращити продуктивність моделі, дозволяючи швидший доступ до даних. Однак, він може не працювати коректно на всіх системах і може споживати значну кількість дискового простору.",
|
||||
"Enable Message Rating": "Увімкнути оцінку повідомлень",
|
||||
"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Увімкнути вибірку Mirostat для контролю над непередбачуваністю. (За замовчуванням: 0, 0 = Вимкнено, 1 = Mirostat, 2 = Mirostat 2.0)",
|
||||
"Enable New Sign Ups": "Дозволити нові реєстрації",
|
||||
"Enable Retrieval Query Generation": "",
|
||||
"Enable Retrieval Query Generation": "Увімкнути генерацію запитів для вилучення",
|
||||
"Enable Tags Generation": "Увімкнути генерацію тегів",
|
||||
"Enable Web Search": "Увімкнути веб-пошук",
|
||||
"Enable Web Search Query Generation": "Увімкнути генерацію запитів для веб-пошуку",
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "Введіть мовні коди",
|
||||
"Enter Model ID": "Введіть ID моделі",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Введіть тег моделі (напр., {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "Введіть API ключ для пошуку Mojeek",
|
||||
"Enter Number of Steps (e.g. 50)": "Введіть кількість кроків (напр., 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "Введіть семплер (напр., Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Введіть планувальник (напр., Karras)",
|
||||
@@ -367,17 +368,17 @@
|
||||
"Experimental": "Експериментальне",
|
||||
"Explore the cosmos": "Досліджуйте космос",
|
||||
"Export": "Експорт",
|
||||
"Export All Archived Chats": "",
|
||||
"Export All Chats (All Users)": "Експортувати всі чати (всіх користувачів)",
|
||||
"Export All Archived Chats": "Експорт всіх архівованих чатів",
|
||||
"Export All Chats (All Users)": "Експорт всіх чатів (всіх користувачів)",
|
||||
"Export chat (.json)": "Експорт чату (.json)",
|
||||
"Export Chats": "Експортувати чати",
|
||||
"Export Config to JSON File": "Експортувати конфігурацію у файл JSON",
|
||||
"Export Chats": "Експорт чатів",
|
||||
"Export Config to JSON File": "Експорт конфігурації у файл JSON",
|
||||
"Export Functions": "Експорт функцій ",
|
||||
"Export Models": "Експорт моделей",
|
||||
"Export Presets": "",
|
||||
"Export Prompts": "Експортувати промти",
|
||||
"Export to CSV": "Експортувати в CSV",
|
||||
"Export Tools": "Експортувати інструменти",
|
||||
"Export Presets": "Експорт пресетів",
|
||||
"Export Prompts": "Експорт промтів",
|
||||
"Export to CSV": "Експорт в CSV",
|
||||
"Export Tools": "Експорт інструментів",
|
||||
"External Models": "Зовнішні моделі",
|
||||
"Failed to add file.": "Не вдалося додати файл.",
|
||||
"Failed to create API Key.": "Не вдалося створити API ключ.",
|
||||
@@ -386,7 +387,7 @@
|
||||
"Failed to upload file.": "Не вдалося завантажити файл.",
|
||||
"February": "Лютий",
|
||||
"Feedback History": "Історія відгуків",
|
||||
"Feedbacks": "",
|
||||
"Feedbacks": "Відгуки",
|
||||
"Feel free to add specific details": "Не соромтеся додавати конкретні деталі",
|
||||
"File": "Файл",
|
||||
"File added successfully.": "Файл успішно додано.",
|
||||
@@ -414,11 +415,11 @@
|
||||
"Function": "Функція",
|
||||
"Function created successfully": "Функцію успішно створено",
|
||||
"Function deleted successfully": "Функцію успішно видалено",
|
||||
"Function Description": "",
|
||||
"Function ID": "",
|
||||
"Function Description": "Опис функції",
|
||||
"Function ID": "ID функції",
|
||||
"Function is now globally disabled": "Функція зараз глобально вимкнена",
|
||||
"Function is now globally enabled": "Функція зараз глобально увімкнена ",
|
||||
"Function Name": "",
|
||||
"Function Name": "Назва функції",
|
||||
"Function updated successfully": "Функцію успішно оновлено",
|
||||
"Functions": "Функції",
|
||||
"Functions allow arbitrary code execution": "Функції дозволяють виконання довільного коду",
|
||||
@@ -435,39 +436,39 @@
|
||||
"Good Response": "Гарна відповідь",
|
||||
"Google PSE API Key": "Ключ API Google PSE",
|
||||
"Google PSE Engine Id": "Id рушія Google PSE",
|
||||
"Group created successfully": "",
|
||||
"Group deleted successfully": "",
|
||||
"Group Description": "",
|
||||
"Group Name": "",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"Group created successfully": "Групу успішно створено",
|
||||
"Group deleted successfully": "Групу успішно видалено",
|
||||
"Group Description": "Опис групи",
|
||||
"Group Name": "Назва групи",
|
||||
"Group updated successfully": "Групу успішно оновлено",
|
||||
"Groups": "Групи",
|
||||
"h:mm a": "h:mm a",
|
||||
"Haptic Feedback": "Тактильний зворотній зв'язок",
|
||||
"has no conversations.": "не має розмов.",
|
||||
"Hello, {{name}}": "Привіт, {{name}}",
|
||||
"Help": "Допоможіть",
|
||||
"Help us create the best community leaderboard by sharing your feedback history!": "Допоможіть нам створити найкращу таблицю лідерів спільноти, поділившись історією своїх відгуків!",
|
||||
"Hex Color": "",
|
||||
"Hex Color - Leave empty for default color": "",
|
||||
"Hex Color": "Шістнадцятковий колір",
|
||||
"Hex Color - Leave empty for default color": "Шістнадцятковий колір — залиште порожнім для кольору за замовчуванням",
|
||||
"Hide": "Приховати",
|
||||
"Host": "Хост",
|
||||
"How can I help you today?": "Чим я можу допомогти вам сьогодні?",
|
||||
"How would you rate this response?": "",
|
||||
"How would you rate this response?": "Як би ви оцінили цю відповідь?",
|
||||
"Hybrid Search": "Гібридний пошук",
|
||||
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Я підтверджую, що прочитав і розумію наслідки своїх дій. Я усвідомлюю ризики, пов'язані з виконанням довільного коду, і перевірив надійність джерела.",
|
||||
"ID": "Ідентифікатор",
|
||||
"ID": "ID",
|
||||
"Ignite curiosity": "Запаліть цікавість",
|
||||
"Image Generation (Experimental)": "Генерування зображень (експериментально)",
|
||||
"Image Generation Engine": "Механізм генерації зображень",
|
||||
"Image Settings": "Налаштування зображення",
|
||||
"Images": "Зображення",
|
||||
"Import Chats": "Імпортувати чати",
|
||||
"Import Config from JSON File": "Імпортувати конфігурацію з файлу JSON",
|
||||
"Import Chats": "Імпорт чатів",
|
||||
"Import Config from JSON File": "Імпорт конфігурації з файлу JSON",
|
||||
"Import Functions": "Імпорт функцій ",
|
||||
"Import Models": "Імпорт моделей",
|
||||
"Import Presets": "",
|
||||
"Import Prompts": "Імпортувати промти",
|
||||
"Import Tools": "Імпортувати інструменти",
|
||||
"Import Presets": "Імпорт пресетів",
|
||||
"Import Prompts": "Імпорт промтів",
|
||||
"Import Tools": "Імпорт інструментів",
|
||||
"Include": "Включити",
|
||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Включіть прапорець `--api-auth` під час запуску stable-diffusion-webui",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "Включіть прапор `--api` при запуску stable-diffusion-webui",
|
||||
@@ -489,10 +490,10 @@
|
||||
"JWT Expiration": "Термін дії JWT",
|
||||
"JWT Token": "Токен JWT",
|
||||
"Keep Alive": "Зберегти активність",
|
||||
"Key": "",
|
||||
"Key": "Ключ",
|
||||
"Keyboard shortcuts": "Клавіатурні скорочення",
|
||||
"Knowledge": "Знання",
|
||||
"Knowledge Access": "",
|
||||
"Knowledge Access": "Доступ до знань",
|
||||
"Knowledge created successfully.": "Знання успішно створено.",
|
||||
"Knowledge deleted successfully.": "Знання успішно видалено.",
|
||||
"Knowledge reset successfully.": "Знання успішно скинуто.",
|
||||
@@ -506,8 +507,8 @@
|
||||
"LDAP server updated": "Сервер LDAP оновлено",
|
||||
"Leaderboard": "Таблиця лідерів",
|
||||
"Leave empty for unlimited": "Залиште порожнім для необмеженого розміру",
|
||||
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "",
|
||||
"Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "Залиште порожнім, щоб включити всі моделі з кінцевої точки \"{{URL}}/api/tags\"",
|
||||
"Leave empty to include all models from \"{{URL}}/models\" endpoint": "Залиште порожнім, щоб включити всі моделі з кінцевої точки \"{{URL}}/models\"",
|
||||
"Leave empty to include all models or select specific models": "Залиште порожнім, щоб включити всі моделі, або виберіть конкретні моделі.",
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "Залиште порожнім для використання стандартного запиту, або введіть власний запит",
|
||||
"Light": "Світла",
|
||||
@@ -522,9 +523,9 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Обов'язково експортуйте файл workflow.json у форматі API з ComfyUI.",
|
||||
"Manage": "Керувати",
|
||||
"Manage Arena Models": "Керувати моделями Arena",
|
||||
"Manage Ollama": "",
|
||||
"Manage Ollama API Connections": "",
|
||||
"Manage OpenAI API Connections": "",
|
||||
"Manage Ollama": "Керувати Ollama",
|
||||
"Manage Ollama API Connections": "Керувати з'єднаннями Ollama API",
|
||||
"Manage OpenAI API Connections": "Керувати з'єднаннями OpenAI API",
|
||||
"Manage Pipelines": "Керування конвеєрами",
|
||||
"March": "Березень",
|
||||
"Max Tokens (num_predict)": "Макс токенів (num_predict)",
|
||||
@@ -558,17 +559,18 @@
|
||||
"Model accepts image inputs": "Модель приймає зображеня",
|
||||
"Model created successfully!": "Модель створено успішно!",
|
||||
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Виявлено шлях до файлової системи моделі. Для оновлення потрібно вказати коротке ім'я моделі, не вдасться продовжити.",
|
||||
"Model Filtering": "",
|
||||
"Model Filtering": "Фільтрація моделей",
|
||||
"Model ID": "ID моделі",
|
||||
"Model IDs": "",
|
||||
"Model IDs": "ID моделей",
|
||||
"Model Name": "Назва моделі",
|
||||
"Model not selected": "Модель не вибрана",
|
||||
"Model Params": "Параметри моделі",
|
||||
"Model Permissions": "",
|
||||
"Model Permissions": "Дозволи моделей",
|
||||
"Model updated successfully": "Модель успішно оновлено",
|
||||
"Modelfile Content": "Вміст файлу моделі",
|
||||
"Models": "Моделі",
|
||||
"Models Access": "",
|
||||
"Models Access": "Доступ до моделей",
|
||||
"Mojeek Search API Key": "API ключ для пошуку Mojeek",
|
||||
"more": "більше",
|
||||
"More": "Більше",
|
||||
"Name": "Ім'я",
|
||||
@@ -582,15 +584,15 @@
|
||||
"No feedbacks found": "Відгуків не знайдено",
|
||||
"No file selected": "Файл не обрано",
|
||||
"No files found.": "Файли не знайдено.",
|
||||
"No groups with access, add a group to grant access": "",
|
||||
"No groups with access, add a group to grant access": "Немає груп з доступом, додайте групу для надання доступу",
|
||||
"No HTML, CSS, or JavaScript content found.": "HTML, CSS або JavaScript контент не знайдено.",
|
||||
"No knowledge found": "Знання не знайдено.",
|
||||
"No model IDs": "",
|
||||
"No model IDs": "Немає ID моделей",
|
||||
"No models found": "Моделей не знайдено",
|
||||
"No results found": "Не знайдено жодного результату",
|
||||
"No search query generated": "Пошуковий запит не сформовано",
|
||||
"No source available": "Джерело не доступне",
|
||||
"No users were found.": "",
|
||||
"No users were found.": "Користувачів не знайдено.",
|
||||
"No valves to update": "Немає клапанів для оновлення",
|
||||
"None": "Нема",
|
||||
"Not factually correct": "Не відповідає дійсності",
|
||||
@@ -609,13 +611,13 @@
|
||||
"Ollama": "Ollama",
|
||||
"Ollama API": "Ollama API",
|
||||
"Ollama API disabled": "Ollama API вимкнено",
|
||||
"Ollama API settings updated": "",
|
||||
"Ollama API settings updated": "Налаштування Ollama API оновлено",
|
||||
"Ollama Version": "Версія Ollama",
|
||||
"On": "Увімк",
|
||||
"Only alphanumeric characters and hyphens are allowed": "",
|
||||
"Only alphanumeric characters and hyphens are allowed": "Дозволені тільки алфавітно-цифрові символи та дефіси",
|
||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "У рядку команди дозволено використовувати лише алфавітно-цифрові символи та дефіси.",
|
||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Редагувати можна лише колекції, створіть нову базу знань, щоб редагувати або додавати документи.",
|
||||
"Only select users and groups with permission can access": "",
|
||||
"Only select users and groups with permission can access": "Тільки вибрані користувачі та групи з дозволом можуть отримати доступ",
|
||||
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Упс! Схоже, що URL-адреса невірна. Будь ласка, перевірте ще раз та спробуйте ще раз.",
|
||||
"Oops! There are files still uploading. Please wait for the upload to complete.": "Упс! Деякі файли все ще завантажуються. Будь ласка, зачекайте, поки завантаження завершиться.",
|
||||
"Oops! There was an error in the previous response.": "Упс! Сталася помилка в попередній відповіді.",
|
||||
@@ -630,24 +632,24 @@
|
||||
"OpenAI API": "OpenAI API",
|
||||
"OpenAI API Config": "Конфігурація OpenAI API",
|
||||
"OpenAI API Key is required.": "Потрібен ключ OpenAI API.",
|
||||
"OpenAI API settings updated": "",
|
||||
"OpenAI API settings updated": "Налаштування OpenAI API оновлено",
|
||||
"OpenAI URL/Key required.": "Потрібен OpenAI URL/ключ.",
|
||||
"or": "або",
|
||||
"Organize your users": "",
|
||||
"Organize your users": "Організуйте своїх користувачів",
|
||||
"Other": "Інше",
|
||||
"OUTPUT": "ВИХІД",
|
||||
"Output format": "Формат відповіді",
|
||||
"Overview": "Огляд",
|
||||
"page": "сторінка",
|
||||
"Password": "Пароль",
|
||||
"Paste Large Text as File": "",
|
||||
"Paste Large Text as File": "Вставити великий текст як файл",
|
||||
"PDF document (.pdf)": "PDF документ (.pdf)",
|
||||
"PDF Extract Images (OCR)": "Розпізнавання зображень з PDF (OCR)",
|
||||
"pending": "на розгляді",
|
||||
"Permission denied when accessing media devices": "Відмовлено в доступі до медіапристроїв",
|
||||
"Permission denied when accessing microphone": "Відмовлено у доступі до мікрофона",
|
||||
"Permission denied when accessing microphone: {{error}}": "Доступ до мікрофона заборонено: {{error}}",
|
||||
"Permissions": "",
|
||||
"Permissions": "Дозволи",
|
||||
"Personalization": "Персоналізація",
|
||||
"Pin": "Зачепити",
|
||||
"Pinned": "Зачеплено",
|
||||
@@ -665,21 +667,21 @@
|
||||
"Please select a reason": "Будь ласка, виберіть причину",
|
||||
"Port": "Порт",
|
||||
"Positive attitude": "Позитивне ставлення",
|
||||
"Prefix ID": "",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||
"Prefix ID": "ID префікса",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "ID префікса використовується для уникнення конфліктів з іншими підключеннями шляхом додавання префікса до ID моделей — залиште порожнім, щоб вимкнути",
|
||||
"Previous 30 days": "Попередні 30 днів",
|
||||
"Previous 7 days": "Попередні 7 днів",
|
||||
"Profile Image": "Зображення профілю",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Підказка (напр., розкажіть мені цікавий факт про Римську імперію)",
|
||||
"Prompt Content": "Зміст промту",
|
||||
"Prompt created successfully": "",
|
||||
"Prompt created successfully": "Підказку успішно створено",
|
||||
"Prompt suggestions": "Швидкі промти",
|
||||
"Prompt updated successfully": "",
|
||||
"Prompt updated successfully": "Підказку успішно оновлено",
|
||||
"Prompts": "Промти",
|
||||
"Prompts Access": "",
|
||||
"Prompts Access": "Доступ до підказок",
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Завантажити \"{{searchValue}}\" з Ollama.com",
|
||||
"Pull a model from Ollama.com": "Завантажити модель з Ollama.com",
|
||||
"Query Generation Prompt": "",
|
||||
"Query Generation Prompt": "Підказка для генерації запиту",
|
||||
"Query Params": "Параметри запиту",
|
||||
"RAG Template": "Шаблон RAG",
|
||||
"Rating": "Оцінка",
|
||||
@@ -737,7 +739,7 @@
|
||||
"Search options": "Опції пошуку",
|
||||
"Search Prompts": "Пошук промтів",
|
||||
"Search Result Count": "Кількість результатів пошуку",
|
||||
"Search the web": "",
|
||||
"Search the web": "Шукати в Інтернеті",
|
||||
"Search Tools": "Пошуку інструментів",
|
||||
"SearchApi API Key": "Ключ API для SearchApi",
|
||||
"SearchApi Engine": "Рушій SearchApi",
|
||||
@@ -754,7 +756,7 @@
|
||||
"Select a base model": "Обрати базову модель",
|
||||
"Select a engine": "Оберіть рушій",
|
||||
"Select a function": "Оберіть функцію",
|
||||
"Select a group": "",
|
||||
"Select a group": "Вибрати групу",
|
||||
"Select a model": "Оберіть модель",
|
||||
"Select a pipeline": "Оберіть конвеєр",
|
||||
"Select a pipeline url": "Оберіть адресу конвеєра",
|
||||
@@ -777,7 +779,7 @@
|
||||
"Set as default": "Встановити за замовчуванням",
|
||||
"Set CFG Scale": "Встановити масштаб CFG",
|
||||
"Set Default Model": "Встановити модель за замовчуванням",
|
||||
"Set embedding model": "",
|
||||
"Set embedding model": "Встановити модель вбудовування",
|
||||
"Set embedding model (e.g. {{model}})": "Встановити модель вбудовування (напр, {{model}})",
|
||||
"Set Image Size": "Встановити розмір зображення",
|
||||
"Set reranking model (e.g. {{model}})": "Встановити модель переранжування (напр., {{model}})",
|
||||
@@ -865,8 +867,8 @@
|
||||
"This response was generated by \"{{model}}\"": "Цю відповідь згенеровано за допомогою \"{{model}}\"",
|
||||
"This will delete": "Це призведе до видалення",
|
||||
"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Це видалить <strong>{{NAME}}</strong> та <strong>всі його вмісти</strong>.",
|
||||
"This will delete all models including custom models": "",
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will delete all models including custom models": "Це видалить усі моделі, включаючи користувацькі моделі",
|
||||
"This will delete all models including custom models and cannot be undone.": "Це видалить усі моделі, включаючи користувацькі моделі, і не може бути скасовано.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Це скине базу знань і синхронізує всі файли. Ви бажаєте продовжити?",
|
||||
"Thorough explanation": "Детальне пояснення",
|
||||
"Tika": "Tika",
|
||||
@@ -883,7 +885,7 @@
|
||||
"To access the GGUF models available for downloading,": "Щоб отримати доступ до моделей GGUF, які можна завантажити,,",
|
||||
"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "Щоб отримати доступ до веб-інтерфейсу, зверніться до адміністратора. Адміністратори можуть керувати статусами користувачів з Панелі адміністратора.",
|
||||
"To attach knowledge base here, add them to the \"Knowledge\" workspace first.": "Щоб прикріпити базу знань тут, спочатку додайте їх до робочого простору \"Знання\".",
|
||||
"To protect your privacy, only ratings, model IDs, tags, and metadata are shared from your feedback—your chat logs remain private and are not included.": "Для захисту вашої конфіденційності з вашими відгуками діляться лише оцінками, ідентифікаторами моделей, тегами та метаданими — ваші журнали чату залишаються приватними і не включаються.",
|
||||
"To protect your privacy, only ratings, model IDs, tags, and metadata are shared from your feedback—your chat logs remain private and are not included.": "Для захисту вашої конфіденційності з вашими відгуками діляться лише оцінками, ID моделей, тегами та метаданими — ваші журнали чату залишаються приватними і не включаються.",
|
||||
"To select actions here, add them to the \"Functions\" workspace first.": "Щоб вибрати дії тут, спочатку додайте їх до робочої області \"Функції\".",
|
||||
"To select filters here, add them to the \"Functions\" workspace first.": "Щоб обрати фільтри тут, спочатку додайте їх до робочої області \"Функції\".",
|
||||
"To select toolkits here, add them to the \"Tools\" workspace first.": "Щоб обрати тут набори інструментів, спочатку додайте їх до робочої області \"Інструменти\".",
|
||||
@@ -896,13 +898,13 @@
|
||||
"Too verbose": "Занадто докладно",
|
||||
"Tool created successfully": "Інструмент успішно створено",
|
||||
"Tool deleted successfully": "Інструмент успішно видалено",
|
||||
"Tool Description": "",
|
||||
"Tool ID": "",
|
||||
"Tool Description": "Опис інструменту",
|
||||
"Tool ID": "ID інструменту",
|
||||
"Tool imported successfully": "Інструмент успішно імпортовано",
|
||||
"Tool Name": "",
|
||||
"Tool Name": "Назва інструменту",
|
||||
"Tool updated successfully": "Інструмент успішно оновлено",
|
||||
"Tools": "Інструменти",
|
||||
"Tools Access": "",
|
||||
"Tools Access": "Доступ до інструментів",
|
||||
"Tools are a function calling system with arbitrary code execution": "Інструменти - це система виклику функцій з довільним виконанням коду",
|
||||
"Tools have a function calling system that allows arbitrary code execution": "Інструменти мають систему виклику функцій, яка дозволяє виконання довільного коду",
|
||||
"Tools have a function calling system that allows arbitrary code execution.": "Інструменти мають систему виклику функцій, яка дозволяє виконання довільного коду.",
|
||||
@@ -917,9 +919,9 @@
|
||||
"Type Hugging Face Resolve (Download) URL": "Введіть URL ресурсу Hugging Face Resolve (завантаження)",
|
||||
"Uh-oh! There was an issue connecting to {{provider}}.": "Ой! Виникла проблема при підключенні до {{provider}}.",
|
||||
"UI": "Користувацький інтерфейс",
|
||||
"Unarchive All": "",
|
||||
"Unarchive All Archived Chats": "",
|
||||
"Unarchive Chat": "",
|
||||
"Unarchive All": "Розархівувати все",
|
||||
"Unarchive All Archived Chats": "Розархівувати всі архівовані чати",
|
||||
"Unarchive Chat": "Розархівувати чат",
|
||||
"Unlock mysteries": "Розкрийте таємниці",
|
||||
"Unpin": "Відчепити",
|
||||
"Unravel secrets": "Розплутуйте секрети",
|
||||
@@ -938,11 +940,11 @@
|
||||
"Upload Files": "Завантажити файли",
|
||||
"Upload Pipeline": "Завантажити конвеєр",
|
||||
"Upload Progress": "Прогрес завантаження",
|
||||
"URL": "",
|
||||
"URL": "URL",
|
||||
"URL Mode": "Режим URL-адреси",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Використовуйте '#' у полі введення підказки, щоб завантажити та включити свої знання.",
|
||||
"Use Gravatar": "Змінити аватар",
|
||||
"Use groups to group your users and assign permissions.": "",
|
||||
"Use groups to group your users and assign permissions.": "Використовуйте групи, щоб об’єднувати користувачів і призначати дозволи.",
|
||||
"Use Initials": "Використовувати ініціали",
|
||||
"use_mlock (Ollama)": "use_mlock (Ollama)",
|
||||
"use_mmap (Ollama)": "use_mmap (Ollama)",
|
||||
@@ -961,12 +963,12 @@
|
||||
"variable to have them replaced with clipboard content.": "змінна, щоб замінити їх вмістом буфера обміну.",
|
||||
"Version": "Версія",
|
||||
"Version {{selectedVersion}} of {{totalVersions}}": "Версія {{selectedVersion}} з {{totalVersions}}",
|
||||
"Visibility": "",
|
||||
"Visibility": "Видимість",
|
||||
"Voice": "Голос",
|
||||
"Voice Input": "Голосове введення",
|
||||
"Warning": "Увага!",
|
||||
"Warning:": "Увага:",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Попередження: Увімкнення цього дозволить користувачам завантажувати довільний код на сервер.",
|
||||
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Попередження: Якщо ви оновлюєте або змінюєте модель вбудовування, вам потрібно буде повторно імпортувати всі документи.",
|
||||
"Web": "Веб",
|
||||
"Web API": "Веб-API",
|
||||
@@ -975,20 +977,20 @@
|
||||
"Web Search Engine": "Веб-пошукова система",
|
||||
"Webhook URL": "URL веб-запиту",
|
||||
"WebUI Settings": "Налаштування WebUI",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI надсилатиме запити до \"{{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI надсилатиме запити до \"{{url}}/chat/completions\"",
|
||||
"What are you trying to achieve?": "Чого ви прагнете досягти?",
|
||||
"What are you working on?": "Над чим ти працюєш?",
|
||||
"What’s New in": "Що нового в",
|
||||
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Коли активовано, модель буде відповідати на кожне повідомлення чату в режимі реального часу, генеруючи відповідь, як тільки користувач надішле повідомлення. Цей режим корисний для застосувань життєвих вітань чатів, але може позначитися на продуктивності на повільнішому апаратному забезпеченні.",
|
||||
"wherever you are": "де б ви не були",
|
||||
"Whisper (Local)": "Whisper (Локально)",
|
||||
"Why?": "",
|
||||
"Why?": "Чому?",
|
||||
"Widescreen Mode": "Широкоекранний режим",
|
||||
"Won": "Переможець",
|
||||
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "Працює разом з top-k. Більше значення (напр., 0.95) приведе до більш різноманітного тексту, тоді як менше значення (напр., 0.5) згенерує більш зосереджений і консервативний текст. (За замовчуванням: 0.9)",
|
||||
"Workspace": "Робочий простір",
|
||||
"Workspace Permissions": "",
|
||||
"Workspace Permissions": "Дозволи робочого простору.",
|
||||
"Write a prompt suggestion (e.g. Who are you?)": "Напишіть промт (напр., Хто ти?)",
|
||||
"Write a summary in 50 words that summarizes [topic or keyword].": "Напишіть стислий зміст у 50 слів, який узагальнює [тема або ключове слово].",
|
||||
"Write something...": "Напишіть щось...",
|
||||
@@ -998,7 +1000,7 @@
|
||||
"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Ви можете спілкуватися лише з максимальною кількістю {{maxCount}} файлів одночасно.",
|
||||
"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Ви можете налаштувати ваші взаємодії з мовними моделями, додавши спогади через кнопку 'Керувати' внизу, що зробить їх більш корисними та персоналізованими для вас.",
|
||||
"You cannot upload an empty file.": "Ви не можете завантажити порожній файл.",
|
||||
"You do not have permission to upload files.": "",
|
||||
"You do not have permission to upload files.": "У вас немає дозволу завантажувати файли.",
|
||||
"You have no archived conversations.": "У вас немає архівованих розмов.",
|
||||
"You have shared this chat": "Ви поділилися цим чатом",
|
||||
"You're a helpful assistant.": "Ви корисний асистент.",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "زبان کے کوڈ درج کریں",
|
||||
"Enter Model ID": "ماڈل آئی ڈی درج کریں",
|
||||
"Enter model tag (e.g. {{modelTag}})": "ماڈل ٹیگ داخل کریں (مثال کے طور پر {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "درج کریں مراحل کی تعداد (جیسے 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "نمونہ درج کریں (مثال: آئلر a)",
|
||||
"Enter Scheduler (e.g. Karras)": "شیڈیولر درج کریں (مثلاً Karras)",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "ماڈل فائل مواد",
|
||||
"Models": "ماڈلز",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "مزید",
|
||||
"More": "مزید",
|
||||
"Name": "نام",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "Nhập mã ngôn ngữ",
|
||||
"Enter Model ID": "",
|
||||
"Enter model tag (e.g. {{modelTag}})": "Nhập thẻ mô hình (vd: {{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Nhập số Steps (vd: 50)",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "Nội dung Tệp Mô hình",
|
||||
"Models": "Mô hình",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "Thêm",
|
||||
"Name": "Tên",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "输入语言代码",
|
||||
"Enter Model ID": "输入模型 ID",
|
||||
"Enter model tag (e.g. {{modelTag}})": "输入模型标签 (例如:{{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "输入步骤数 (Steps) (例如:50)",
|
||||
"Enter Sampler (e.g. Euler a)": "输入 Sampler (例如:Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "输入 Scheduler (例如:Karras)",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "模型文件内容",
|
||||
"Models": "模型",
|
||||
"Models Access": "访问模型列表",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "更多",
|
||||
"More": "更多",
|
||||
"Name": "名称",
|
||||
|
||||
@@ -329,6 +329,7 @@
|
||||
"Enter language codes": "輸入語言代碼",
|
||||
"Enter Model ID": "輸入模型 ID",
|
||||
"Enter model tag (e.g. {{modelTag}})": "輸入模型標籤(例如:{{modelTag}})",
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "輸入步驟數(例如:50)",
|
||||
"Enter Sampler (e.g. Euler a)": "輸入取樣器(例如:Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "輸入排程器(例如:Karras)",
|
||||
@@ -569,6 +570,7 @@
|
||||
"Modelfile Content": "模型檔案內容",
|
||||
"Models": "模型",
|
||||
"Models Access": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "更多",
|
||||
"Name": "名稱",
|
||||
|
||||
+12
-1
@@ -8,7 +8,7 @@ import { TTS_RESPONSE_SPLIT } from '$lib/types';
|
||||
// Helper functions
|
||||
//////////////////////////
|
||||
|
||||
export const replaceTokens = (content, char, user) => {
|
||||
export const replaceTokens = (content, sourceIds, char, user) => {
|
||||
const charToken = /{{char}}/gi;
|
||||
const userToken = /{{user}}/gi;
|
||||
const videoIdToken = /{{VIDEO_FILE_ID_([a-f0-9-]+)}}/gi; // Regex to capture the video ID
|
||||
@@ -36,6 +36,17 @@ export const replaceTokens = (content, char, user) => {
|
||||
return `<iframe src="${htmlUrl}" width="100%" frameborder="0" onload="this.style.height=(this.contentWindow.document.body.scrollHeight+20)+'px';"></iframe>`;
|
||||
});
|
||||
|
||||
// Remove sourceIds from the content and replace them with <source_id>...</source_id>
|
||||
if (Array.isArray(sourceIds)) {
|
||||
sourceIds.forEach((sourceId) => {
|
||||
// Create a token based on the exact `[sourceId]` string
|
||||
const sourceToken = `\\[${sourceId}\\]`; // Escape special characters for RegExp
|
||||
const sourceRegex = new RegExp(sourceToken, 'g'); // Match all occurrences of [sourceId]
|
||||
|
||||
content = content.replace(sourceRegex, `<source_id data="${sourceId}" />`);
|
||||
});
|
||||
}
|
||||
|
||||
return content;
|
||||
};
|
||||
|
||||
|
||||
@@ -203,7 +203,7 @@
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
{#if $config?.features.enable_login_form}
|
||||
{#if $config?.features.enable_login_form || $config?.features.enable_ldap}
|
||||
<div class="flex flex-col mt-4">
|
||||
{#if mode === 'signup'}
|
||||
<div class="mb-2">
|
||||
@@ -227,6 +227,7 @@
|
||||
type="text"
|
||||
class="my-0.5 w-full text-sm outline-none bg-transparent"
|
||||
autocomplete="username"
|
||||
name="username"
|
||||
placeholder={$i18n.t('Enter Your Username')}
|
||||
required
|
||||
/>
|
||||
@@ -239,6 +240,7 @@
|
||||
type="email"
|
||||
class="my-0.5 w-full text-sm outline-none bg-transparent"
|
||||
autocomplete="email"
|
||||
name="email"
|
||||
placeholder={$i18n.t('Enter Your Email')}
|
||||
required
|
||||
/>
|
||||
@@ -254,13 +256,14 @@
|
||||
class="my-0.5 w-full text-sm outline-none bg-transparent"
|
||||
placeholder={$i18n.t('Enter Your Password')}
|
||||
autocomplete="current-password"
|
||||
name="current-password"
|
||||
required
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
<div class="mt-5">
|
||||
{#if $config?.features.enable_login_form}
|
||||
{#if $config?.features.enable_login_form || $config?.features.enable_ldap}
|
||||
{#if mode === 'ldap'}
|
||||
<button
|
||||
class="bg-gray-700/5 hover:bg-gray-700/10 dark:bg-gray-100/5 dark:hover:bg-gray-100/10 dark:text-gray-300 dark:hover:text-white transition w-full rounded-full font-medium text-sm py-2.5"
|
||||
@@ -309,7 +312,7 @@
|
||||
{#if Object.keys($config?.oauth?.providers ?? {}).length > 0}
|
||||
<div class="inline-flex items-center justify-center w-full">
|
||||
<hr class="w-32 h-px my-4 border-0 dark:bg-gray-100/10 bg-gray-700/10" />
|
||||
{#if $config?.features.enable_login_form}
|
||||
{#if $config?.features.enable_login_form || $config?.features.enable_ldap}
|
||||
<span
|
||||
class="px-3 text-sm font-medium text-gray-900 dark:text-white bg-transparent"
|
||||
>{$i18n.t('or')}</span
|
||||
@@ -401,7 +404,7 @@
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
{#if $config?.features.enable_ldap}
|
||||
{#if $config?.features.enable_ldap && $config?.features.enable_login_form}
|
||||
<div class="mt-2">
|
||||
<button
|
||||
class="flex justify-center items-center text-xs w-full text-center underline"
|
||||
|
||||
Reference in New Issue
Block a user