mirror of
https://github.com/open-webui/open-webui.git
synced 2026-08-13 01:02:25 -06:00
chore: format
This commit is contained in:
@@ -679,9 +679,7 @@ async def lifespan(app: FastAPI):
|
||||
}
|
||||
)
|
||||
await set_tool_servers(mock_request)
|
||||
log.info(
|
||||
f"Initialized {len(app.state.TOOL_SERVERS)} tool server(s)"
|
||||
)
|
||||
log.info(f"Initialized {len(app.state.TOOL_SERVERS)} tool server(s)")
|
||||
except Exception as e:
|
||||
log.warning(f"Failed to initialize tool servers at startup: {e}")
|
||||
|
||||
|
||||
@@ -451,9 +451,7 @@ class ChatTable:
|
||||
# Clean up orphaned old tags in one query
|
||||
removed = set(old_tags) - set(new_tag_ids)
|
||||
if removed:
|
||||
self.delete_orphan_tags_for_user(
|
||||
list(removed), user.id, db=db
|
||||
)
|
||||
self.delete_orphan_tags_for_user(list(removed), user.id, db=db)
|
||||
|
||||
return ChatModel.model_validate(chat)
|
||||
|
||||
@@ -1380,9 +1378,7 @@ class ChatTable:
|
||||
with get_db_context(db) as db:
|
||||
orphans = []
|
||||
for tag_id in tag_ids:
|
||||
count = self.count_chats_by_tag_name_and_user_id(
|
||||
tag_id, user_id, db=db
|
||||
)
|
||||
count = self.count_chats_by_tag_name_and_user_id(tag_id, user_id, db=db)
|
||||
if count <= threshold:
|
||||
orphans.append(tag_id)
|
||||
Tags.delete_tags_by_ids_and_user_id(orphans, user_id, db=db)
|
||||
|
||||
@@ -218,11 +218,7 @@ class GroupTable:
|
||||
)
|
||||
)
|
||||
|
||||
results = (
|
||||
query.group_by(Group.id)
|
||||
.order_by(Group.updated_at.desc())
|
||||
.all()
|
||||
)
|
||||
results = query.group_by(Group.id).order_by(Group.updated_at.desc()).all()
|
||||
|
||||
return [
|
||||
GroupResponse.model_validate(
|
||||
|
||||
@@ -123,9 +123,9 @@ class TagTable:
|
||||
return True
|
||||
try:
|
||||
with get_db_context(db) as db:
|
||||
db.query(Tag).filter(
|
||||
Tag.id.in_(ids), Tag.user_id == user_id
|
||||
).delete(synchronize_session=False)
|
||||
db.query(Tag).filter(Tag.id.in_(ids), Tag.user_id == user_id).delete(
|
||||
synchronize_session=False
|
||||
)
|
||||
db.commit()
|
||||
return True
|
||||
except Exception as e:
|
||||
|
||||
@@ -107,7 +107,9 @@ async def get_tools(
|
||||
|
||||
# MCP Tool Servers
|
||||
for server in request.app.state.config.TOOL_SERVER_CONNECTIONS:
|
||||
if server.get("type", "openapi") == "mcp" and server.get("config", {}).get("enable"):
|
||||
if server.get("type", "openapi") == "mcp" and server.get("config", {}).get(
|
||||
"enable"
|
||||
):
|
||||
server_id = server.get("info", {}).get("id")
|
||||
auth_type = server.get("auth_type", "none")
|
||||
|
||||
|
||||
@@ -1918,9 +1918,7 @@ async def convert_url_images_to_base64(form_data):
|
||||
return form_data
|
||||
|
||||
|
||||
def load_messages_from_db(
|
||||
chat_id: str, message_id: str
|
||||
) -> Optional[list[dict]]:
|
||||
def load_messages_from_db(chat_id: str, message_id: str) -> Optional[list[dict]]:
|
||||
"""
|
||||
Load the message chain from DB up to message_id,
|
||||
keeping only LLM-relevant fields (role, content, output).
|
||||
@@ -2164,7 +2162,8 @@ async def process_chat_payload(request, form_data, user, metadata, model):
|
||||
form_data["messages"] = add_or_update_user_message(
|
||||
(
|
||||
request.app.state.config.CODE_INTERPRETER_PROMPT_TEMPLATE
|
||||
if request.app.state.config.CODE_INTERPRETER_PROMPT_TEMPLATE != ""
|
||||
if request.app.state.config.CODE_INTERPRETER_PROMPT_TEMPLATE
|
||||
!= ""
|
||||
else DEFAULT_CODE_INTERPRETER_PROMPT
|
||||
),
|
||||
form_data["messages"],
|
||||
@@ -2198,7 +2197,7 @@ async def process_chat_payload(request, form_data, user, metadata, model):
|
||||
if skill.id in user_skill_ids:
|
||||
# User-selected: inject full content
|
||||
form_data["messages"] = add_or_update_system_message(
|
||||
f"<skill name=\"{skill.name}\">\n{skill.content}\n</skill>",
|
||||
f'<skill name="{skill.name}">\n{skill.content}\n</skill>',
|
||||
form_data["messages"],
|
||||
append=True,
|
||||
)
|
||||
@@ -2447,7 +2446,9 @@ async def process_chat_payload(request, form_data, user, metadata, model):
|
||||
{
|
||||
**extra_params,
|
||||
"__event_emitter__": event_emitter,
|
||||
"__skill_ids__": [s.id for s in available_skills if s.id not in user_skill_ids],
|
||||
"__skill_ids__": [
|
||||
s.id for s in available_skills if s.id not in user_skill_ids
|
||||
],
|
||||
},
|
||||
features,
|
||||
model,
|
||||
|
||||
@@ -152,7 +152,15 @@
|
||||
if (taskConfig.TASK_MODEL) {
|
||||
const model = models.find((m) => m.id === taskConfig.TASK_MODEL);
|
||||
if (model) {
|
||||
if (model?.access_grants && !model.access_grants.some((g) => g.principal_type === 'user' && g.principal_id === '*' && g.permission === 'read')) {
|
||||
if (
|
||||
model?.access_grants &&
|
||||
!model.access_grants.some(
|
||||
(g) =>
|
||||
g.principal_type === 'user' &&
|
||||
g.principal_id === '*' &&
|
||||
g.permission === 'read'
|
||||
)
|
||||
) {
|
||||
toast.error(
|
||||
$i18n.t(
|
||||
'This model is not publicly available. Please select another model.'
|
||||
@@ -187,7 +195,15 @@
|
||||
if (taskConfig.TASK_MODEL_EXTERNAL) {
|
||||
const model = models.find((m) => m.id === taskConfig.TASK_MODEL_EXTERNAL);
|
||||
if (model) {
|
||||
if (model?.access_grants && !model.access_grants.some((g) => g.principal_type === 'user' && g.principal_id === '*' && g.permission === 'read')) {
|
||||
if (
|
||||
model?.access_grants &&
|
||||
!model.access_grants.some(
|
||||
(g) =>
|
||||
g.principal_type === 'user' &&
|
||||
g.principal_id === '*' &&
|
||||
g.permission === 'read'
|
||||
)
|
||||
) {
|
||||
toast.error(
|
||||
$i18n.t(
|
||||
'This model is not publicly available. Please select another model.'
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "آخر",
|
||||
"Output": "",
|
||||
"OUTPUT": "",
|
||||
"Output format": "",
|
||||
"Output Format": "",
|
||||
@@ -1669,6 +1670,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "تنظيم المستخدمين الخاصين بك",
|
||||
"Other": "آخر",
|
||||
"Output": "",
|
||||
"OUTPUT": "الإخراج",
|
||||
"Output format": "تنسيق الإخراج",
|
||||
"Output Format": "",
|
||||
@@ -1669,6 +1670,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Организирайте вашите потребители",
|
||||
"Other": "Друго",
|
||||
"Output": "",
|
||||
"OUTPUT": "ИЗХОД",
|
||||
"Output format": "Изходен формат",
|
||||
"Output Format": "",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "অন্যান্য",
|
||||
"Output": "",
|
||||
"OUTPUT": "",
|
||||
"Output format": "",
|
||||
"Output Format": "",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "ཁྱེད་ཀྱི་བེད་སྤྱོད་མཁན་སྒྲིག་འཛུགས།",
|
||||
"Other": "གཞན།",
|
||||
"Output": "",
|
||||
"OUTPUT": "ཐོན་འབྲས།",
|
||||
"Output format": "ཐོན་འབྲས་ཀྱི་བཀོད་པ།",
|
||||
"Output Format": "",
|
||||
@@ -1664,6 +1665,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "Ostalo",
|
||||
"Output": "",
|
||||
"OUTPUT": "",
|
||||
"Output format": "",
|
||||
"Output Format": "",
|
||||
@@ -1666,6 +1667,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "Llista ordenada",
|
||||
"Organize your users": "Organitza els teus usuaris",
|
||||
"Other": "Altres",
|
||||
"Output": "",
|
||||
"OUTPUT": "SORTIDA",
|
||||
"Output format": "Format de sortida",
|
||||
"Output Format": "Format de sortida",
|
||||
@@ -1666,6 +1667,8 @@
|
||||
"Skill updated successfully": "Habilitat actualitzada correctament",
|
||||
"Skills": "Habilitats",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "Ometre la memòria cau",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "Omet la memòria cai i torna a executar la inferència. Per defecte és Fals.",
|
||||
"Something went wrong :/": "Quelcom no ha anat bé",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "",
|
||||
"Output": "",
|
||||
"OUTPUT": "",
|
||||
"Output format": "",
|
||||
"Output Format": "",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "Číslovaný seznam",
|
||||
"Organize your users": "Uspořádejte své uživatele",
|
||||
"Other": "Jiné",
|
||||
"Output": "",
|
||||
"OUTPUT": "VÝSTUP",
|
||||
"Output format": "Formát výstupu",
|
||||
"Output Format": "Formát výstupu",
|
||||
@@ -1667,6 +1668,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "Přeskočit mezipaměť",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "Přeskočit mezipaměť a znovu spustit inferenci. Výchozí hodnota je False.",
|
||||
"Something went wrong :/": "Něco se pokazilo :/",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "Nummereret liste",
|
||||
"Organize your users": "Organiser dine brugere",
|
||||
"Other": "Andet",
|
||||
"Output": "",
|
||||
"OUTPUT": "OUTPUT",
|
||||
"Output format": "Outputformat",
|
||||
"Output Format": "Output format",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "Spring cache over",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "Spring cachen over og kør inferensen igen. Standard er falsk.",
|
||||
"Something went wrong :/": "Noget gik galt :/",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "Nummerierte Liste",
|
||||
"Organize your users": "Organisieren Sie Ihre Benutzer",
|
||||
"Other": "Andere",
|
||||
"Output": "",
|
||||
"OUTPUT": "AUSGABE",
|
||||
"Output format": "Ausgabeformat",
|
||||
"Output Format": "Ausgabeformat",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "Skill erfolgreich aktualisiert",
|
||||
"Skills": "Skills",
|
||||
"Skills Access": "Skills Zugang",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "Cache überspringen",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "Cache überspringen und die Inferenz erneut ausführen. Standardmäßig deaktiviert.",
|
||||
"Something went wrong :/": "Etwas ist schiefgelaufen :/",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "",
|
||||
"Output": "",
|
||||
"OUTPUT": "",
|
||||
"Output format": "",
|
||||
"Output Format": "",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Οργανώστε τους χρήστες σας",
|
||||
"Other": "Άλλο",
|
||||
"Output": "",
|
||||
"OUTPUT": "ΕΞΟΔΟΣ",
|
||||
"Output format": "Μορφή εξόδου",
|
||||
"Output Format": "Μορφή Εξόδου",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Organise your users",
|
||||
"Other": "",
|
||||
"Output": "",
|
||||
"OUTPUT": "",
|
||||
"Output format": "",
|
||||
"Output Format": "",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "",
|
||||
"Output": "",
|
||||
"OUTPUT": "",
|
||||
"Output format": "",
|
||||
"Output Format": "",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "Lista Ordenada",
|
||||
"Organize your users": "Organiza tus usuarios",
|
||||
"Other": "Otro",
|
||||
"Output": "",
|
||||
"OUTPUT": "SALIDA",
|
||||
"Output format": "Formato de salida",
|
||||
"Output Format": "Formato de Salida",
|
||||
@@ -1666,6 +1667,8 @@
|
||||
"Skill updated successfully": "Habilidad actualiada correctamente",
|
||||
"Skills": "Habilidades",
|
||||
"Skills Access": "Acceso a Habilidades",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "Evitar Caché",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "Evitar caché y reiniciar la interfaz. Valor predeterminado Falso",
|
||||
"Something went wrong :/": "Algo ha ido mal :/",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "Ordered List",
|
||||
"Organize your users": "Korraldage oma kasutajad",
|
||||
"Other": "Muu",
|
||||
"Output": "",
|
||||
"OUTPUT": "VÄLJUND",
|
||||
"Output format": "Väljundformaat",
|
||||
"Output Format": "Output Format",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "Skip Vahemälu",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "Skip the vahemälu ja re-run the inference. Defaults kuni False.",
|
||||
"Something went wrong :/": "Something went wrong :/",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Antolatu zure erabiltzaileak",
|
||||
"Other": "Bestelakoa",
|
||||
"Output": "",
|
||||
"OUTPUT": "IRTEERA",
|
||||
"Output format": "Irteera formatua",
|
||||
"Output Format": "",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "لیست شماره\u200cگذاری شده",
|
||||
"Organize your users": "کاربران خود را سازماندهی کنید",
|
||||
"Other": "دیگر",
|
||||
"Output": "",
|
||||
"OUTPUT": "خروجی",
|
||||
"Output format": "قالب خروجی",
|
||||
"Output Format": "قالب خروجی",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "رد کردن کش",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "کش را رد کرده و استنتاج را مجدداً اجرا کنید. پیش\u200cفرض: False.",
|
||||
"Something went wrong :/": "مشکلی پیش آمد :/",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "Järjestetty lista",
|
||||
"Organize your users": "Järjestä käyttäjäsi",
|
||||
"Other": "Muu",
|
||||
"Output": "",
|
||||
"OUTPUT": "TULOSTE",
|
||||
"Output format": "Tulosteen muoto",
|
||||
"Output Format": "Tulosteen muoto",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "Ohita välimuisti",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "Ohita välimuisti ja suorita päätelmä uudelleen. Oletusarvo ei käytössä.",
|
||||
"Something went wrong :/": "Jokin meni pieleen :/",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Organisez vos utilisateurs",
|
||||
"Other": "Autre",
|
||||
"Output": "",
|
||||
"OUTPUT": "SORTIE",
|
||||
"Output format": "Format de sortie",
|
||||
"Output Format": "Format de sortie",
|
||||
@@ -1666,6 +1667,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "Ne pas utiliser le cache",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "Ne pas utiliser le cache et re executer l'inférence. Par defaut à False",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "Liste ordonnéee",
|
||||
"Organize your users": "Organisez vos utilisateurs",
|
||||
"Other": "Autre",
|
||||
"Output": "",
|
||||
"OUTPUT": "SORTIE",
|
||||
"Output format": "Format de sortie",
|
||||
"Output Format": "Format de sortie",
|
||||
@@ -1666,6 +1667,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "Ne pas utiliser le cache",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "Ne pas utiliser le cache et re executer l'inférence. Par defaut à False",
|
||||
"Something went wrong :/": "Quelque chose s'est mal passé :/",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Organiza os teus usuarios",
|
||||
"Other": "Outro",
|
||||
"Output": "",
|
||||
"OUTPUT": "SAIDA",
|
||||
"Output format": "Formato de saida",
|
||||
"Output Format": "",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "אחר",
|
||||
"Output": "",
|
||||
"OUTPUT": "",
|
||||
"Output format": "",
|
||||
"Output Format": "",
|
||||
@@ -1666,6 +1667,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "अन्य",
|
||||
"Output": "",
|
||||
"OUTPUT": "",
|
||||
"Output format": "",
|
||||
"Output Format": "",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "Ostalo",
|
||||
"Output": "",
|
||||
"OUTPUT": "",
|
||||
"Output format": "",
|
||||
"Output Format": "",
|
||||
@@ -1666,6 +1667,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Szervezd meg a felhasználóidat",
|
||||
"Other": "Egyéb",
|
||||
"Output": "",
|
||||
"OUTPUT": "KIMENET",
|
||||
"Output format": "Kimeneti formátum",
|
||||
"Output Format": "",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "Lainnya",
|
||||
"Output": "",
|
||||
"OUTPUT": "",
|
||||
"Output format": "",
|
||||
"Output Format": "",
|
||||
@@ -1664,6 +1665,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "Liosta Ordaithe",
|
||||
"Organize your users": "Eagraigh do chuid úsáideoirí",
|
||||
"Other": "Eile",
|
||||
"Output": "",
|
||||
"OUTPUT": "ASCHUR",
|
||||
"Output format": "Formáid aschuir",
|
||||
"Output Format": "Formáid Aschuir",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "Seachain an Taisce",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "Seachain an taisce agus athrith an tátal. Réamhshocrú Bréagach.",
|
||||
"Something went wrong :/": "Chuaigh rud éigin mícheart :/",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Organizza i tuoi utenti",
|
||||
"Other": "Altro",
|
||||
"Output": "",
|
||||
"OUTPUT": "OUTPUT",
|
||||
"Output format": "Formato di output",
|
||||
"Output Format": "Formato output",
|
||||
@@ -1666,6 +1667,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "Salta cache",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "順序つきリスト",
|
||||
"Organize your users": "ユーザーを整理する",
|
||||
"Other": "その他",
|
||||
"Output": "",
|
||||
"OUTPUT": "出力",
|
||||
"Output format": "出力形式",
|
||||
"Output Format": "出力形式",
|
||||
@@ -1664,6 +1665,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "キャッシュをスキップする",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "キャッシュをスキップし、推論を再実行します。デフォルトでは無効。",
|
||||
"Something went wrong :/": "何らかの問題が発生しました",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "დალაგებული სია",
|
||||
"Organize your users": "დააორგანიზეთ თქვენი მომხმარებლები",
|
||||
"Other": "სხვა",
|
||||
"Output": "",
|
||||
"OUTPUT": "გამოტანა",
|
||||
"Output format": "გამოტანის ფორმატი",
|
||||
"Output Format": "გამოტანის ფორმატი",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "კეშის გამოტოვება",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "რაღაც ცუდადაა :/",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "Tabdart n usmizwer",
|
||||
"Organize your users": "Sefrek iseqdacen-ik·im",
|
||||
"Other": "Wayeḍ",
|
||||
"Output": "",
|
||||
"OUTPUT": "TUFFƔA",
|
||||
"Output format": "Amasal n tuffɣa",
|
||||
"Output Format": "Amasal n tuffɣa",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "Ur sseqdac ara tuffirt",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "Seqcer aṭaksi-nni, tɛawdeḍ-as assefreg. Imezwura ɣer False.",
|
||||
"Something went wrong :/": "Yella wayen ur neddi ara :/",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "번호 목록",
|
||||
"Organize your users": "사용자 관리",
|
||||
"Other": "기타",
|
||||
"Output": "",
|
||||
"OUTPUT": "출력",
|
||||
"Output format": "출력 형식",
|
||||
"Output Format": "출력 형식",
|
||||
@@ -1664,6 +1665,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "캐시 무시",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "캐시를 무시하고 추론을 다시 실행합니다. 기본값은 False입니다.",
|
||||
"Something went wrong :/": "무언가 잘못 되었습니다 :/",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "Kita",
|
||||
"Output": "",
|
||||
"OUTPUT": "",
|
||||
"Output format": "",
|
||||
"Output Format": "",
|
||||
@@ -1667,6 +1668,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "Numurēts saraksts",
|
||||
"Organize your users": "Organizējiet savus lietotājus",
|
||||
"Other": "Cits",
|
||||
"Output": "",
|
||||
"OUTPUT": "IZVADE",
|
||||
"Output format": "Izvades formāts",
|
||||
"Output Format": "Izvades formāts",
|
||||
@@ -1666,6 +1667,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "Izlaist kešatmiņu",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "Izlaist kešatmiņu un atkārtoti palaist secinājumu. Noklusējums ir False.",
|
||||
"Something went wrong :/": "Kaut kas nogāja greizi :/",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "Lain-lain",
|
||||
"Output": "",
|
||||
"OUTPUT": "",
|
||||
"Output format": "",
|
||||
"Output Format": "",
|
||||
@@ -1664,6 +1665,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Organisere brukerne dine",
|
||||
"Other": "Annet",
|
||||
"Output": "",
|
||||
"OUTPUT": "UTDATA",
|
||||
"Output format": "Format på utdata",
|
||||
"Output Format": "",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Orden je gebruikers",
|
||||
"Other": "Andere",
|
||||
"Output": "",
|
||||
"OUTPUT": "UITVOER",
|
||||
"Output format": "Uitvoerformaat",
|
||||
"Output Format": "",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "ਹੋਰ",
|
||||
"Output": "",
|
||||
"OUTPUT": "",
|
||||
"Output format": "",
|
||||
"Output Format": "",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "Lista numerowana",
|
||||
"Organize your users": "Organizuj użytkowników",
|
||||
"Other": "Inne",
|
||||
"Output": "",
|
||||
"OUTPUT": "WYNIK",
|
||||
"Output format": "Format wyjściowy",
|
||||
"Output Format": "Format wyjściowy",
|
||||
@@ -1667,6 +1668,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "Pomiń Cache",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "Pomiń pamięć podręczną i uruchom wnioskowanie ponownie. Domyślnie Fałsz.",
|
||||
"Something went wrong :/": "Coś poszło nie tak :/",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "Lista ordenada",
|
||||
"Organize your users": "Organizar seus usuários",
|
||||
"Other": "Outro",
|
||||
"Output": "",
|
||||
"OUTPUT": "SAÍDA",
|
||||
"Output format": "Formato de saída",
|
||||
"Output Format": "Formato de Saída",
|
||||
@@ -1666,6 +1667,8 @@
|
||||
"Skill updated successfully": "Habilidade atualizada com sucesso",
|
||||
"Skills": "Habilidades",
|
||||
"Skills Access": "Acesso a habilidades",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "Pular cache",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "Ignore o cache e execute a inferência novamente. O padrão é Falso.",
|
||||
"Something went wrong :/": "Algo deu errado :/",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "Outro",
|
||||
"Output": "",
|
||||
"OUTPUT": "",
|
||||
"Output format": "",
|
||||
"Output Format": "",
|
||||
@@ -1666,6 +1667,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "Altele",
|
||||
"Output": "",
|
||||
"OUTPUT": "Output rezultatat",
|
||||
"Output format": "Formatul de ieșire",
|
||||
"Output Format": "",
|
||||
@@ -1666,6 +1667,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "Нумерованный список",
|
||||
"Organize your users": "Организуйте своих пользователей",
|
||||
"Other": "Прочее",
|
||||
"Output": "",
|
||||
"OUTPUT": "ВЫВОД",
|
||||
"Output format": "Формат вывода",
|
||||
"Output Format": "Формат Вывода",
|
||||
@@ -1667,6 +1668,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "Пропустить кэширование",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "Пропустить кэширование и перезапустить вывод. По умолчанию установлено значение Выкл.",
|
||||
"Something went wrong :/": "Что-то пошло не так :/",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "Iné",
|
||||
"Output": "",
|
||||
"OUTPUT": "VÝSTUP",
|
||||
"Output format": "Formát výstupu",
|
||||
"Output Format": "",
|
||||
@@ -1667,6 +1668,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Организујте ваше кориснике",
|
||||
"Other": "Остало",
|
||||
"Output": "",
|
||||
"OUTPUT": "ИЗЛАЗ",
|
||||
"Output format": "Формат излаза",
|
||||
"Output Format": "",
|
||||
@@ -1666,6 +1667,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "Numrerad lista",
|
||||
"Organize your users": "Organisera dina användare",
|
||||
"Other": "Andra",
|
||||
"Output": "",
|
||||
"OUTPUT": "UTDATA",
|
||||
"Output format": "Utdataformat",
|
||||
"Output Format": "Utdataformat",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "Hoppa över cache",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "Hoppa över cacheminnet och kör inferensen igen. Standardvärdet är False.",
|
||||
"Something went wrong :/": "Något gick fel :/",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "รายการมีลำดับ",
|
||||
"Organize your users": "จัดการผู้ใช้ของคุณ",
|
||||
"Other": "อื่น ๆ",
|
||||
"Output": "",
|
||||
"OUTPUT": "เอาต์พุต",
|
||||
"Output format": "รูปแบบผลลัพธ์",
|
||||
"Output Format": "รูปแบบผลลัพธ์",
|
||||
@@ -1664,6 +1665,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "ข้ามแคช",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "ข้ามแคชและรันการอนุมานใหม่อีกครั้ง ค่าเริ่มต้นคือ False",
|
||||
"Something went wrong :/": "มีบางอย่างผิดพลาด :/",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "Başga",
|
||||
"Output": "",
|
||||
"OUTPUT": "",
|
||||
"Output format": "",
|
||||
"Output Format": "",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Kullanıcılarınızı düzenleyin",
|
||||
"Other": "Diğer",
|
||||
"Output": "",
|
||||
"OUTPUT": "ÇIKTI",
|
||||
"Output format": "Çıktı formatı",
|
||||
"Output Format": "",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "ئىشلەتكۈچىلەرنى تەشكىللەڭ",
|
||||
"Other": "باشقا",
|
||||
"Output": "",
|
||||
"OUTPUT": "چىقىرىش",
|
||||
"Output format": "چىقىرىش قېلىپى",
|
||||
"Output Format": "چىقىرىش فورماتى",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "غەملەكتىن ئۆتۈپ كېتىش",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "غەملەكتىن ئۆتۈپ، يەكۈننى قايتا ئىجرا قىلىش. كۆڭۈلدىكىچە چەكلەنگەن",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Організуйте своїх користувачів",
|
||||
"Other": "Інше",
|
||||
"Output": "",
|
||||
"OUTPUT": "ВИХІД",
|
||||
"Output format": "Формат відповіді",
|
||||
"Output Format": "",
|
||||
@@ -1667,6 +1668,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "دیگر",
|
||||
"Output": "",
|
||||
"OUTPUT": "آؤٹ پٹ",
|
||||
"Output format": "آؤٹ پٹ فارمیٹ",
|
||||
"Output Format": "",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Фойдаланувчиларингизни тартибга солинг",
|
||||
"Other": "Бошқа",
|
||||
"Output": "",
|
||||
"OUTPUT": "Чиқиш",
|
||||
"Output format": "Чиқиш формати",
|
||||
"Output Format": "Чиқиш формати",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "Кешни ўтказиб юбориш",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "Кешни ўтказиб юборинг ва хулосани қайта ишга туширинг. Бирламчи параметрлар Фалсе.",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Foydalanuvchilaringizni tartibga soling",
|
||||
"Other": "Boshqa",
|
||||
"Output": "",
|
||||
"OUTPUT": "Chiqish",
|
||||
"Output format": "Chiqish formati",
|
||||
"Output Format": "Chiqish formati",
|
||||
@@ -1665,6 +1666,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "Keshni o'tkazib yuborish",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "Keshni o'tkazib yuboring va xulosani qayta ishga tushiring. Birlamchi parametrlar False.",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Tổ chức người dùng của bạn",
|
||||
"Other": "Khác",
|
||||
"Output": "",
|
||||
"OUTPUT": "ĐẦU RA",
|
||||
"Output format": "Định dạng đầu ra",
|
||||
"Output Format": "",
|
||||
@@ -1664,6 +1665,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "",
|
||||
"Something went wrong :/": "",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "有序列表",
|
||||
"Organize your users": "组织用户",
|
||||
"Other": "其他",
|
||||
"Output": "",
|
||||
"OUTPUT": "输出",
|
||||
"Output format": "输出格式",
|
||||
"Output Format": "输出格式",
|
||||
@@ -1664,6 +1665,8 @@
|
||||
"Skill updated successfully": "技能更新成功",
|
||||
"Skills": "技能",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "跳过缓存",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "跳过缓存并重新执行推理。默认为关闭",
|
||||
"Something went wrong :/": "发生错误",
|
||||
|
||||
@@ -1342,6 +1342,7 @@
|
||||
"Ordered List": "有序清單",
|
||||
"Organize your users": "組織您的使用者",
|
||||
"Other": "其他",
|
||||
"Output": "",
|
||||
"OUTPUT": "輸出",
|
||||
"Output format": "輸出格式",
|
||||
"Output Format": "輸出格式",
|
||||
@@ -1664,6 +1665,8 @@
|
||||
"Skill updated successfully": "",
|
||||
"Skills": "",
|
||||
"Skills Access": "",
|
||||
"Skills Public Sharing": "",
|
||||
"Skills Sharing": "",
|
||||
"Skip Cache": "略過快取",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "略過快取並重新執行推理。預設為 False。",
|
||||
"Something went wrong :/": "發生錯誤 :/",
|
||||
|
||||
Reference in New Issue
Block a user