mirror of
https://github.com/open-webui/open-webui
synced 2025-04-10 15:45:45 +00:00
Merge branch 'open-webui:dev' into dev
This commit is contained in:
commit
1db46c31aa
6
.github/pull_request_template.md
vendored
6
.github/pull_request_template.md
vendored
@ -9,9 +9,9 @@
|
||||
- [ ] **Changelog:** Ensure a changelog entry following the format of [Keep a Changelog](https://keepachangelog.com/) is added at the bottom of the PR description.
|
||||
- [ ] **Documentation:** Have you updated relevant documentation [Open WebUI Docs](https://github.com/open-webui/docs), or other documentation sources?
|
||||
- [ ] **Dependencies:** Are there any new dependencies? Have you updated the dependency versions in the documentation?
|
||||
- [ ] **Testing:** Have you written and run sufficient tests for validating the changes?
|
||||
- [ ] **Testing:** Have you written and run sufficient tests to validate the changes?
|
||||
- [ ] **Code review:** Have you performed a self-review of your code, addressing any coding standard issues and ensuring adherence to the project's coding standards?
|
||||
- [ ] **Prefix:** To cleary categorize this pull request, prefix the pull request title, using one of the following:
|
||||
- [ ] **Prefix:** To clearly categorize this pull request, prefix the pull request title using one of the following:
|
||||
- **BREAKING CHANGE**: Significant changes that may affect compatibility
|
||||
- **build**: Changes that affect the build system or external dependencies
|
||||
- **ci**: Changes to our continuous integration processes or workflows
|
||||
@ -22,7 +22,7 @@
|
||||
- **i18n**: Internationalization or localization changes
|
||||
- **perf**: Performance improvement
|
||||
- **refactor**: Code restructuring for better maintainability, readability, or scalability
|
||||
- **style**: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.)
|
||||
- **style**: Changes that do not affect the meaning of the code (white space, formatting, missing semi-colons, etc.)
|
||||
- **test**: Adding missing tests or correcting existing tests
|
||||
- **WIP**: Work in progress, a temporary label for incomplete or ongoing work
|
||||
|
||||
|
@ -175,7 +175,9 @@ class ChromaClient:
|
||||
collection.delete(where=filter)
|
||||
except Exception as e:
|
||||
# If collection doesn't exist, that's fine - nothing to delete
|
||||
log.debug(f"Attempted to delete from non-existent collection {collection_name}. Ignoring.")
|
||||
log.debug(
|
||||
f"Attempted to delete from non-existent collection {collection_name}. Ignoring."
|
||||
)
|
||||
pass
|
||||
|
||||
def reset(self):
|
||||
|
@ -1558,7 +1558,9 @@ async def process_chat_response(
|
||||
|
||||
value = delta.get("content")
|
||||
|
||||
reasoning_content = delta.get("reasoning_content") or delta.get("reasoning")
|
||||
reasoning_content = delta.get(
|
||||
"reasoning_content"
|
||||
) or delta.get("reasoning")
|
||||
if reasoning_content:
|
||||
if (
|
||||
not content_blocks
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||
"(e.g. `sh webui.sh --api`)": "( `sh webui.sh --api`مثال)",
|
||||
"(latest)": "(الأخير)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ نماذج }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(напр. `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(напр. `sh webui.sh --api`)",
|
||||
"(latest)": "(последна)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Отговори",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||
"(e.g. `sh webui.sh --api`)": "(যেমন `sh webui.sh --api`)",
|
||||
"(latest)": "(সর্বশেষ)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ মডেল}}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(p. ex. `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(p. ex. `sh webui.sh --api`)",
|
||||
"(latest)": "(últim)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} línies ocultes",
|
||||
"{{COUNT}} Replies": "{{COUNT}} respostes",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||
"(e.g. `sh webui.sh --api`)": "(pananglitan `sh webui.sh --api`)",
|
||||
"(latest)": "",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(např. `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(např. `sh webui.sh --api`)",
|
||||
"(latest)": "Nejnovější",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(f.eks. `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(f.eks. `sh webui.sh --api`)",
|
||||
"(latest)": "(seneste)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ modeller }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(z. B. `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(z. B. `sh webui.sh --api`)",
|
||||
"(latest)": "(neueste)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ Modelle }}",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} versteckte Zeilen",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Antworten",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||
"(e.g. `sh webui.sh --api`)": "(such e.g. `sh webui.sh --api`)",
|
||||
"(latest)": "(much latest)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(π.χ. `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(π.χ. `sh webui.sh --api`)",
|
||||
"(latest)": "(τελευταίο)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||
"(e.g. `sh webui.sh --api`)": "",
|
||||
"(latest)": "",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||
"(e.g. `sh webui.sh --api`)": "",
|
||||
"(latest)": "",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(p.ej. `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(p.ej. `sh webui.sh --api`)",
|
||||
"(latest)": "(latest)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} líneas ocultas",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Respuestas",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(nt `sh webui.sh --api --api-auth kasutajanimi_parool`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(nt `sh webui.sh --api`)",
|
||||
"(latest)": "(uusim)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ mudelid }}",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} peidetud rida",
|
||||
"{{COUNT}} Replies": "{{COUNT}} vastust",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(adib. `sh webui.sh --api --api-auth erabiltzaile_pasahitza`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(adib. `sh webui.sh --api`)",
|
||||
"(latest)": "(azkena)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||
"(e.g. `sh webui.sh --api`)": "(e.g. `sh webui.sh --api`)",
|
||||
"(latest)": "(آخرین)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(esim. `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(esim. `sh webui.sh --api`)",
|
||||
"(latest)": "(uusin)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ mallit }}",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} piilotettua riviä",
|
||||
"{{COUNT}} Replies": "{{COUNT}} vastausta",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(par ex. `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(par exemple `sh webui.sh --api`)",
|
||||
"(latest)": "(dernier)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ modèles }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(par ex. `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(par exemple `sh webui.sh --api`)",
|
||||
"(latest)": "(dernière version)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "{{COUNT}} réponses",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||
"(e.g. `sh webui.sh --api`)": "(למשל `sh webui.sh --api`)",
|
||||
"(latest)": "(האחרון)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ דגמים }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||
"(e.g. `sh webui.sh --api`)": "(e.g. `sh webui.sh --api`)",
|
||||
"(latest)": "(latest)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ मॉडल }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||
"(e.g. `sh webui.sh --api`)": "(npr. `sh webui.sh --api`)",
|
||||
"(latest)": "(najnovije)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ modeli }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(pl. `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(pl. `sh webui.sh --api`)",
|
||||
"(latest)": "(legújabb)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ modellek }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(contoh: `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(contoh: `sh webui.sh --api`)",
|
||||
"(latest)": "(terbaru)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(m.sh. `sh webui.sh --api --api-auth username_password `)",
|
||||
"(e.g. `sh webui.sh --api`)": "(m.sh. `sh webui.sh --api`)",
|
||||
"(latest)": "(is déanaí)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Freagra",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||
"(e.g. `sh webui.sh --api`)": "(p.e. `sh webui.sh --api`)",
|
||||
"(latest)": "(ultima)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ modelli }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(例: `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(例: `sh webui.sh --api`)",
|
||||
"(latest)": "(最新)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ モデル }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(მაგ: `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(მაგ: `sh webui.sh --api`)",
|
||||
"(latest)": "(უახლესი)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ მოდელები }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "{{COUNT}} პასუხი",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(예: `sh webui.sh --api --api-auth 사용자이름_비밀번호`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(예: `sh webui.sh --api`)",
|
||||
"(latest)": "(최근)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(pvz. `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(pvz. `sh webui.sh --api`)",
|
||||
"(latest)": "(naujausias)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(contoh `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(contoh `sh webui.sh --api`)",
|
||||
"(latest)": "(terkini)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(f.eks. `sh webui.sh --api --api-auth brukernavn_passord`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(f.eks. `sh webui.sh --api`)",
|
||||
"(latest)": "(siste)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ modeller }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "{{COUNT}} svar",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(bv. `sh webui.sh --api --api-auth gebruikersnaam_wachtwoord`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(bv. `sh webui.sh --api`)",
|
||||
"(latest)": "(nieuwste)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ modellen }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||
"(e.g. `sh webui.sh --api`)": "(ਉਦਾਹਰਣ ਦੇ ਤੌਰ ਤੇ `sh webui.sh --api`)",
|
||||
"(latest)": "(ਤਾਜ਼ਾ)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ ਮਾਡਲ }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(np. `sh webui.sh --api --api-auth username_password`)>",
|
||||
"(e.g. `sh webui.sh --api`)": "(np. `sh webui.sh --api`)",
|
||||
"(latest)": "(najnowszy)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ modele }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "{{COUNT}} odpowiedzi",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(por exemplo, `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(por exemplo, `sh webui.sh --api`)",
|
||||
"(latest)": "(último)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||
"(e.g. `sh webui.sh --api`)": "(por exemplo, `sh webui.sh --api`)",
|
||||
"(latest)": "(mais recente)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ modelos }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(de ex. `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(de ex. `sh webui.sh --api`)",
|
||||
"(latest)": "(ultimul)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ modele }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(например, `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(например, `sh webui.sh --api`)",
|
||||
"(latest)": "(последняя)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ модели }}",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} скрытых строк",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Ответов",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(napr. `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(napr. `sh webui.sh --api`)",
|
||||
"(latest)": "Najnovšie",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(нпр. `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(нпр. `sh webui.sh --api`)",
|
||||
"(latest)": "(најновије)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ модели }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "{{COUNT}} одговора",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(t.ex. `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(t.ex. `sh webui.sh --api`)",
|
||||
"(latest)": "(senaste)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ modeller }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Svar",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(เช่น `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(เช่น `sh webui.sh --api`)",
|
||||
"(latest)": "(ล่าสุด)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||
"(e.g. `sh webui.sh --api`)": "",
|
||||
"(latest)": "",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(örn. `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(örn. `sh webui.sh --api`)",
|
||||
"(latest)": "(en son)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Yanıt",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(напр. `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(напр. `sh webui.sh --api`)",
|
||||
"(latest)": "(остання)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} прихованих рядків",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Відповіді",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(مثال کے طور پر: `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(مثال کے طور پر: `sh webui.sh --api`)",
|
||||
"(latest)": "(تازہ ترین)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ ماڈلز }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "",
|
||||
"(e.g. `sh webui.sh --api`)": "(vd: `sh webui.sh --api`)",
|
||||
"(latest)": "(mới nhất)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ mô hình }}",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(例如 `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(例如 `sh webui.sh --api`)",
|
||||
"(latest)": "(最新版)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} 行被隐藏",
|
||||
"{{COUNT}} Replies": "{{COUNT}} 回复",
|
||||
|
@ -4,6 +4,7 @@
|
||||
"(e.g. `sh webui.sh --api --api-auth username_password`)": "(例如 `sh webui.sh --api --api-auth username_password`)",
|
||||
"(e.g. `sh webui.sh --api`)": "(例如 `sh webui.sh --api`)",
|
||||
"(latest)": "(最新版)",
|
||||
"(Ollama)": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} hidden lines": "已隱藏 {{COUNT}} 行",
|
||||
"{{COUNT}} Replies": "{{COUNT}} 回覆",
|
||||
@ -66,7 +67,7 @@
|
||||
"Allow Voice Interruption in Call": "允許在通話中打斷語音",
|
||||
"Allowed Endpoints": "允許的端點",
|
||||
"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.": "top_p 的替代方案,旨在確保品質與多樣性之間的平衡。參數 p 代表一個 token 被考慮的最低機率,相對於最有可能 token 的機率。例如,當 p=0.05 且最有可能 token 的機率為 0.9 時,機率小於 0.045 的 logits 將被過濾掉。",
|
||||
"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.": "top_p 的替代方案,用於確保品質與多樣性之間的平衡。參數 p 代表一個 token 被考慮的最低機率,相對於最有可能 token 的機率。例如,當 p=0.05 且最有可能 token 的機率為 0.9 時,機率小於 0.045 的 logits 將被過濾掉。",
|
||||
"Always": "總是",
|
||||
"Always Collapse Code Blocks": "總是摺疊程式碼區塊",
|
||||
"Always Expand Details": "總是展開詳細資訊",
|
||||
@ -132,7 +133,7 @@
|
||||
"Bing Search V7 Endpoint": "Bing 搜尋 V7 端點",
|
||||
"Bing Search V7 Subscription Key": "Bing 搜尋 V7 訂閱金鑰",
|
||||
"Bocha Search API Key": "Bocha 搜尋 API 金鑰",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "針對受限的回應,增強或懲罰特定 tokens。偏置值將限制在 -100 到 100 (含)。 (預設: none)",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "針對受限的回應,增強或懲罰特定 tokens。偏置值將限制在 -100 到 100 (含)。 (預設:none)",
|
||||
"Brave Search API Key": "Brave 搜尋 API 金鑰",
|
||||
"By {{name}}": "由 {{name}} 製作",
|
||||
"Bypass Embedding and Retrieval": "繞過嵌入與檢索",
|
||||
@ -171,11 +172,11 @@
|
||||
"Clear memory": "清除記憶",
|
||||
"Clear Memory": "清除記憶",
|
||||
"click here": "點選這裡",
|
||||
"Click here for filter guides.": "點選這裡查看篩選器指南。",
|
||||
"Click here for filter guides.": "點選這裡檢視篩選器指南。",
|
||||
"Click here for help.": "點選這裡取得協助。",
|
||||
"Click here to": "點選這裡",
|
||||
"Click here to download user import template file.": "點選這裡下載使用者匯入範本檔案。",
|
||||
"Click here to learn more about faster-whisper and see the available models.": "點選這裡了解更多關於 faster-whisper 的資訊並查看可用的模型。",
|
||||
"Click here to learn more about faster-whisper and see the available models.": "點選這裡了解更多關於 faster-whisper 的資訊並檢視可用的模型。",
|
||||
"Click here to see available models.": "點選這裡以檢視可用的模型",
|
||||
"Click here to select": "點選這裡選擇",
|
||||
"Click here to select a csv file.": "點選這裡選擇 CSV 檔案。",
|
||||
@ -193,9 +194,9 @@
|
||||
"Code Execution Engine": "程式碼執行引擎",
|
||||
"Code Execution Timeout": "程式執行超時",
|
||||
"Code formatted successfully": "程式碼格式化成功",
|
||||
"Code Interpreter": "程式碼解釋器",
|
||||
"Code Interpreter Engine": "程式碼解釋器引擎",
|
||||
"Code Interpreter Prompt Template": "程式碼解釋器提示詞模板",
|
||||
"Code Interpreter": "程式碼直譯器",
|
||||
"Code Interpreter Engine": "程式碼直譯器引擎",
|
||||
"Code Interpreter Prompt Template": "程式碼直譯器提示詞範本",
|
||||
"Collapse": "摺疊",
|
||||
"Collection": "收藏",
|
||||
"Color": "顏色",
|
||||
@ -225,9 +226,9 @@
|
||||
"Continue with Email": "使用 Email 繼續",
|
||||
"Continue with LDAP": "使用 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.": "控制文字轉語音(TTS)請求中如何分割訊息文字。「標點符號」分割為句子,「段落」分割為段落,「無」則保持訊息為單一字串。",
|
||||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "控制生成文本中 token 序列的重複程度。較高的值(例如 1.5)會更強烈地懲罰重複,而較低的值(例如 1.1)會更寬容。設為 1 時,此功能將停用。",
|
||||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "控制生成文字中 token 序列的重複程度。較高的值(例如 1.5)會更強烈地懲罰重複,而較低的值(例如 1.1)會更寬容。設為 1 時,此功能將停用。",
|
||||
"Controls": "控制項",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "控制輸出結果的連貫性與多樣性之間的平衡。數值越低會產生更集中且連貫的文本。",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "控制輸出結果的連貫性與多樣性之間的平衡。數值越低會產生更集中且連貫的文字。",
|
||||
"Copied": "已複製",
|
||||
"Copied shared chat URL to clipboard!": "已複製共用對話 URL 到剪貼簿!",
|
||||
"Copied to clipboard": "已複製到剪貼簿",
|
||||
@ -252,7 +253,7 @@
|
||||
"Created At": "建立於",
|
||||
"Created by": "建立者",
|
||||
"CSV Import": "CSV 匯入",
|
||||
"Ctrl+Enter to Send": "使用 Ctrl+Enter 發送",
|
||||
"Ctrl+Enter to Send": "使用 Ctrl+Enter 傳送",
|
||||
"Current Model": "目前模型",
|
||||
"Current Password": "目前密碼",
|
||||
"Custom": "自訂",
|
||||
@ -270,7 +271,7 @@
|
||||
"Default permissions": "預設權限",
|
||||
"Default permissions updated successfully": "預設權限更新成功",
|
||||
"Default Prompt Suggestions": "預設提示詞建議",
|
||||
"Default to 389 or 636 if TLS is enabled": "如果啓用了 TLS 則預設為 389 或 636",
|
||||
"Default to 389 or 636 if TLS is enabled": "如果啟用了 TLS 則預設為 389 或 636",
|
||||
"Default to ALL": "預設到所有",
|
||||
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "預設使用分段檢索以提取聚焦且相關的內容,建議用於大多數情況。",
|
||||
"Default User Role": "預設使用者角色",
|
||||
@ -366,12 +367,12 @@
|
||||
"Enable API Key": "啟用 API 金鑰",
|
||||
"Enable autocomplete generation for chat messages": "啟用聊天訊息的自動完成生成",
|
||||
"Enable Code Execution": "啟用程式碼執行",
|
||||
"Enable Code Interpreter": "啟用程式碼解釋器",
|
||||
"Enable Code Interpreter": "啟用程式碼直譯器",
|
||||
"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)以防止模型資料被換出 RAM。此選項會將模型的工作頁面集鎖定在 RAM 中,確保它們不會被換出到磁碟。這可以透過避免頁面錯誤和確保快速資料存取來維持效能。",
|
||||
"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 的延伸,透過將磁碟檔案視為在 RAM 中來處理。這可以透過允許更快的資料存取來改善模型效能。然而,它可能無法在所有系統上正常運作,並且可能會消耗大量磁碟空間。",
|
||||
"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 的延伸,透過將磁碟檔案視為在 RAM 中來處理。這可以透過允許更快的資料存取來改善模型效能。然而,它可能無法在所有系統上正常運作,並且可能會消耗大量磁碟空間。",
|
||||
"Enable Message Rating": "啟用訊息評分",
|
||||
"Enable Mirostat sampling for controlling perplexity.": "啟用 Mirostat 採樣以控制 perplexity。",
|
||||
"Enable Mirostat sampling for controlling perplexity.": "啟用 Mirostat 取樣以控制 perplexity。",
|
||||
"Enable New Sign Ups": "允許新使用者註冊",
|
||||
"Enabled": "已啟用",
|
||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "請確認您的 CSV 檔案包含以下 4 個欄位,並按照此順序排列:姓名、電子郵件、密碼、角色。",
|
||||
@ -434,11 +435,11 @@
|
||||
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "請輸入您 WebUI 的公開 URL。此 URL 將用於在通知中產生連結。",
|
||||
"Enter Tika Server URL": "輸入 Tika 伺服器 URL",
|
||||
"Enter timeout in seconds": "請以秒為單位輸入超時時間",
|
||||
"Enter to Send": "使用 Enter 發送",
|
||||
"Enter to Send": "使用 Enter 傳送",
|
||||
"Enter Top K": "輸入 Top K 值",
|
||||
"Enter URL (e.g. http://127.0.0.1:7860/)": "輸入 URL(例如:http://127.0.0.1:7860/)",
|
||||
"Enter URL (e.g. http://localhost:11434)": "輸入 URL(例如:http://localhost:11434)",
|
||||
"Enter your current password": "輸入您的當前密碼",
|
||||
"Enter your current password": "輸入您的目前密碼",
|
||||
"Enter Your Email": "輸入您的電子郵件",
|
||||
"Enter Your Full Name": "輸入您的全名",
|
||||
"Enter your message": "輸入您的訊息",
|
||||
@ -482,7 +483,7 @@
|
||||
"External Models": "外部模型",
|
||||
"Failed to add file.": "新增檔案失敗。",
|
||||
"Failed to create API Key.": "建立 API 金鑰失敗。",
|
||||
"Failed to fetch models": "獲取模型失敗",
|
||||
"Failed to fetch models": "取得模型失敗",
|
||||
"Failed to read clipboard contents": "讀取剪貼簿內容失敗",
|
||||
"Failed to save models configuration": "儲存模型設定失敗",
|
||||
"Failed to update settings": "更新設定失敗",
|
||||
@ -589,13 +590,13 @@
|
||||
"Include": "包含",
|
||||
"Include `--api-auth` flag when running stable-diffusion-webui": "執行 stable-diffusion-webui 時包含 `--api-auth` 參數",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "執行 stable-diffusion-webui 時包含 `--api` 參數",
|
||||
"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.": "影響算法對生成文本回饋的反應速度。較低的學習率會導致調整速度較慢,而較高的學習率會使算法反應更靈敏。",
|
||||
"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.": "影響演算法對生成文本回饋的反應速度。較低的學習率會導致調整速度較慢,而較高的學習率會使演算法反應更靈敏。",
|
||||
"Info": "資訊",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "將完整內容注入為上下文以進行全面處理,建議用於複雜查詢。",
|
||||
"Input commands": "輸入命令",
|
||||
"Install from Github URL": "從 GitHub URL 安裝",
|
||||
"Instant Auto-Send After Voice Transcription": "語音轉錄後立即自動傳送",
|
||||
"Integration": "集成",
|
||||
"Integration": "整合",
|
||||
"Interface": "介面",
|
||||
"Invalid file format.": "無效檔案格式。",
|
||||
"Invalid Tag": "無效標籤",
|
||||
@ -701,7 +702,7 @@
|
||||
"Modelfile Content": "模型檔案內容",
|
||||
"Models": "模型",
|
||||
"Models Access": "模型存取",
|
||||
"Models configuration saved successfully": "模型設定保存成功",
|
||||
"Models configuration saved successfully": "模型設定儲存成功",
|
||||
"Mojeek Search API Key": "Mojeek 搜尋 API 金鑰",
|
||||
"more": "更多",
|
||||
"More": "更多",
|
||||
@ -764,7 +765,7 @@
|
||||
"Open file": "開啟檔案",
|
||||
"Open in full screen": "全螢幕開啟",
|
||||
"Open new chat": "開啟新的對話",
|
||||
"Open WebUI uses faster-whisper internally.": "Open WebUI 使用内部 faster-whisper。",
|
||||
"Open WebUI uses faster-whisper internally.": "Open WebUI 使用內部 faster-whisper。",
|
||||
"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI 使用 SpeechT5 和 CMU Arctic 說話者嵌入。",
|
||||
"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open WebUI 版本 (v{{OPEN_WEBUI_VERSION}}) 低於所需版本 (v{{REQUIRED_VERSION}})",
|
||||
"OpenAI": "OpenAI",
|
||||
@ -772,7 +773,7 @@
|
||||
"OpenAI API Config": "OpenAI API 設定",
|
||||
"OpenAI API Key is required.": "需要 OpenAI API 金鑰。",
|
||||
"OpenAI API settings updated": "OpenAI API 設定已更新",
|
||||
"OpenAI URL/Key required.": "需要 OpenAI URL或金鑰。",
|
||||
"OpenAI URL/Key required.": "需要 OpenAI URL 或金鑰。",
|
||||
"or": "或",
|
||||
"Organize your users": "組織您的使用者",
|
||||
"Other": "其他",
|
||||
@ -810,8 +811,8 @@
|
||||
"Please select a reason": "請選擇原因",
|
||||
"Port": "連接埠",
|
||||
"Positive attitude": "積極的態度",
|
||||
"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 新增前綴以避免與其他連線衝突 - 留空以停用",
|
||||
"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 新增字首以避免與其他連線衝突 - 留空以停用",
|
||||
"Presence Penalty": "在場懲罰",
|
||||
"Previous 30 days": "過去 30 天",
|
||||
"Previous 7 days": "過去 7 天",
|
||||
@ -859,13 +860,13 @@
|
||||
"Reset All Models": "重設所有模型",
|
||||
"Reset Upload Directory": "重設上傳目錄",
|
||||
"Reset Vector Storage/Knowledge": "重設向量儲存或知識",
|
||||
"Reset view": "重設視圖",
|
||||
"Reset view": "重設檢視",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "無法啟用回應通知,因為網站權限已遭拒。請前往瀏覽器設定以授予必要存取權限。",
|
||||
"Response splitting": "回應分割",
|
||||
"Result": "結果",
|
||||
"Retrieval": "檢索",
|
||||
"Retrieval Query Generation": "檢索查詢生成",
|
||||
"Rich Text Input for Chat": "使用富文本輸入對話",
|
||||
"Rich Text Input for Chat": "使用富文字輸入對話",
|
||||
"RK": "RK",
|
||||
"Role": "角色",
|
||||
"Rosé Pine": "玫瑰松",
|
||||
@ -914,7 +915,7 @@
|
||||
"Select a pipeline url": "選擇管線 URL",
|
||||
"Select a tool": "選擇工具",
|
||||
"Select an auth method": "選擇驗證方式",
|
||||
"Select an Ollama instance": "選擇一個 Ollama 實例",
|
||||
"Select an Ollama instance": "選擇一個 Ollama 執行個體",
|
||||
"Select Engine": "選擇引擎",
|
||||
"Select Knowledge": "選擇知識庫",
|
||||
"Select only one model to call": "僅選擇一個模型來呼叫",
|
||||
@ -949,8 +950,8 @@
|
||||
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "對至少出現過一次的 token 設定統一的偏差值。較高的值(例如 1.5)會更強烈地懲罰重複,而較低的值(例如 0.9)會更寬容。設為 0 時,此功能將停用。",
|
||||
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "根據 token 出現的次數,設定一個縮放偏差值來懲罰重複。較高的值(例如 1.5)會更強烈地懲罰重複,而較低的值(例如 0.9)會更寬容。設為 0 時,此功能將停用。",
|
||||
"Sets how far back for the model to look back to prevent repetition.": "設定模型回溯多遠以防止重複。",
|
||||
"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.": "設定用於生成的隨機數種子。將其設定為特定數字將使模型針對相同的提示生成相同的文本。",
|
||||
"Sets the size of the context window used to generate the next token.": "設定用於生成下一個 token 的上下文窗口大小。",
|
||||
"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.": "設定用於生成的隨機數種子。將其設定為特定數字將使模型針對相同的提示生成相同的文字。",
|
||||
"Sets the size of the context window used to generate the next token.": "設定用於生成下一個 token 的上下文視窗大小。",
|
||||
"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.": "設定要使用的停止序列。當遇到此模式時,大型語言模型將停止生成文字並返回。可以在模型檔案中指定多個單獨的停止參數來設定多個停止模式。",
|
||||
"Settings": "設定",
|
||||
"Settings saved successfully!": "設定已成功儲存!",
|
||||
@ -993,7 +994,7 @@
|
||||
"Tags": "標籤",
|
||||
"Tags Generation": "標籤生成",
|
||||
"Tags Generation Prompt": "標籤生成提示詞",
|
||||
"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.": "尾部自由採樣用於減少輸出結果中較低機率 token 的影響。較高的值(例如 2.0)會減少更多影響,而值為 1.0 時會停用此設定。",
|
||||
"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.": "尾部自由取樣用於減少輸出結果中較低機率 token 的影響。較高的值(例如 2.0)會減少更多影響,而值為 1.0 時會停用此設定。",
|
||||
"Talk to model": "與模型對話",
|
||||
"Tap to interrupt": "點選以中斷",
|
||||
"Tasks": "任務",
|
||||
@ -1008,11 +1009,11 @@
|
||||
"Thanks for your feedback!": "感謝您的回饋!",
|
||||
"The Application Account DN you bind with for search": "您綁定用於搜尋的應用程式帳號 DN",
|
||||
"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.": "批次大小決定一次處理多少文本請求。較高的批次大小可以提高模型的效能和速度,但也需要更多記憶體。",
|
||||
"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.": "批次大小決定一次處理多少文字請求。較高的批次大小可以提高模型的效能和速度,但也需要更多記憶體。",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "這個外掛背後的開發者是來自社群的熱情志願者。如果您覺得這個外掛很有幫助,請考慮為其開發做出貢獻。",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "評估排行榜基於 Elo 評分系統,並即時更新。",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "映射到使用者用於登入的使用者郵箱的 LDAP 屬性。",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "映射到使用者用於登入的使用者名稱的 LDAP 屬性。",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "對映到使用者用於登入的使用者郵箱的 LDAP 屬性。",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "對映到使用者用於登入的使用者名稱的 LDAP 屬性。",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "排行榜目前處於測試階段,我們可能會在改進演算法時調整評分計算方式。",
|
||||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "檔案大小上限(MB)。如果檔案大小超過此限制,檔案將不會被上傳。",
|
||||
"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.": "對話中一次可使用的最大檔案數量。如果檔案數量超過此限制,檔案將不會被上傳。",
|
||||
@ -1021,10 +1022,10 @@
|
||||
"Theme": "主題",
|
||||
"Thinking...": "正在思考...",
|
||||
"This action cannot be undone. Do you wish to continue?": "此操作無法復原。您確定要繼續進行嗎?",
|
||||
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "此頻道創建於 {{createdAt}}。這是 {{channelName}} 頻道的起點。",
|
||||
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "此頻道建立於 {{createdAt}}。這是 {{channelName}} 頻道的起點。",
|
||||
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "這確保您寶貴的對話會安全地儲存到您的後端資料庫。謝謝!",
|
||||
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "這是一個實驗性功能,它可能無法如預期運作,並且可能會隨時變更。",
|
||||
"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.": "此選項控制在刷新上下文時保留多少 token。例如,如果設定為 2,則會保留對話上下文的最後 2 個 token。保留上下文有助於保持對話的連貫性,但也可能降低對新主題的回應能力。",
|
||||
"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.": "此選項控制在重新整理上下文時保留多少 token。例如,如果設定為 2,則會保留對話上下文的最後 2 個 token。保留上下文有助於保持對話的連貫性,但也可能降低對新主題的回應能力。",
|
||||
"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.": "此選項設定模型在其回應中可以生成的最大 token 數量。增加此限制允許模型提供更長的答案,但也可能增加生成無用或不相關內容的可能性。",
|
||||
"This option will delete all existing files in the collection and replace them with newly uploaded files.": "此選項將刪除集合中的所有現有檔案,並用新上傳的檔案取代它們。",
|
||||
"This response was generated by \"{{model}}\"": "此回應由「{{model}}」生成",
|
||||
@ -1152,10 +1153,10 @@
|
||||
"Webhook URL": "Webhook URL",
|
||||
"WebUI Settings": "WebUI 設定",
|
||||
"WebUI URL": "WebUI URL",
|
||||
"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?": "您現在的工作是什麽?",
|
||||
"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": "無論您在何處",
|
||||
@ -1163,14 +1164,14 @@
|
||||
"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.": "與 top-k 一起使用。較高的值(例如 0.95)將產生更多樣化的文本,而較低的值(例如 0.5)將生成更集中和保守的文本。",
|
||||
"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.": "與 top-k 一起使用。較高的值(例如 0.95)將產生更多樣化的文字,而較低的值(例如 0.5)將生成更集中和保守的文字。",
|
||||
"Workspace": "工作區",
|
||||
"Workspace Permissions": "工作區權限",
|
||||
"Write": "寫入",
|
||||
"Write a prompt suggestion (e.g. Who are you?)": "撰寫提示詞建議(例如:你是誰?)",
|
||||
"Write a summary in 50 words that summarizes [topic or keyword].": "用 50 字寫一篇總結 [主題或關鍵字] 的摘要。",
|
||||
"Write something...": "寫一些什麽...",
|
||||
"Write your model template content here": "在此撰寫您的模型範本内容",
|
||||
"Write something...": "寫一些什麼...",
|
||||
"Write your model template content here": "在此撰寫您的模型範本內容",
|
||||
"Yesterday": "昨天",
|
||||
"You": "您",
|
||||
"You are currently using a trial license. Please contact support to upgrade your license.": "您目前使用的是試用授權。請聯絡支援以升級您的授權。",
|
||||
|
Loading…
Reference in New Issue
Block a user