Compare commits

..

10 Commits

Author SHA1 Message Date
ONLY-yours ffc439fcce 🐛 fix: prevent git clone from hanging on first message
Add GIT_TERMINAL_PROMPT=0 so unauthenticated private repo clones fail
immediately instead of blocking on a credential prompt. Add timeout 120
as a hard deadline so slow clones don't stall the sandbox indefinitely.

Root cause: clone hangs → lh hetero exec never starts → WebSocket gets
no events → first message stuck forever. Second message works because
the partial clone dir already exists, so [ -d dir ] skips cloning.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-09 22:25:14 +08:00
ONLY-yours 176e3490c8 🐛 fix: restore web hetero→gateway routing; update stale test
On web, a configured heterogeneousProvider always routes to gateway —
the cloud sandbox is the only execution environment regardless of
isGatewayMode. The test assumed the pre-cloud-CC world where web
ignored hetero providers entirely.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-09 19:08:55 +08:00
ONLY-yours f1bc10efb2 🐛 fix: remove incorrect web hetero→gateway forced routing in agentDispatcher
On web, heterogeneousProvider is ignored — routing falls through to isGatewayMode.
Cloud CC only runs when gateway mode is enabled; gateway.ts handles sandbox
spawning when it detects a hetero provider.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-09 19:06:33 +08:00
ONLY-yours 33e1fa7b31 💬 i18n: add claude setup-token hint to token description
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-09 19:00:13 +08:00
ONLY-yours 40be523bbd 🔒 fix: address security and dead-code issues from PR review
- sandboxRunner: sanitize repo dir name to prevent shell injection
- sandboxRunner: use git insteadOf (-c flag) so token is never stored in .git/config
- cloudHeteroContext: fix return type from string|undefined to string (dead branch)
- CloudRepoSwitcher: remove unreachable empty-list branch in popover content

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-09 18:46:29 +08:00
ONLY-yours e6608399f7 🐛 fix: add missing getPendingTopicRepos import in gateway 2026-05-09 18:43:52 +08:00
ONLY-yours d5b74d31b9 🐛 fix: consume pendingTopicRepos only after topic creation succeeds 2026-05-09 18:31:16 +08:00
ONLY-yours f59e32ff5e ♻️ refactor: move pendingTopicRepos real impl into submodule, remove cloud override 2026-05-09 18:26:23 +08:00
ONLY-yours 4823d22560 🐛 fix: add open-source stub for pendingTopicRepos to fix Vite build 2026-05-09 18:22:04 +08:00
ONLY-yours 0405676c4a feat: Cloud Claude Code V3 — repo picker, GitHub token, sandbox context
- Add CloudRepoSwitcher component (web-only multi-select repo picker)
  - Pre-topic selections buffered in module singleton (pendingTopicRepos)
  - Consumed by gateway.ts at topic creation time via appContext.initialTopicMetadata
  - Eliminates race condition where updateTopicMetadata dropped silently
- Extend ChatTopicMetadata with repos[] field for multi-repo binding
- Add initialTopicMetadata to ExecAgentAppContext so repos are written to
  topic metadata at creation time (server-side, zero race condition)
- Extend ExecAgentSchema Zod schema with initialTopicMetadata
- Inject GITHUB_TOKEN env var into sandbox so CC can use git/gh CLI
- Build cloudHeteroContext with GitHub auth section when token is available
- Add workingDirectory selector for web (repos[0] fallback)
- Add refreshTopic call in gateway path after new topic creation
- Add CloudHeterogeneousConfig profile editor for GITHUB_REPOS / GITHUB_CRED_KEY
- Extend sandboxRunner with repo clone setup script and systemContext support
2026-05-09 18:17:26 +08:00
279 changed files with 1826 additions and 4199 deletions
+259 -19
View File
@@ -5,8 +5,6 @@ description: "Version release workflow. Use when the user mentions 'release', 'h
# Version Release Workflow
This skill is a router. The detailed steps live in `reference/`.
## Scope Boundary (Important)
This skill is only for:
@@ -30,12 +28,68 @@ The primary development branch is **canary**. All day-to-day development happens
Only two release types are used in practice (major releases are extremely rare and can be ignored):
| Type | Use Case | Frequency | Source Branch | PR Title Format | Version | Reference |
| ----- | ---------------------------------------------- | --------------------- | -------------- | ------------------------------------ | ------------- | -------------------------------------- |
| Minor | Feature iteration release | \~Every 4 weeks | canary | `🚀 release: v{x.y.0}` | Manually set | `reference/minor-release.md` |
| Patch | Weekly release / hotfix / model / DB migration | \~Weekly or as needed | canary or main | Custom (e.g. `🚀 release: 20260222`) | Auto patch +1 | `reference/patch-release-scenarios.md` |
| Type | Use Case | Frequency | Source Branch | PR Title Format | Version |
| ----- | ---------------------------------------------- | --------------------- | -------------- | ------------------------------------ | ------------- |
| Minor | Feature iteration release | \~Every 4 weeks | canary | `🚀 release: v{x.y.0}` | Manually set |
| Patch | Weekly release / hotfix / model / DB migration | \~Weekly or as needed | canary or main | Custom (e.g. `🚀 release: 20260222`) | Auto patch +1 |
For writing the release-note body (any release type), see `reference/release-notes-style.md`.
## Minor Release Workflow
Used to publish a new minor version (e.g. `v2.2.0`), roughly every 4 weeks.
### Steps
1. **Create a release branch from canary**
```bash
git checkout canary
git pull origin canary
git checkout -b release/v{version}
git push -u origin release/v{version}
```
2. **Determine the version number** — Read the current version from `package.json` and compute the next minor version (e.g. 2.1.x -> 2.2.0)
3. **Create a PR to main**
```bash
gh pr create \
--title "🚀 release: v{version}" \
--base main \
--head release/v{version} \
--body "## 📦 Release v{version} ..."
```
> \[!IMPORTANT]
> The PR title must strictly match the `🚀 release: v{x.y.z}` format. CI uses a regex on this title to determine the exact version number.
4. **Automatic trigger after merge**: `auto-tag-release` detects the title format and uses the version number from the title to complete the release.
### Scripts
```bash
bun run release:branch # Interactive
bun run release:branch --minor # Directly specify minor
```
## Patch Release Workflow
Version number is automatically bumped by patch +1. There are 4 common scenarios:
| Scenario | Source Branch | Branch Naming | Description |
| ------------------- | ------------- | ----------------------------- | ------------------------------------------------ |
| Weekly Release | canary | `release/weekly-{YYYYMMDD}` | Weekly release train, canary -> main |
| Bug Hotfix | main | `hotfix/v{version}-{hash}` | Emergency bug fix |
| New Model Launch | canary | Community PR merged directly | New model launch, triggered by PR title prefix |
| DB Schema Migration | main | `release/db-migration-{name}` | Database migration, requires dedicated changelog |
All scenarios auto-bump patch +1. Patch PR titles do not need a version number. See `reference/patch-release-scenarios.md` for detailed steps per scenario.
### Scripts
```bash
bun run hotfix:branch # Hotfix scenario
```
## Auto-Release Trigger Rules (`auto-tag-release.yml`)
@@ -73,7 +127,7 @@ PRs that don't match any conditions above (e.g. `docs`, `chore`, `ci`, `test`) w
When the user requests a release:
### Precheck (applies to all release types)
### Precheck
Before creating the release branch, verify the source branch:
@@ -81,18 +135,204 @@ Before creating the release branch, verify the source branch:
- **All other release/hotfix branches**: must branch from `main`; run `git merge-base --is-ancestor main <branch> && echo OK`
- If the branch is based on the wrong source, recreate from the correct base
### Routing
### Minor Release
Pick the right reference and follow it end-to-end:
1. Read `package.json` to get the current version and compute the next minor version
2. Create a `release/v{version}` branch from canary
3. Push and create PR — **title must be `🚀 release: v{version}`**
4. Inform the user that merge will auto-trigger release
- **Minor release** → `reference/minor-release.md`
- **Patch release** (weekly / hotfix / model launch / DB migration) → `reference/patch-release-scenarios.md`
- **Writing the PR body / release notes** (any release type) → `reference/release-notes-style.md`
### Patch Release
### Hard Rules (apply to every release type)
Choose workflow by scenario (see `reference/patch-release-scenarios.md`):
- **Do NOT** manually modify `package.json` version — CI handles it.
- **Do NOT** manually create tags — CI handles them.
- Minor PR title format is strict (`🚀 release: v{x.y.z}`).
- Patch PRs do not need an explicit version number.
- Keep release facts accurate; do not invent metrics or availability statements. Release-note inputs (compare base, PR refs, contributor list) **must be derived from `git`** per `reference/release-notes-style.md` § Computing Inputs — never from memory or descriptions.
- **Weekly Release**: create `release/weekly-{YYYYMMDD}` from canary; use `git log main..canary` for release note inputs; title like `🚀 release: 20260222`
- **Bug Hotfix**: create `hotfix/` from main; use gitmoji prefix title (e.g. `🐛 fix: ...`)
- **New Model Launch**: community PRs trigger automatically via title prefix (`feat` / `style`)
- **DB Migration**: create `release/db-migration-{name}` from main; cherry-pick migration commits; include dedicated migration notes
### Hard Rules
- **Do NOT** manually modify `package.json` version
- **Do NOT** manually create tags
- Minor PR title format is strict
- Patch PRs do not need explicit version number
- Keep release facts accurate; do not invent metrics or availability statements
## GitHub Release Changelog Standard (Long-Form Style)
Use this section for writing **GitHub Release notes** (or release PR body when the PR body is intended to become release notes).\
Do not use this as `docs/changelog` page guidance.
### Positioning
This release-note style is:
1. **Data-backed at the top** (date, range, key metrics)
2. **Narrative first, then structured detail**
3. **Deep but scannable** (clear sectioning + compact bullets)
4. **Contributor-forward** (credits are part of the release story)
### Required Inputs Before Writing
Collect these inputs first:
1. Compare range (`<prev_tag>...<current_tag>`)
2. Release metrics (commits, merged PRs, resolved issues, contributors, optional files/insertions/deletions)
3. High-impact changes by domain (core loop, platform/gateway, UX, tooling, security, reliability)
4. Contributor list (with standout contributions if known)
5. Known risks / migrations / rollout notes (if any)
If metrics cannot be reliably computed, omit unknown numbers instead of guessing.
### Canonical Structure
Follow this section order unless the user asks otherwise:
1. `# 🚀 LobeHub Release (<YYYYMMDD>)`
2. Metadata lines:
- `Release Date`
- `Since <Previous Version>` metrics
3. One quoted release thesis (single paragraph, 1-2 lines)
4. `## ✨ Highlights` (6-12 bullets for major releases; 3-8 for weekly)
5. Domain blocks with optional `###` subsections:
- `## 🏗️ Core Agent & Architecture` (or equivalent product core)
- `## 📱 Platforms / Integrations`
- `## 🖥️ CLI & User Experience`
- `## 🔧 Tooling`
- `## 🔒 Security & Reliability`
- `## 📚 Documentation` (optional if meaningful)
6. `## 👥 Contributors`
7. `**Full Changelog**: <prev>...<current>`
Use `---` separators between major blocks for long releases.
### Writing Rules (Hard)
1. **No fabricated metrics**: all numbers must be traceable.
2. **No vague headline bullets**: each bullet must include capability + impact.
3. **No internal-only framing**: phrase from user/operator perspective.
4. **Security must be explicit** when security-sensitive fixes are present.
5. **PR/issue linkage**: use `(#1234)` when IDs are available.
6. **Terminology consistency**: same feature/provider name across sections.
7. **Do not bury migration or breaking changes**: elevate to dedicated section or callout.
### Style Rules (Long-Form)
1. Start with an "everyday use" framing, not implementation internals.
2. Mix narrative sentence + evidence bullets.
3. Keep bullets compact but informative:
- Good: `**Fast Mode (`/fast`)** — Priority routing for OpenAI and Anthropic, reducing latency on supported models. (#6875, #6960)`
4. Use bold only for capability names, not for whole sentences.
5. Keep heading depth <= 3 levels.
### Release Size Heuristics
- **Minor / major milestone release**
- Include full structure with multiple domain blocks.
- `Highlights` usually 8-12 bullets.
- **Weekly patch release**
- Keep full skeleton but reduce subsection count.
- `Highlights` usually 4-8 bullets.
- **DB migration release**
- Keep concise.
- Must include `Migration overview`, operator impact, and rollback/backup note.
### Contributor Ordering
Render contributors as a **single flat list** (no separate "Community" / "Core Team" subsections). Order: **community contributors first, team members after**. Within each group, sort by PR count desc. Bots (`@lobehubbot`, `renovate[bot]`) go on a separate "maintenance" line.
**LobeHub team roster** — anyone in this list is a team member; anyone not in this list is a community contributor:
- @arvinxx
- @Innei
- @tjx666 (commit author name: YuTengjing)
- @LiJian
- @Neko
- @Rdmclin2
- @AmAzing129
- @sudongyuer
- @rivertwilight
- @CanisMinor
> **Resolving handles** — git author names (e.g. `YuTengjing`) are not always the GitHub handle. Verify via `gh pr view <PR> --json author` or `gh api search/users -f q='<email>'` before listing.
If a new contributor appears who is not on this list, treat them as community by default and ask the user whether to add them to the roster.
### GitHub Release Changelog Template
```md
# 🚀 LobeHub Release (<YYYYMMDD>)
**Release Date:** <Month DD, YYYY>
**Since <Previous Version>:** <N merged PRs> · <N resolved issues> · <N contributors>
> <One release thesis sentence: what this release unlocks in practice.>
---
## ✨ Highlights
- **<Capability A>** — <What changed and why it matters>. (#1234)
- **<Capability B>** — <What changed and why it matters>. (#2345)
- **<Capability C>** — <What changed and why it matters>. (#3456)
---
## 🏗️ Core Product & Architecture
### <Subdomain>
- <Concrete change + impact>. (#...)
- <Concrete change + impact>. (#...)
---
## 📱 Platforms / Integrations
- <Platform update + impact>. (#...)
- <Compatibility/reliability fix + impact>. (#...)
---
## 🖥️ CLI & User Experience
- <User-facing workflow improvement>. (#...)
- <Quality-of-life fix>. (#...)
---
## 🔧 Tooling
- <Tool/runtime improvement>. (#...)
---
## 🔒 Security & Reliability
- **Security:** <hardening or vulnerability fix>. (#...)
- **Reliability:** <stability/performance behavior improvement>. (#...)
---
## 👥 Contributors
Huge thanks to **<N contributors>** who shipped **<N merged PRs>** this cycle.
@<community-handle> · @<community-handle> · @<team-handle> · @<team-handle>
Plus @lobehubbot and renovate[bot] for maintenance.
---
**Full Changelog**: <previous_tag>...<current_tag>
```
### Quick Checklist
- [ ] Uses top metadata and a clear release thesis
- [ ] Includes `Highlights` plus domain-grouped sections
- [ ] Every major bullet states both change and user/operator impact
- [ ] Security and reliability updates are explicitly surfaced (when present)
- [ ] Contributor credits and compare range are included
- [ ] All numbers and claims are verifiable
@@ -1,47 +0,0 @@
# Minor Release Workflow
Used to publish a new minor version (e.g. `v2.2.0`), roughly every 4 weeks. The PR title carries the exact version number; CI parses it to drive the rest of the release.
## Steps
1. **Create a release branch from canary**
```bash
git checkout canary
git pull origin canary
git checkout -b release/v{version}
git push -u origin release/v{version}
```
2. **Determine the version number** — Read the current version from `package.json` and compute the next minor version (e.g. `2.1.x` → `2.2.0`).
3. **Create a PR to main**
```bash
gh pr create \
--title "🚀 release: v{version}" \
--base main \
--head release/v{version} \
--body-file release_body.md
```
> \[!IMPORTANT]
> The PR title must strictly match the `🚀 release: v{x.y.z}` format. CI uses a regex on this title to determine the exact version number.
4. **Write the PR body as release notes** — Follow `release-notes-style.md`. Compare base is the latest semver tag on main (`git describe --tags --abbrev=0 origin/main`).
5. **Automatic trigger after merge** — `auto-tag-release` detects the title format, uses the version number from the title, bumps `package.json`, tags `v{x.y.z}`, creates the GitHub Release, and dispatches `sync-main-to-canary`.
## Scripts
```bash
bun run release:branch # Interactive
bun run release:branch --minor # Directly specify minor
```
## Hard Rules (specific to Minor)
- PR title format is **strict**: `🚀 release: v{x.y.z}`. Any deviation falls through to patch detection.
- Do **NOT** manually modify `package.json` version — CI will bump it.
- Do **NOT** manually create the tag — CI will tag.
- Highlights bullet count is usually 812 (see `release-notes-style.md` size heuristics).
@@ -21,16 +21,12 @@ git push -u origin release/weekly-{YYYYMMDD}
2. **Scan changes and write changelog**
Compute the previous tag from main first — never reuse the last weekly's tag, since hotfixes published in between will be missed:
```bash
git fetch origin main canary --tags
PREV_TAG=$(git describe --tags --abbrev=0 origin/main --match 'v*.*.*' --exclude '*-canary*' --exclude '*-nightly*')
git log "$PREV_TAG..origin/release/weekly-{YYYYMMDD}" --oneline --no-merges
git diff "$PREV_TAG...origin/release/weekly-{YYYYMMDD}" --stat
git log main..canary --oneline
git diff main...canary --stat
```
Then follow `./release-notes-style.md` § **Computing Inputs (Hard Rules)** to derive PR refs, metrics, and contributors. Every `(#XXXX)` in the body must come from actual commit subjects in this range — never inferred from descriptions.
Write a user-facing changelog following the format in `patch-release-changelog-example.md`.
3. **Create PR to main** with the changelog as the PR body
@@ -1,316 +0,0 @@
# GitHub Release Changelog Standard (Long-Form Style)
Use this guide for **GitHub Release notes** — the body of a release PR that becomes the GitHub Release after merge. Do **not** use it for `docs/changelog/*.mdx` website pages (load `../../docs-changelog/SKILL.md` instead).
## Positioning
This release-note style is:
1. **Data-backed at the top** (date, range, key metrics)
2. **Narrative first, then structured detail**
3. **Deep but scannable** (clear sectioning + compact bullets)
4. **Contributor-forward** (credits are part of the release story)
## Required Inputs Before Writing
Collect these inputs first:
1. Compare range (`<prev_tag>...<current_tag>`)
2. Release metrics (commits, merged PRs, resolved issues, contributors, optional files/insertions/deletions)
3. High-impact changes by domain (core loop, platform/gateway, UX, tooling, security, reliability)
4. Contributor list (with standout contributions if known)
5. Known risks / migrations / rollout notes (if any)
If metrics cannot be reliably computed, omit unknown numbers instead of guessing.
## Computing Inputs (Hard Rules — Verify, Never Guess)
> Hallucinated PR numbers and wrong "Since v..." bases are the #1 failure mode of this skill. Every number and every `(#XXXX)` must come from `git`, never from memory or inference.
### 1. Compare base = latest semver tag on `main`
Do **not** eyeball the tag list or pick the "last weekly" PR. Compute it:
```bash
git fetch origin main canary --tags
PREV_TAG=$(git describe --tags --abbrev=0 origin/main --match 'v*.*.*' --exclude '*-canary*' --exclude '*-nightly*')
echo "$PREV_TAG"
```
Sanity check that the tag is reachable from the release branch:
```bash
git merge-base --is-ancestor "$PREV_TAG" origin/release/weekly-{YYYYMMDD} && echo OK
```
If the check fails, stop and ask the user — the release branch is based on the wrong source.
> **Why not "the last weekly release PR"?** Hotfixes (`v2.1.54`, `v2.1.55`, …) merge directly into main between weeklies. They get back-merged via `sync-main-to-canary`, so the latest semver tag on main _is_ the correct previous release for both weekly and minor flows. Picking the previous weekly's tag will silently undercount and put a stale version in "Since v…".
### 2. PR refs must come from commit subjects — never from descriptions
Compute the canonical set:
```bash
git log "$PREV_TAG..origin/release/weekly-{YYYYMMDD}" \
--pretty=format:'%s' --no-merges \
| grep -oE '\(#[0-9]+\)$' \
| sort -u > /tmp/release_prs.txt
```
Hard rules:
- Every `(#XXXX)` you write in the body **must** appear in `/tmp/release_prs.txt`. No exceptions.
- Never infer a PR number from a feature description. If you remember "the KB BM25 PR was around #14501", that memory is wrong about half the time. Look up the commit hash by feature keyword and read its actual subject.
- If your terminal truncates long subjects (any wrapper that compresses output, e.g. `rtk`), bypass it. With `rtk` use `rtk proxy git log …`. Verify with `wc -l /tmp/release_prs.txt` — the count must match `git log $PREV_TAG..HEAD --no-merges --pretty=format:'%h' | wc -l` minus the few commits without a PR ref. A mismatch of >5% means subjects are being silently truncated.
### 3. Metrics must come from git counts
```bash
PR_COUNT=$(wc -l < /tmp/release_prs.txt | tr -d ' ')
COMMIT_COUNT=$(git log "$PREV_TAG..origin/release/weekly-{YYYYMMDD}" --no-merges --pretty=format:'%h' | wc -l | tr -d ' ')
CONTRIBUTOR_COUNT=$(git log "$PREV_TAG..origin/release/weekly-{YYYYMMDD}" --no-merges --pretty=format:'%an' \
| sort -u \
| grep -viE '^(lobehubbot|LobeHub Bot|renovate\[bot\])$' \
| wc -l | tr -d ' ')
```
If a number cannot be confidently derived, omit it — never guess.
### 4. Author-to-handle resolution
Git `%an` is the commit author display name, not the GitHub handle. For each author you mention, confirm the handle:
```bash
gh pr view "$PR_NUMBER" --repo lobehub/lobe-chat --json author --jq '.author.login'
```
Use the result for `@handle`. Then classify each author per the `LobeHub team roster` below; community first, team after.
### 5. Pre-publish verification (mandatory)
Before `gh pr create` / `gh pr edit --body-file`, diff body PR refs against the canonical set:
```bash
grep -oE '#[0-9]+' release_body.md | sort -u > /tmp/body_prs.txt
sed 's/[()]//g' /tmp/release_prs.txt > /tmp/release_prs_clean.txt
echo "=== In body but NOT in actual range (must be EMPTY) ==="
comm -23 /tmp/body_prs.txt /tmp/release_prs_clean.txt
```
Empty diff = OK. Any output = the body cites a PR that wasn't merged in this range. Stop and fix before publishing.
Also verify the metrics line in the body matches the computed values (`PR_COUNT`, `CONTRIBUTOR_COUNT`) and that `**Full Changelog**` uses `$PREV_TAG`, not some older tag.
## Canonical Structure (Long-Form: Minor / Weekly)
Follow this section order for **Minor** and **Weekly** releases unless the user asks otherwise. For **Hotfix** and **DB Migration**, see § Variants for Shorter Releases below — the canonical structure does not apply.
1. `# 🚀 LobeHub Release (<YYYYMMDD>)`
2. Metadata lines:
- `Release Date`
- `Since <Previous Version>` metrics
3. One quoted release thesis (single paragraph, 1-2 lines)
4. `## ✨ Highlights` (6-12 bullets for major releases; 3-8 for weekly)
5. Domain blocks with optional `###` subsections:
- `## 🏗️ Core Agent & Architecture` (or equivalent product core)
- `## 📱 Platforms / Integrations`
- `## 🖥️ CLI & User Experience`
- `## 🔧 Tooling`
- `## 🔒 Security & Reliability`
- `## 📚 Documentation` (optional if meaningful)
6. `## 👥 Contributors`
7. `**Full Changelog**: <prev>...<current>`
Use `---` separators between major blocks for long releases.
## Variants for Shorter Releases
The Canonical Structure above is for **long-form** (Minor / Weekly). Two short-form variants override it.
### Hotfix Variant
A hotfix targets one regression and ships fast. The body is short and operator-focused — no Highlights, no domain blocks, no Contributors line.
Required sections, in order:
1. `# 🚀 LobeHub Release (<YYYYMMDD>)`
2. `**Hotfix Scope:**` — one line summarizing the regression scope (e.g. `Agent topic-switching regression — stale chat state on agent change`). Replaces the long-form `Release Date` / `Since vX.Y.Z` metrics.
3. One quoted thesis (single paragraph, 1-2 lines) describing what is now restored.
4. `## 🐛 What's Fixed` — 1-3 bullets, each `**<symptom>** — <fix in one sentence>. (#PR)`. No root-cause prose; that lives in the commit message.
5. `## ⚙️ Upgrade` — short notes for self-hosted (pull image / restart, schema or env changes) and cloud (usually "applied automatically").
6. `## 👥 Owner` — single `@handle` for the PR author, resolved via `gh pr view "$PR" --json author --jq '.author.login'`. Never hardcoded.
Hard rules specific to hotfix:
- **No Highlights / domain blocks / Contributors / Full Changelog** — these add noise to a one-shot fix.
- **No metric line** — `Since vX.Y.Z` doesn't apply; the body cites the single PR (or 1-3 PRs) directly.
- **Owner ≠ Contributors** — one author, listed under § Owner. Not a flat handle list.
- See `changelog-example/hotfix.md` for the canonical template.
### DB Migration Variant
Database schema changes that need to be released independently. Operator impact is the headline.
Required sections, in order:
1. `# 🚀 LobeHub Release (<YYYYMMDD>)` + scope line
2. **Migration overview** — what tables / columns are added, modified, or removed
3. **Operator impact** — backwards-compatible? required actions for self-hosted?
4. **Rollback / backup note** — how to recover
5. `## 👥 Owner` — single PR author, resolved via `gh pr view`
See `changelog-example/db-migration.md` for the canonical template.
## Writing Rules (Hard)
1. **No fabricated metrics**: all numbers must be traceable.
2. **No vague headline bullets**: each bullet must include capability + impact.
3. **No internal-only framing**: phrase from user/operator perspective.
4. **Security must be explicit** when security-sensitive fixes are present.
5. **PR/issue linkage**: use `(#1234)` when IDs are available.
6. **Terminology consistency**: same feature/provider name across sections.
7. **Do not bury migration or breaking changes**: elevate to dedicated section or callout.
## Style Rules (Long-Form)
1. Start with an "everyday use" framing, not implementation internals.
2. Mix narrative sentence + evidence bullets.
3. Keep bullets compact but informative:
- Good: `**Fast Mode (`/fast`)** — Priority routing for OpenAI and Anthropic, reducing latency on supported models. (#6875, #6960)`
4. Use bold only for capability names, not for whole sentences.
5. Keep heading depth ≤ 3 levels.
## Release Size Heuristics
- **Minor / major milestone release**
- Long-form structure with multiple domain blocks.
- `Highlights` usually 8-12 bullets.
- **Weekly patch release**
- Long-form skeleton with reduced subsection count.
- `Highlights` usually 4-8 bullets.
- **Hotfix release**
- Short-form (see § Variants → Hotfix). No Highlights, no domain blocks, no Contributors.
- 1-3 fix bullets. Body should fit on one screen.
- **DB migration release**
- Short-form (see § Variants → DB Migration).
- Must include `Migration overview`, operator impact, and rollback/backup note.
## Contributor Ordering
Render contributors as a **single flat list** (no separate "Community" / "Core Team" subsections). Order: **community contributors first, team members after**. Within each group, sort by PR count desc. Bots (`@lobehubbot`, `renovate[bot]`) go on a separate "maintenance" line.
**LobeHub team roster** — anyone in this list is a team member; anyone not in this list is a community contributor:
- @arvinxx
- @Innei
- @tjx666 (commit author name: YuTengjing)
- @LiJian
- @Neko
- @Rdmclin2
- @AmAzing129
- @sudongyuer (commit author name: Tsuki)
- @rivertwilight (commit author name: René Wang)
- @CanisMinor
- @cy948 (commit author name: Rylan Cai)
> **Resolving handles** — git author names (e.g. `YuTengjing`) are not always the GitHub handle. Verify via `gh pr view "$PR" --json author` or `gh api search/users -f q='<email>'` before listing.
If a new contributor appears who is not on this list, treat them as community by default and ask the user whether to add them to the roster.
## Template
```md
# 🚀 LobeHub Release (<YYYYMMDD>)
**Release Date:** <Month DD, YYYY>
**Since <Previous Version>:** <N merged PRs> · <N resolved issues> · <N contributors>
> <One release thesis sentence: what this release unlocks in practice.>
---
## ✨ Highlights
- **<Capability A>** — <What changed and why it matters>. (#1234)
- **<Capability B>** — <What changed and why it matters>. (#2345)
- **<Capability C>** — <What changed and why it matters>. (#3456)
---
## 🏗️ Core Product & Architecture
### <Subdomain>
- <Concrete change + impact>. (#...)
- <Concrete change + impact>. (#...)
---
## 📱 Platforms / Integrations
- <Platform update + impact>. (#...)
- <Compatibility/reliability fix + impact>. (#...)
---
## 🖥️ CLI & User Experience
- <User-facing workflow improvement>. (#...)
- <Quality-of-life fix>. (#...)
---
## 🔧 Tooling
- <Tool/runtime improvement>. (#...)
---
## 🔒 Security & Reliability
- **Security:** <hardening or vulnerability fix>. (#...)
- **Reliability:** <stability/performance behavior improvement>. (#...)
---
## 👥 Contributors
Huge thanks to **<N contributors>** who shipped **<N merged PRs>** this cycle.
@<community-handle> · @<community-handle> · @<team-handle> · @<team-handle>
Plus @lobehubbot and renovate[bot] for maintenance.
---
**Full Changelog**: <previous_tag>...<current_tag>
```
## Quick Checklist
### Long-Form (Minor / Weekly)
- [ ] `PREV_TAG` is `git describe --tags --abbrev=0 origin/main` (latest semver), not the last weekly's tag
- [ ] Every `(#XXXX)` in the body appears in `/tmp/release_prs.txt` (verified via `comm -23`)
- [ ] `Since v…` line uses `$PREV_TAG`; PR / contributor counts match `wc -l` on the computed sets
- [ ] `**Full Changelog**` uses `$PREV_TAG...release/weekly-<YYYYMMDD>` (or `…v{x.y.z}` for minor)
- [ ] Author handles resolved via `gh pr view --json author`, not assumed from `%an`
- [ ] Uses top metadata and a clear release thesis
- [ ] Includes `Highlights` plus domain-grouped sections
- [ ] Every major bullet states both change and user/operator impact
- [ ] Security and reliability updates are explicitly surfaced (when present)
- [ ] Contributor credits and compare range are included
- [ ] All numbers and claims are verifiable
### Hotfix
- [ ] `**Hotfix Scope:**` line replaces metrics line
- [ ] Single quoted thesis describes what is restored (operator-facing, not internal)
- [ ] `## 🐛 What's Fixed` has 1-3 bullets, each `**<symptom>** — <fix>. (#PR)` with PR ref verified to exist and be merged
- [ ] `## ⚙️ Upgrade` notes self-hosted action and cloud auto-apply
- [ ] `## 👥 Owner` is a single `@handle` resolved via `gh pr view "$PR" --json author`
- [ ] No Highlights / domain blocks / Contributors / Full Changelog included
-17
View File
@@ -83,23 +83,6 @@ describe('model command', () => {
expect(consoleSpy).toHaveBeenCalledWith(JSON.stringify(models, null, 2));
});
it('should filter hidden runtime-only models from JSON output', async () => {
const visibleModels = [{ displayName: 'DeepSeek V4 Pro', id: 'deepseek-v4-pro' }];
mockTrpcClient.aiModel.getAiProviderModelList.query.mockResolvedValue([
...visibleModels,
{
displayName: 'LobeHub Onboarding',
id: 'lobehub-onboarding-v1',
visible: false,
},
]);
const program = createProgram();
await program.parseAsync(['node', 'test', 'model', 'list', 'lobehub', '--json']);
expect(consoleSpy).toHaveBeenCalledWith(JSON.stringify(visibleModels, null, 2));
});
});
describe('view', () => {
+1 -5
View File
@@ -5,8 +5,6 @@ import { getTrpcClient } from '../api/client';
import { confirm, outputJson, printTable, truncate } from '../utils/format';
import { log } from '../utils/logger';
const isVisibleModel = (model: { visible?: boolean }) => model.visible !== false;
export function registerModelCommand(program: Command) {
const model = program.command('model').description('Manage AI models');
@@ -35,9 +33,7 @@ export function registerModelCommand(program: Command) {
if (options.type) input.type = options.type;
const result = await client.aiModel.getAiProviderModelList.query(input as any);
let items = (Array.isArray(result) ? result : ((result as any).items ?? [])).filter(
isVisibleModel,
);
let items = Array.isArray(result) ? result : ((result as any).items ?? []);
if (options.type) {
items = items.filter((m: any) => m.type === options.type);
@@ -3,8 +3,7 @@ export const BRANDING_NAME = 'LobeHub';
export const DEFAULT_EMBEDDING_PROVIDER = 'openai';
export const DEFAULT_MINI_MODEL = 'gpt-5.4-mini';
export const DEFAULT_MINI_PROVIDER = 'openai';
export const DEFAULT_MODEL = 'deepseek-v4-pro';
export const DEFAULT_MODEL = 'claude-sonnet-4-6';
export const DEFAULT_ONBOARDING_MODEL = 'gemini-3-flash-preview';
export const DEFAULT_ONBOARDING_PROVIDER = 'google';
export const DEFAULT_PROVIDER = 'deepseek';
export const DEFAULT_PROVIDER = 'openai';
export const ORG_NAME = 'LobeHub';
+1 -1
View File
@@ -35,7 +35,7 @@
"authModal.title": "انتهت الجلسة",
"betterAuth.captcha.continue": "استمر",
"betterAuth.captcha.description": "أكمل التحقق الأمني أدناه. سنواصل عملية التسجيل أو تسجيل الدخول تلقائيًا.",
"betterAuth.captcha.pendingDescription": "لم يكتمل التحقق. يرجى محاولة التحدي مرة أخرى.",
"betterAuth.captcha.pendingDescription": "يرجى إكمال التحقق أولاً، ثم المتابعة.",
"betterAuth.captcha.title": "مطلوب التحقق الأمني",
"betterAuth.errors.confirmPasswordRequired": "يرجى تأكيد كلمة المرور",
"betterAuth.errors.emailExists": "هذا البريد الإلكتروني مسجل بالفعل. يرجى تسجيل الدخول بدلاً من ذلك",
-1
View File
@@ -27,7 +27,6 @@
"codes.RATE_LIMIT_EXCEEDED": "عدد كبير جداً من الطلبات، يرجى المحاولة لاحقاً",
"codes.SESSION_EXPIRED": "انتهت صلاحية الجلسة، يرجى تسجيل الدخول مرة أخرى",
"codes.SOCIAL_ACCOUNT_ALREADY_LINKED": "هذا الحساب الاجتماعي مرتبط بالفعل بمستخدم آخر",
"codes.TEMPORARY_EMAIL_NOT_ALLOWED": "عناوين البريد الإلكتروني المؤقتة غير مدعومة. يرجى استخدام عنوان بريد إلكتروني عادي. قد تؤدي المحاولات المتكررة إلى حظر هذه الشبكة.",
"codes.UNEXPECTED_ERROR": "حدث خطأ غير متوقع، يرجى المحاولة مرة أخرى",
"codes.UNKNOWN": "حدث خطأ غير معروف، يرجى المحاولة مرة أخرى أو التواصل مع الدعم",
"codes.USER_ALREADY_EXISTS": "المستخدم موجود بالفعل",
+4 -15
View File
@@ -673,14 +673,14 @@
"tokenTag.used": "المستخدم",
"tool.intervention.approvalMode": "وضع الموافقة",
"tool.intervention.approve": "موافقة",
"tool.intervention.approveAndRemember": "موافقة وتذكر",
"tool.intervention.approveOnce": "الموافقة هذه المرة فقط",
"tool.intervention.mode.allowList": "قائمة السماح",
"tool.intervention.mode.allowListDesc": "تنفيذ الأدوات المعتمدة فقط تلقائيًا",
"tool.intervention.mode.autoRun": "موافقة تلقائية",
"tool.intervention.mode.autoRunDesc": "الموافقة تلقائيًا على جميع تنفيذات الأدوات",
"tool.intervention.mode.manual": "يدوي",
"tool.intervention.mode.manualDesc": "يتطلب الموافقة اليدوية لكل استدعاء",
"tool.intervention.onboarding.agentIdentity.editHint": "يمكنك تعديل الاسم أو الصورة الرمزية مباشرة أدناه.",
"tool.intervention.onboarding.agentIdentity.namePlaceholder": "اسم الوكيل",
"tool.intervention.onboarding.agentIdentity.title": "تأكيد تحديث هوية الوكيل",
"tool.intervention.onboarding.agentIdentity.titleAvatarOnly": "سأقوم بتحديث صورتي الرمزية",
"tool.intervention.onboarding.agentIdentity.titleNameOnly": "سأقوم بتحديث اسمي",
@@ -690,15 +690,14 @@
"tool.intervention.onboarding.userProfile.fullName": "الاسم الكامل",
"tool.intervention.onboarding.userProfile.responseLanguage": "لغة الرد",
"tool.intervention.onboarding.userProfile.title": "تأكيد تحديث ملفك الشخصي",
"tool.intervention.optionApprove": "الموافقة",
"tool.intervention.pending": "قيد الانتظار",
"tool.intervention.reject": "رفض",
"tool.intervention.rejectAndContinue": "رفض وإعادة المحاولة",
"tool.intervention.rejectOnly": "رفض",
"tool.intervention.rejectReasonPlaceholder": "سيساعد السبب الوكيل على فهم حدودك وتحسين التصرفات المستقبلية",
"tool.intervention.rejectTitle": "رفض استدعاء المهارة",
"tool.intervention.rejectedWithReason": "تم رفض استدعاء المهارة: {{reason}}",
"tool.intervention.rememberSimilar": "لا تسأل مرة أخرى عن إجراءات مشابهة",
"tool.intervention.scrollToIntervention": "عرض",
"tool.intervention.submit": "إرسال",
"tool.intervention.toolAbort": "لقد ألغيت استدعاء المهارة",
"tool.intervention.toolRejected": "تم رفض استدعاء المهارة",
"tool.intervention.viewParameters": "عرض المعلمات ({{count}})",
@@ -810,9 +809,7 @@
"workflow.toolDisplayName.searchLocalFiles": "الملفات التي تم البحث عنها",
"workflow.toolDisplayName.searchSkill": "المهارات التي تم البحث عنها",
"workflow.toolDisplayName.searchUserMemory": "تم البحث في الذاكرة",
"workflow.toolDisplayName.showAgentMarketplace": "فريق الوكلاء المجمع",
"workflow.toolDisplayName.solve": "حلّ المعادلة",
"workflow.toolDisplayName.submitAgentPick": "الوكلاء المختارون",
"workflow.toolDisplayName.updateAgent": "تم تحديث وكيل",
"workflow.toolDisplayName.updateDocument": "تم تحديث مستند",
"workflow.toolDisplayName.updateIdentityMemory": "تم تحديث الذاكرة",
@@ -851,14 +848,6 @@
"workingPanel.resources.renameEmpty": "Title cannot be empty",
"workingPanel.resources.renameError": "Failed to rename document",
"workingPanel.resources.renameSuccess": "Document renamed",
"workingPanel.resources.tree.createError": "فشل في الإنشاء",
"workingPanel.resources.tree.moveError": "فشل في النقل",
"workingPanel.resources.tree.newDocument": "مستند جديد",
"workingPanel.resources.tree.newFolder": "مجلد جديد",
"workingPanel.resources.tree.parentMissing": "المجلد الرئيسي غير متوفر",
"workingPanel.resources.tree.rename": "إعادة تسمية",
"workingPanel.resources.tree.untitledDocument": "مستند بدون عنوان",
"workingPanel.resources.tree.untitledFolder": "مجلد بدون عنوان",
"workingPanel.resources.updatedAt": "تم التحديث في {{time}}",
"workingPanel.resources.viewMode.list": "عرض القائمة",
"workingPanel.resources.viewMode.tree": "عرض الشجرة",
-1
View File
@@ -114,7 +114,6 @@
"response.ProviderBizError": "حدث خطأ أثناء طلب خدمة {{provider}}، يرجى التحقق أو إعادة المحاولة.",
"response.ProviderContentModeration": "فشل التحقق من سياسة المحتوى. عدّل طلبك وحاول مرة أخرى.",
"response.ProviderContentModerationWarning": "تم رصد انتهاكات متكررة لسياسة الاستخدام. قد يؤدي أي سوء استخدام إضافي إلى تقييد حسابك.",
"response.ProviderImageContentModerationWarning": "تم اكتشاف رفضات متكررة لسلامة الصور. قد تؤدي الطلبات المشابهة إلى إيقاف مؤقت لتوليد الصور.",
"response.QuotaLimitReached": "عذرًا، تم الوصول إلى الحد الأقصى لاستخدام الرموز أو عدد الطلبات لهذا المفتاح. يرجى زيادة الحصة أو المحاولة لاحقًا.",
"response.QuotaLimitReachedCloud": "خدمة النموذج تحت ضغط كبير حاليًا. يرجى المحاولة مرة أخرى لاحقًا.",
"response.ServerAgentRuntimeError": "عذرًا، خدمة الوكيل غير متوفرة حاليًا. يرجى المحاولة لاحقًا أو التواصل معنا عبر البريد الإلكتروني.",
-4
View File
@@ -84,9 +84,6 @@
"verify.confirm.fields.platformAccount": "حساب {{platform}}",
"verify.confirm.fields.workspace": "مساحة العمل",
"verify.confirm.noAgents": "ليس لديك أي وكلاء بعد. قم بإنشاء واحد في LobeHub، ثم عد لإكمال الربط.",
"verify.confirm.relink.description": "تم ربط حساب LobeHub هذا بالفعل بحساب Telegram {{account}}. لربط حساب Telegram مختلف، قم بفصل الحساب الحالي أولاً في الإعدادات → المراسلة.",
"verify.confirm.relink.manage": "افتح إعدادات المراسلة",
"verify.confirm.relink.title": "تم ربط حساب Telegram آخر بالفعل",
"verify.confirm.title": "تأكيد الربط",
"verify.confirm.workspace": "مساحة العمل: {{workspace}}",
"verify.error.alreadyLinkedToOther": "هذا الحساب مرتبط بالفعل بحساب LobeHub مختلف. قم بتسجيل الدخول إلى هذا الحساب أولاً.",
@@ -94,7 +91,6 @@
"verify.error.generic": "حدث خطأ ما. يرجى المحاولة مرة أخرى.",
"verify.error.missingToken": "رابط غير صالح. افتح هذه الصفحة من البوت.",
"verify.error.title": "تعذر تأكيد الرابط",
"verify.error.unlinkBeforeRelink": "تم ربط حساب LobeHub هذا بالفعل بحساب Telegram آخر. قم بفصله في الإعدادات → المراسلة قبل ربط حساب جديد.",
"verify.labRequired.description": "المراسلة حاليًا ميزة تجريبية. قم بتمكينها في الإعدادات → متقدم → الميزات التجريبية وأعد تحميل هذه الصفحة.",
"verify.labRequired.openSettings": "افتح إعدادات الميزات التجريبية",
"verify.labRequired.title": "قم بتمكين المراسلة للمتابعة",
+12 -20
View File
@@ -106,7 +106,6 @@
"MiniMax-Hailuo-2.3.description": "نموذج جديد لإنشاء الفيديو مع تحسينات شاملة في حركة الجسم، والواقعية الفيزيائية، واتباع التعليمات.",
"MiniMax-M1.description": "نموذج استدلال داخلي جديد بسلسلة تفكير تصل إلى 80K ومدخلات حتى 1M، يقدم أداءً مماثلاً لأفضل النماذج العالمية.",
"MiniMax-M2-Stable.description": "مصمم لتدفقات العمل البرمجية والوكلاء بكفاءة عالية، مع قدرة تزامن أعلى للاستخدام التجاري.",
"MiniMax-M2.1-Lightning.description": "قدرات برمجة متعددة اللغات قوية مع استنتاج أسرع وأكثر كفاءة.",
"MiniMax-M2.1-highspeed.description": "قدرات برمجة متعددة اللغات قوية، تجربة برمجة مطورة بشكل شامل. أسرع وأكثر كفاءة.",
"MiniMax-M2.1.description": "MiniMax-M2.1 هو نموذج مفتوح المصدر رائد من MiniMax، يركز على حل المهام الواقعية المعقدة. يتميز بقدرات برمجة متعددة اللغات والقدرة على أداء المهام المعقدة كوكلاء ذكي.",
"MiniMax-M2.5-highspeed.description": "MiniMax M2.5 Highspeed: نفس أداء M2.5 مع استدلال أسرع.",
@@ -320,13 +319,13 @@
"claude-3-haiku-20240307.description": "Claude 3 Haiku هو أسرع وأصغر نموذج من Anthropic، مصمم لتقديم استجابات شبه فورية بأداء سريع ودقيق.",
"claude-3-opus-20240229.description": "Claude 3 Opus هو أقوى نموذج من Anthropic للمهام المعقدة، يتميز بالأداء العالي، الذكاء، الطلاقة، والفهم.",
"claude-3-sonnet-20240229.description": "Claude 3 Sonnet يوازن بين الذكاء والسرعة لتلبية احتياجات المؤسسات، ويوفر فائدة عالية بتكلفة أقل ونشر موثوق على نطاق واسع.",
"claude-haiku-4-5-20251001.description": "Claude Haiku 4.5 هو أسرع وأذكى نموذج هايكو من Anthropic، يتميز بسرعة البرق وتفكير ممتد.",
"claude-haiku-4-5-20251001.description": "Claude Haiku 4.5 هو نموذج Haiku الأسرع والأذكى من Anthropic، يتميز بسرعة البرق وقدرات استدلال موسعة.",
"claude-haiku-4-5.description": "Claude Haiku 4.5 من Anthropic — نموذج Haiku من الجيل التالي مع تحسينات في التفكير والرؤية.",
"claude-haiku-4.5.description": "Claude Haiku 4.5 هو نموذج Haiku الأسرع والأذكى من Anthropic، يتميز بسرعة البرق وقدرات استدلال موسعة.",
"claude-opus-4-1-20250805-thinking.description": "Claude Opus 4.1 Thinking هو إصدار متقدم يمكنه عرض عملية تفكيره.",
"claude-opus-4-1-20250805.description": "Claude Opus 4.1 هو أحدث وأقوى نموذج من Anthropic للمهام المعقدة للغاية، يتميز بالأداء والذكاء والطلاقة والفهم.",
"claude-opus-4-1-20250805.description": "Claude Opus 4.1 هو أحدث وأقوى نموذج من Anthropic للمهام المعقدة للغاية، يتميز بالأداء العالي، الذكاء، الطلاقة، والفهم.",
"claude-opus-4-1.description": "Claude Opus 4.1 من Anthropic — نموذج تفكير متميز مع قدرات تحليل عميقة.",
"claude-opus-4-20250514.description": "Claude Opus 4 هو أقوى نموذج من Anthropic للمهام المعقدة للغاية، يتميز بالأداء والذكاء والطلاقة والفهم.",
"claude-opus-4-20250514.description": "Claude Opus 4 هو النموذج الأكثر قوة من Anthropic للمهام المعقدة للغاية، يتميز بالأداء العالي، الذكاء، الطلاقة، والاستيعاب.",
"claude-opus-4-5-20251101.description": "Claude Opus 4.5 هو النموذج الرائد من Anthropic، يجمع بين الذكاء الاستثنائي والأداء القابل للتوسع، مثالي للمهام المعقدة التي تتطلب استجابات عالية الجودة وتفكير متقدم.",
"claude-opus-4-5.description": "Claude Opus 4.5 من Anthropic — نموذج رئيسي مع تفكير وبرمجة من الدرجة الأولى.",
"claude-opus-4-6.description": "Claude Opus 4.6 من Anthropic — نافذة سياق 1M نموذج رئيسي مع تفكير متقدم.",
@@ -335,7 +334,7 @@
"claude-opus-4.6-fast.description": "Claude Opus 4.6 هو النموذج الأكثر ذكاءً من Anthropic لبناء الوكلاء والبرمجة.",
"claude-opus-4.6.description": "Claude Opus 4.6 هو النموذج الأكثر ذكاءً من Anthropic لبناء الوكلاء والبرمجة.",
"claude-sonnet-4-20250514-thinking.description": "Claude Sonnet 4 Thinking يمكنه تقديم استجابات شبه فورية أو تفكير متسلسل مرئي.",
"claude-sonnet-4-20250514.description": "Claude Sonnet 4 هو النموذج الأكثر ذكاءً من Anthropic حتى الآن، يقدم استجابات شبه فورية أو تفكير خطوة بخطوة ممتد مع تحكم دقيق لمستخدمي API.",
"claude-sonnet-4-20250514.description": "Claude Sonnet 4 يمكنه إنتاج استجابات شبه فورية أو تفكير ممتد خطوة بخطوة مع عرض العملية.",
"claude-sonnet-4-5-20250929.description": "Claude Sonnet 4.5 هو النموذج الأكثر ذكاءً من Anthropic حتى الآن.",
"claude-sonnet-4-5.description": "Claude Sonnet 4.5 من Anthropic — نموذج Sonnet محسّن مع أداء برمجي معزز.",
"claude-sonnet-4-6.description": "Claude Sonnet 4.6 من Anthropic — أحدث نموذج Sonnet مع برمجة واستخدام أدوات متفوقة.",
@@ -409,7 +408,7 @@
"deepseek-ai/deepseek-llm-67b-chat.description": "DeepSeek LLM Chat (67B) هو نموذج مبتكر يوفر فهمًا عميقًا للغة وتفاعلًا ذكيًا.",
"deepseek-ai/deepseek-v3.1-terminus.description": "DeepSeek V3.1 هو نموذج تفكير من الجيل التالي يتمتع بقدرات أقوى في التفكير المعقد وسلسلة التفكير لمهام التحليل العميق.",
"deepseek-ai/deepseek-v3.2.description": "DeepSeek V3.2 هو نموذج استدلال من الجيل التالي يتميز بقدرات استدلال معقدة وسلسلة التفكير.",
"deepseek-chat.description": "اسم مستعار متوافق لوضع عدم التفكير في DeepSeek V4 Flash. مقرر إيقافه — استخدم DeepSeek V4 Flash بدلاً منه.",
"deepseek-chat.description": "نموذج مفتوح المصدر جديد يجمع بين القدرات العامة والبرمجية. يحافظ على حوار النموذج العام وقوة البرمجة للنموذج البرمجي، مع تحسين توافق التفضيلات. DeepSeek-V2.5 يحسن أيضًا الكتابة واتباع التعليمات.",
"deepseek-coder-33B-instruct.description": "DeepSeek Coder 33B هو نموذج لغة برمجية تم تدريبه على 2 تريليون رمز (87٪ كود، 13٪ نص صيني/إنجليزي). يقدم نافذة سياق 16K ومهام الإكمال في المنتصف، ويوفر إكمال كود على مستوى المشاريع وملء مقاطع الكود.",
"deepseek-coder-v2.description": "DeepSeek Coder V2 هو نموذج كود MoE مفتوح المصدر يتميز بأداء قوي في مهام البرمجة، ويضاهي GPT-4 Turbo.",
"deepseek-coder-v2:236b.description": "DeepSeek Coder V2 هو نموذج كود MoE مفتوح المصدر يتميز بأداء قوي في مهام البرمجة، ويضاهي GPT-4 Turbo.",
@@ -431,7 +430,7 @@
"deepseek-r1-fast-online.description": "الإصدار الكامل السريع من DeepSeek R1 مع بحث ويب في الوقت الحقيقي، يجمع بين قدرات بحجم 671B واستجابة أسرع.",
"deepseek-r1-online.description": "الإصدار الكامل من DeepSeek R1 مع 671 مليار معلمة وبحث ويب في الوقت الحقيقي، يوفر فهمًا وتوليدًا أقوى.",
"deepseek-r1.description": "يستخدم DeepSeek-R1 بيانات البداية الباردة قبل التعلم المعزز ويؤدي أداءً مماثلًا لـ OpenAI-o1 في الرياضيات، والبرمجة، والتفكير.",
"deepseek-reasoner.description": "اسم مستعار متوافق لوضع التفكير في DeepSeek V4 Flash. مقرر إيقافه — استخدم DeepSeek V4 Flash بدلاً منه.",
"deepseek-reasoner.description": "اسم متوافق لوضع التفكير السريع DeepSeek V4. من المقرر إيقافه — يُرجى استخدام deepseek-v4-flash بدلاً منه.",
"deepseek-v2.description": "DeepSeek V2 هو نموذج MoE فعال لمعالجة منخفضة التكلفة.",
"deepseek-v2:236b.description": "DeepSeek V2 236B هو نموذج DeepSeek الموجه للبرمجة مع قدرات قوية في توليد الكود.",
"deepseek-v3-0324.description": "DeepSeek-V3-0324 هو نموذج MoE يحتوي على 671 مليار معلمة يتميز بقوة في البرمجة، والقدرات التقنية، وفهم السياق، والتعامل مع النصوص الطويلة.",
@@ -496,8 +495,6 @@
"doubao-seedream-4-0-250828.description": "Seedream 4.0 هو نموذج توليد صور من ByteDance Seed، يدعم إدخال النصوص والصور مع توليد صور عالية الجودة وقابلة للتحكم بدرجة كبيرة. يُولّد الصور من التعليمات النصية.",
"doubao-seedream-4-5-251128.description": "Seedream 4.5 هو أحدث نموذج متعدد الوسائط من ByteDance، يدمج قدرات تحويل النص إلى صورة، والصورة إلى صورة، وتوليد الصور بالجملة، مع دمج الفهم العام وقدرات الاستدلال. مقارنة بالإصدار السابق 4.0، يقدم جودة توليد محسّنة بشكل كبير، مع تحسين تناسق التحرير ودمج الصور المتعددة. يوفر تحكمًا أكثر دقة في التفاصيل البصرية، مما يجعل النصوص الصغيرة والوجوه الصغيرة أكثر طبيعية، ويحقق تخطيطًا وألوانًا أكثر انسجامًا، مما يعزز الجماليات العامة.",
"doubao-seedream-5-0-260128.description": "Doubao-Seedream-5.0-lite هو أحدث نموذج لتوليد الصور من ByteDance. لأول مرة، يدمج قدرات الاسترجاع عبر الإنترنت، مما يسمح له بتضمين معلومات الويب في الوقت الفعلي وتعزيز حداثة الصور المولدة. كما تم ترقية ذكاء النموذج، مما يمكنه من تفسير التعليمات المعقدة والمحتوى البصري بدقة. بالإضافة إلى ذلك، يقدم تغطية محسّنة للمعرفة العالمية، وتناسقًا مرجعيًا، وجودة توليد في السيناريوهات المهنية، مما يلبي بشكل أفضل احتياجات الإبداع البصري على مستوى المؤسسات.",
"dreamina-seedance-2-0-260128.description": "Seedance 2.0 من ByteDance هو أقوى نموذج لإنشاء الفيديو، يدعم إنشاء الفيديو متعدد الوسائط، تحرير الفيديو، تمديد الفيديو، تحويل النص إلى فيديو، وتحويل الصورة إلى فيديو مع صوت متزامن.",
"dreamina-seedance-2-0-fast-260128.description": "Seedance 2.0 Fast من ByteDance يقدم نفس القدرات مثل Seedance 2.0 مع سرعات إنشاء أسرع وسعر أكثر تنافسية.",
"emohaa.description": "Emohaa هو نموذج للصحة النفسية يتمتع بقدرات استشارية احترافية لمساعدة المستخدمين على فهم المشكلات العاطفية.",
"ernie-4.5-0.3b.description": "ERNIE 4.5 0.3B هو نموذج مفتوح المصدر وخفيف الوزن، مصمم للنشر المحلي والمخصص.",
"ernie-4.5-8k-preview.description": "ERNIE 4.5 8K Preview هو نموذج معاينة بسياق 8K لتقييم أداء ERNIE 4.5.",
@@ -522,8 +519,7 @@
"ernie-x1-turbo-32k.description": "ERNIE X1 Turbo 32K هو نموذج تفكير سريع بسياق 32K للاستدلال المعقد والدردشة متعددة الأدوار.",
"ernie-x1.1-preview.description": "معاينة ERNIE X1.1 هو نموذج تفكير مخصص للتقييم والاختبار.",
"ernie-x1.1.description": "ERNIE X1.1 هو نموذج تفكير تجريبي للتقييم والاختبار.",
"fal-ai/bytedance/seedream/v4.5.description": "Seedream 4.5، تم تطويره بواسطة فريق ByteDance Seed، يدعم تحرير الصور المتعددة والتكوين. يتميز بتناسق الموضوع المحسن، اتباع التعليمات بدقة، فهم المنطق المكاني، التعبير الجمالي، تصميم الملصقات والشعارات مع إنشاء نصوص وصور عالية الدقة.",
"fal-ai/bytedance/seedream/v4.description": "Seedream 4.0، تم تطويره بواسطة ByteDance Seed، يدعم إدخال النصوص والصور لإنشاء صور عالية الجودة وقابلة للتحكم بناءً على التعليمات.",
"fal-ai/bytedance/seedream/v4.description": "Seedream 4.0 هو نموذج توليد الصور من ByteDance Seed، يدعم المدخلات النصية والصورية مع توليد صور عالي الجودة وقابل للتحكم بدرجة كبيرة. يقوم بتوليد الصور من التعليمات النصية.",
"fal-ai/flux-kontext/dev.description": "نموذج FLUX.1 يركز على تحرير الصور، ويدعم إدخال النصوص والصور.",
"fal-ai/flux-pro/kontext.description": "FLUX.1 Kontext [pro] يقبل النصوص وصور مرجعية كمدخلات، مما يتيح تعديلات محلية مستهدفة وتحولات معقدة في المشهد العام.",
"fal-ai/flux/krea.description": "Flux Krea [dev] هو نموذج لتوليد الصور يتميز بميول جمالية نحو صور أكثر واقعية وطبيعية.",
@@ -531,8 +527,8 @@
"fal-ai/hunyuan-image/v3.description": "نموذج قوي لتوليد الصور متعدد الوسائط أصلي.",
"fal-ai/imagen4/preview.description": "نموذج عالي الجودة لتوليد الصور من Google.",
"fal-ai/nano-banana.description": "Nano Banana هو أحدث وأسرع وأكثر نماذج Google كفاءةً لتوليد وتحرير الصور من خلال المحادثة.",
"fal-ai/qwen-image-edit.description": "نموذج تحرير الصور الاحترافي من فريق Qwen، يدعم التعديلات الدلالية والمظهرية، تحرير النصوص الدقيقة باللغتين الصينية والإنجليزية، نقل الأنماط، التدوير، والمزيد.",
"fal-ai/qwen-image.description": "نموذج قوي لإنشاء الصور من فريق Qwen يتميز بتقديم نصوص صينية قوية وأنماط بصرية متنوعة.",
"fal-ai/qwen-image-edit.description": "نموذج تحرير الصور الاحترافي من فريق Qwen الذي يدعم التعديلات الدلالية والمظهرية، ويحرر النصوص الصينية والإنجليزية بدقة، ويمكّن من تعديلات عالية الجودة مثل نقل الأنماط وتدوير الكائنات.",
"fal-ai/qwen-image.description": "نموذج قوي لتوليد الصور من فريق Qwen يتميز بعرض نصوص صينية مذهلة وأنماط بصرية متنوعة.",
"flux-1-schnell.description": "نموذج تحويل النص إلى صورة يحتوي على 12 مليار معلمة من Black Forest Labs يستخدم تقنيات تقطير الانتشار العدائي الكامن لتوليد صور عالية الجودة في 1-4 خطوات. ينافس البدائل المغلقة ومتاح بموجب ترخيص Apache-2.0 للاستخدام الشخصي والبحثي والتجاري.",
"flux-dev.description": "نموذج مفتوح المصدر مخصص لتوليد الصور لأغراض البحث والابتكار غير التجاري، مع تحسينات فعالة.",
"flux-kontext-max.description": "توليد وتحرير صور سياقية متقدمة، تجمع بين النصوص والصور لتحقيق نتائج دقيقة ومتسقة.",
@@ -571,10 +567,10 @@
"gemini-3-flash-preview.description": "Gemini 3 Flash هو أذكى نموذج تم تصميمه للسرعة، يجمع بين الذكاء المتقدم وأساس بحث ممتاز.",
"gemini-3-flash.description": "Gemini 3 Flash من Google — نموذج فائق السرعة مع دعم الإدخال متعدد الوسائط.",
"gemini-3-pro-image-preview.description": "Gemini 3 Pro Image (Nano Banana Pro) هو نموذج توليد الصور من Google ويدعم المحادثة متعددة الوسائط.",
"gemini-3-pro-image-preview:image.description": "Gemini 3 Pro Image (Nano Banana Pro) هو نموذج إنشاء الصور من Google ويدعم أيضًا الدردشة متعددة الوسائط.",
"gemini-3-pro-image-preview:image.description": "Gemini 3 Pro Image (Nano Banana Pro) هو نموذج توليد الصور من Google ويدعم أيضًا الدردشة متعددة الوسائط.",
"gemini-3-pro-preview.description": "Gemini 3 Pro هو أقوى نموذج من Google للوكيل الذكي والبرمجة الإبداعية، يقدم تفاعلاً أعمق وصورًا أغنى مع استدلال متقدم.",
"gemini-3.1-flash-image-preview.description": "Gemini 3.1 Flash Image (Nano Banana 2) يقدم جودة صور احترافية بسرعة فائقة مع دعم الدردشة متعددة الوسائط.",
"gemini-3.1-flash-image-preview:image.description": "Gemini 3.1 Flash Image (Nano Banana 2) يقدم جودة صور بمستوى احترافي بسرعة Flash مع دعم الدردشة متعددة الوسائط.",
"gemini-3.1-flash-image-preview:image.description": "Gemini 3.1 Flash Image (Nano Banana 2) هو أسرع نموذج توليد صور أصلي من Google مع دعم التفكير، وتوليد الصور الحواري، وتحرير الصور.",
"gemini-3.1-flash-lite-preview.description": "Gemini 3.1 Flash-Lite Preview هو النموذج الأكثر كفاءة من حيث التكلفة من Google، مُحسّن للمهام الوكيلة ذات الحجم الكبير، الترجمة، ومعالجة البيانات.",
"gemini-3.1-pro-preview.description": "Gemini 3.1 Pro Preview يحسن من Gemini 3 Pro مع قدرات استدلال محسّنة ويضيف دعم مستوى التفكير المتوسط.",
"gemini-3.1-pro.description": "Gemini 3.1 Pro من Google — نموذج متعدد الوسائط متميز مع نافذة سياق 1M.",
@@ -740,11 +736,9 @@
"grok-4-fast-reasoning.description": "يسعدنا إطلاق Grok 4 Fast، أحدث تقدم في نماذج الاستدلال منخفضة التكلفة.",
"grok-4.20-0309-non-reasoning.description": "نموذج غير تفكير للاستخدامات البسيطة.",
"grok-4.20-0309-reasoning.description": "نموذج ذكي وسريع للغاية يفكر قبل الرد.",
"grok-4.20-beta-0309-non-reasoning.description": "نسخة غير تفكيرية للاستخدامات البسيطة.",
"grok-4.20-beta-0309-reasoning.description": "نموذج ذكي وسريع للغاية يفكر قبل الرد.",
"grok-4.20-multi-agent-0309.description": "فريق من 4 أو 16 وكيلًا، يتفوق في حالات الاستخدام البحثية، لا يدعم حاليًا الأدوات على جانب العميل. يدعم فقط أدوات xAI على جانب الخادم (مثل X Search، أدوات البحث على الويب) وأدوات MCP البعيدة.",
"grok-4.3.description": "أكثر نموذج لغة كبير يسعى للحقيقة في العالم.",
"grok-4.description": "أحدث وأقوى نموذج رئيسي لدينا، يتميز في معالجة اللغة الطبيعية، الرياضيات، والتفكير—مثالي لجميع الاستخدامات.",
"grok-4.description": "أحدث نموذج Grok الرائد بأداء لا مثيل له في اللغة، الرياضيات، والاستدلال — نموذج شامل حقيقي. يشير حاليًا إلى grok-4-0709؛ نظرًا للموارد المحدودة، فإن سعره مؤقتًا أعلى بنسبة 10% من السعر الرسمي ومن المتوقع أن يعود إلى السعر الرسمي لاحقًا.",
"grok-code-fast-1.description": "يسعدنا إطلاق grok-code-fast-1، نموذج استدلال سريع وفعال من حيث التكلفة يتفوق في البرمجة التلقائية.",
"grok-imagine-image-pro.description": "إنشاء صور من مطالبات نصية، تحرير الصور الموجودة باستخدام اللغة الطبيعية، أو تحسين الصور بشكل تكراري من خلال محادثات متعددة الأدوار.",
"grok-imagine-image.description": "إنشاء صور من مطالبات نصية، تحرير الصور الموجودة باستخدام اللغة الطبيعية، أو تحسين الصور بشكل تكراري من خلال محادثات متعددة الأدوار.",
@@ -1233,8 +1227,6 @@
"qwq.description": "QwQ هو نموذج استدلال من عائلة Qwen. مقارنة بالنماذج المضبوطة على التعليمات، يقدم قدرات تفكير واستدلال تعزز الأداء بشكل كبير، خاصة في المشكلات الصعبة. QwQ-32B هو نموذج متوسط الحجم ينافس أفضل نماذج الاستدلال مثل DeepSeek-R1 و o1-mini.",
"qwq_32b.description": "نموذج استدلال متوسط الحجم من عائلة Qwen. مقارنة بالنماذج المضبوطة على التعليمات، تعزز قدرات التفكير والاستدلال في QwQ الأداء بشكل كبير، خاصة في المشكلات الصعبة.",
"r1-1776.description": "R1-1776 هو إصدار ما بعد التدريب من DeepSeek R1 مصمم لتقديم معلومات واقعية غير خاضعة للرقابة أو التحيز.",
"seedance-1-5-pro-251215.description": "Seedance 1.5 Pro من ByteDance يدعم تحويل النص إلى فيديو، تحويل الصورة إلى فيديو (الإطار الأول، الإطار الأول+الأخير)، وإنشاء الصوت المتزامن مع المرئيات.",
"seedream-5-0-260128.description": "ByteDance-Seedream-5.0-lite من BytePlus يتميز بإنشاء مدعوم باسترجاع الويب للحصول على معلومات في الوقت الحقيقي، تفسير محسّن للتعليمات المعقدة، وتحسين تناسق المرجع لإنشاء مرئيات احترافية.",
"solar-mini-ja.description": "Solar Mini (Ja) يوسع Solar Mini مع تركيز على اللغة اليابانية مع الحفاظ على الأداء القوي والكفاءة في الإنجليزية والكورية.",
"solar-mini.description": "Solar Mini هو نموذج لغة مدمج يتفوق على GPT-3.5، يتميز بقدرات متعددة اللغات قوية تدعم الإنجليزية والكورية، ويقدم حلاً فعالاً بصمة صغيرة.",
"solar-pro.description": "Solar Pro هو نموذج لغة عالي الذكاء من Upstage، يركز على اتباع التعليمات باستخدام وحدة معالجة رسومات واحدة، مع درجات IFEval تتجاوز 80. حالياً يدعم اللغة الإنجليزية؛ وكان من المقرر إصدار النسخة الكاملة في نوفمبر 2024 مع دعم لغات موسع وسياق أطول.",
-2
View File
@@ -29,9 +29,7 @@
"agent.layout.switchMessage": "لست في مزاج لذلك اليوم؟ يمكنك التبديل إلى <modeLink><modeText>{{mode}}</modeText></modeLink> أو <skipLink><skipText>{{skip}}</skipText></skipLink>.",
"agent.modeSwitch.agent": "تفاعلي",
"agent.modeSwitch.classic": "كلاسيكي",
"agent.modeSwitch.collapse": "طي",
"agent.modeSwitch.debug": "تصدير التصحيح",
"agent.modeSwitch.expand": "توسيع",
"agent.modeSwitch.label": "اختر وضع التسجيل",
"agent.modeSwitch.reset": "إعادة ضبط التدفق",
"agent.progress": "{{currentStep}}/{{totalSteps}}",
+1 -10
View File
@@ -256,16 +256,13 @@
"builtins.lobe-skills.apiName.runCommand": "تشغيل الأمر",
"builtins.lobe-skills.apiName.searchSkill": "البحث عن المهارات",
"builtins.lobe-skills.title": "المهارات",
"builtins.lobe-task.apiName.addTaskComment": "إضافة تعليق",
"builtins.lobe-task.apiName.createTask": "إنشاء مهمة",
"builtins.lobe-task.apiName.createTasks": "إنشاء مهام",
"builtins.lobe-task.apiName.deleteTask": "حذف مهمة",
"builtins.lobe-task.apiName.deleteTaskComment": "حذف تعليق",
"builtins.lobe-task.apiName.editTask": "تعديل مهمة",
"builtins.lobe-task.apiName.listTasks": "عرض المهام",
"builtins.lobe-task.apiName.runTask": "تشغيل مهمة",
"builtins.lobe-task.apiName.runTasks": "تشغيل مهام",
"builtins.lobe-task.apiName.updateTaskComment": "تحديث تعليق",
"builtins.lobe-task.apiName.updateTaskStatus": "تحديث الحالة",
"builtins.lobe-task.apiName.viewTask": "عرض المهمة",
"builtins.lobe-task.create.subtaskOf": "مهمة فرعية من {{parent}}",
@@ -276,8 +273,6 @@
"builtins.lobe-task.edit.blocksOn": "يعتمد على",
"builtins.lobe-task.edit.description": "تم تحديث الوصف",
"builtins.lobe-task.edit.instruction": "تم تحديث التعليمات",
"builtins.lobe-task.edit.parent": "الأصل",
"builtins.lobe-task.edit.parentClear": "المستوى الأعلى",
"builtins.lobe-task.edit.priority": "الأولوية",
"builtins.lobe-task.edit.rename": "إعادة تسمية",
"builtins.lobe-task.edit.unassign": "إلغاء التعيين",
@@ -327,11 +322,6 @@
"builtins.lobe-web-onboarding.inspector.interests_one": "{{count}} اهتمام",
"builtins.lobe-web-onboarding.inspector.interests_other": "{{count}} اهتمامات",
"builtins.lobe-web-onboarding.title": "إعداد المستخدم",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.delete": "حذف",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.deleteLines": "حذف الأسطر",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.insertAt": "إدراج عند السطر",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.replace": "استبدال",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.replaceLines": "استبدال الأسطر",
"confirm": "تأكيد",
"debug.arguments": "المعلمات",
"debug.error": "سجل الأخطاء",
@@ -356,6 +346,7 @@
"detailModal.tabs.settings": "الإعدادات",
"detailModal.title": "تفاصيل المهارة",
"dev.confirmDeleteDevPlugin": "سيتم حذف هذه المهارة المحلية نهائيًا. هل ترغب في المتابعة؟",
"dev.customParams.useProxy.label": "التثبيت عبر وكيل (فعّل إذا واجهت أخطاء CORS، ثم أعد المحاولة)",
"dev.deleteSuccess": "تم حذف المهارة",
"dev.manifest.identifier.desc": "معرّف فريد للمهارة",
"dev.manifest.identifier.label": "المعرّف",
-1
View File
@@ -33,7 +33,6 @@
"jina.description": "تأسست Jina AI في عام 2020، وهي شركة رائدة في مجال البحث الذكي. تشمل تقنياتها نماذج المتجهات، ومعيدو الترتيب، ونماذج لغوية صغيرة لبناء تطبيقات بحث توليدية ومتعددة الوسائط عالية الجودة.",
"kimicodingplan.description": "كود Kimi من Moonshot AI يوفر الوصول إلى نماذج Kimi بما في ذلك K2.5 لأداء مهام الترميز.",
"lmstudio.description": "LM Studio هو تطبيق سطح مكتب لتطوير وتجربة النماذج اللغوية الكبيرة على جهازك.",
"lobehub.description": "يستخدم LobeHub Cloud واجهات برمجة التطبيقات الرسمية للوصول إلى نماذج الذكاء الاصطناعي ويقيس الاستخدام باستخدام أرصدة مرتبطة برموز النماذج.",
"longcat.description": "LongCat هو سلسلة من نماذج الذكاء الاصطناعي التوليدية الكبيرة التي تم تطويرها بشكل مستقل بواسطة Meituan. تم تصميمه لتعزيز إنتاجية المؤسسة الداخلية وتمكين التطبيقات المبتكرة من خلال بنية حسابية فعالة وقدرات متعددة الوسائط قوية.",
"minimax.description": "تأسست MiniMax في عام 2021، وتبني نماذج ذكاء اصطناعي متعددة الوسائط للأغراض العامة، بما في ذلك نماذج نصية بمليارات المعلمات، ونماذج صوتية وبصرية، بالإضافة إلى تطبيقات مثل Hailuo AI.",
"minimaxcodingplan.description": "خطة الرموز MiniMax توفر الوصول إلى نماذج MiniMax بما في ذلك M2.7 لأداء مهام الترميز عبر اشتراك ثابت الرسوم.",
-7
View File
@@ -30,16 +30,9 @@
"agentMarketplace.category.personalLife": "الحياة الشخصية",
"agentMarketplace.category.productManagement": "إدارة المنتجات",
"agentMarketplace.category.salesCustomer": "المبيعات وخدمة العملاء",
"agentMarketplace.inspector.moreCategories_one": "+{{count}}",
"agentMarketplace.inspector.moreCategories_other": "+{{count}}",
"agentMarketplace.inspector.pickCount_one": "{{count}} وكيل",
"agentMarketplace.inspector.pickCount_other": "{{count}} وكلاء",
"agentMarketplace.picker.empty": "لا توجد قوالب متاحة.",
"agentMarketplace.picker.failedToLoad": "فشل في تحميل القوالب. يرجى المحاولة مرة أخرى لاحقًا.",
"agentMarketplace.picker.summary": "{{filtered}} / {{total}} قوالب متاحة.",
"agentMarketplace.render.alreadyInLibraryTag": "موجود بالفعل في المكتبة",
"agentMarketplace.render.alreadyInLibrary_one": "{{count}} موجود بالفعل في المكتبة",
"agentMarketplace.render.alreadyInLibrary_other": "{{count}} موجود بالفعل في المكتبة",
"codeInterpreter-legacy.error": "خطأ في التنفيذ",
"codeInterpreter-legacy.executing": "جارٍ التنفيذ...",
"codeInterpreter-legacy.files": "الملفات:",
+1 -1
View File
@@ -35,7 +35,7 @@
"authModal.title": "Сесията е изтекла",
"betterAuth.captcha.continue": "Продължи",
"betterAuth.captcha.description": "Завършете проверката за сигурност по-долу. Ще продължим вашата регистрация или вход автоматично.",
"betterAuth.captcha.pendingDescription": "Проверката не беше завършена. Моля, опитайте предизвикателството отново.",
"betterAuth.captcha.pendingDescription": "Моля, първо завършете проверката, след това продължете.",
"betterAuth.captcha.title": "Изисква се проверка за сигурност",
"betterAuth.errors.confirmPasswordRequired": "Моля, потвърдете паролата си",
"betterAuth.errors.emailExists": "Този имейл вече е регистриран. Моля, влезте в профила си",
-1
View File
@@ -27,7 +27,6 @@
"codes.RATE_LIMIT_EXCEEDED": "Твърде много заявки, моля опитайте отново по-късно",
"codes.SESSION_EXPIRED": "Сесията е изтекла, моля влезте отново",
"codes.SOCIAL_ACCOUNT_ALREADY_LINKED": "Този социален акаунт вече е свързан с друг потребител",
"codes.TEMPORARY_EMAIL_NOT_ALLOWED": "Временните имейл адреси не се поддържат. Моля, използвайте обикновен имейл адрес. Повтарящите се опити могат да блокират тази мрежа.",
"codes.UNEXPECTED_ERROR": "Възникна неочаквана грешка, моля опитайте отново",
"codes.UNKNOWN": "Възникна неизвестна грешка, моля опитайте отново или се свържете с поддръжката",
"codes.USER_ALREADY_EXISTS": "Потребителят вече съществува",
+4 -15
View File
@@ -673,14 +673,14 @@
"tokenTag.used": "Използвани",
"tool.intervention.approvalMode": "Режим на одобрение",
"tool.intervention.approve": "Одобри",
"tool.intervention.approveAndRemember": "Одобри и запомни",
"tool.intervention.approveOnce": "Одобри само този път",
"tool.intervention.mode.allowList": "Списък с позволени",
"tool.intervention.mode.allowListDesc": "Автоматично изпълнение само на одобрени инструменти",
"tool.intervention.mode.autoRun": "Автоматично одобрение",
"tool.intervention.mode.autoRunDesc": "Автоматично одобрявай всички изпълнения на инструменти",
"tool.intervention.mode.manual": "Ръчно",
"tool.intervention.mode.manualDesc": "Изисква ръчно одобрение за всяко извикване",
"tool.intervention.onboarding.agentIdentity.editHint": "Можете да редактирате името или аватара директно по-долу.",
"tool.intervention.onboarding.agentIdentity.namePlaceholder": "Име на агент",
"tool.intervention.onboarding.agentIdentity.title": "Потвърждение за обновяване на идентичността на агента",
"tool.intervention.onboarding.agentIdentity.titleAvatarOnly": "Ще актуализирам аватара си",
"tool.intervention.onboarding.agentIdentity.titleNameOnly": "Ще актуализирам името си",
@@ -690,15 +690,14 @@
"tool.intervention.onboarding.userProfile.fullName": "Пълно име",
"tool.intervention.onboarding.userProfile.responseLanguage": "Език на отговора",
"tool.intervention.onboarding.userProfile.title": "Потвърдете актуализацията на профила си",
"tool.intervention.optionApprove": "Одобри",
"tool.intervention.pending": "В очакване",
"tool.intervention.reject": "Отхвърли",
"tool.intervention.rejectAndContinue": "Отхвърли и опитай отново",
"tool.intervention.rejectOnly": "Отхвърли",
"tool.intervention.rejectReasonPlaceholder": "Причината помага на агента да разбере вашите граници и да подобри действията си в бъдеще",
"tool.intervention.rejectTitle": "Отхвърли това извикване на умение",
"tool.intervention.rejectedWithReason": "Това извикване на умение беше отхвърлено: {{reason}}",
"tool.intervention.rememberSimilar": "Не питай отново за подобни действия",
"tool.intervention.scrollToIntervention": "Преглед",
"tool.intervention.submit": "Изпрати",
"tool.intervention.toolAbort": "Отменихте това извикване на умение",
"tool.intervention.toolRejected": "Това извикване на умение беше отхвърлено",
"tool.intervention.viewParameters": "Преглед на параметри ({{count}})",
@@ -810,9 +809,7 @@
"workflow.toolDisplayName.searchLocalFiles": "Претърсени файлове",
"workflow.toolDisplayName.searchSkill": "Търсени умения",
"workflow.toolDisplayName.searchUserMemory": "Претърсена памет",
"workflow.toolDisplayName.showAgentMarketplace": "Събраният екип от агенти",
"workflow.toolDisplayName.solve": "Решено уравнение",
"workflow.toolDisplayName.submitAgentPick": "Избрани агенти",
"workflow.toolDisplayName.updateAgent": "Актуализира агент",
"workflow.toolDisplayName.updateDocument": "Актуализира документ",
"workflow.toolDisplayName.updateIdentityMemory": "Актуализирана памет",
@@ -851,14 +848,6 @@
"workingPanel.resources.renameEmpty": "Title cannot be empty",
"workingPanel.resources.renameError": "Failed to rename document",
"workingPanel.resources.renameSuccess": "Document renamed",
"workingPanel.resources.tree.createError": "Неуспешно създаване",
"workingPanel.resources.tree.moveError": "Неуспешно преместване",
"workingPanel.resources.tree.newDocument": "Нов документ",
"workingPanel.resources.tree.newFolder": "Нова папка",
"workingPanel.resources.tree.parentMissing": "Родителската папка не е налична",
"workingPanel.resources.tree.rename": "Преименуване",
"workingPanel.resources.tree.untitledDocument": "Документ без заглавие",
"workingPanel.resources.tree.untitledFolder": "Папка без заглавие",
"workingPanel.resources.updatedAt": "Актуализирано {{time}}",
"workingPanel.resources.viewMode.list": "Списъчен изглед",
"workingPanel.resources.viewMode.tree": "Дървовиден изглед",
-1
View File
@@ -114,7 +114,6 @@
"response.ProviderBizError": "Грешка при заявка към услугата {{provider}}. Отстранете проблема или опитайте отново.",
"response.ProviderContentModeration": "Проверката на съдържателните политики не бе успешна. Коригирайте заявката си и опитайте отново.",
"response.ProviderContentModerationWarning": "Открити са повторни нарушения на политиките. Допълнителна злоупотреба може да доведе до ограничаване на акаунта ви.",
"response.ProviderImageContentModerationWarning": "Открити са многократни отхвърляния на безопасността на изображенията. Подобни заявки може временно да спрат генерирането на изображения.",
"response.QuotaLimitReached": "Съжаляваме, достигнат е лимитът за токени или заявки за този ключ. Увеличете квотата или опитайте по-късно.",
"response.QuotaLimitReachedCloud": "Услугата на модела в момента е под голямо натоварване. Моля, опитайте отново по-късно.",
"response.ServerAgentRuntimeError": "Съжаляваме, услугата Agent не е достъпна. Опитайте отново по-късно или се свържете с нас по имейл.",
-4
View File
@@ -84,9 +84,6 @@
"verify.confirm.fields.platformAccount": "Акаунт в {{platform}}",
"verify.confirm.fields.workspace": "Работно пространство",
"verify.confirm.noAgents": "Все още нямате агенти. Създайте такъв в LobeHub, след това се върнете, за да завършите свързването.",
"verify.confirm.relink.description": "Този LobeHub акаунт вече е свързан с Telegram акаунт {{account}}. За да свържете друг Telegram акаунт, първо прекъснете връзката с текущия в Настройки → Messenger.",
"verify.confirm.relink.manage": "Отворете настройките на Messenger",
"verify.confirm.relink.title": "Друг Telegram акаунт вече е свързан",
"verify.confirm.title": "Потвърдете свързването",
"verify.confirm.workspace": "Работно пространство: {{workspace}}",
"verify.error.alreadyLinkedToOther": "Този акаунт вече е свързан с друг акаунт в LobeHub. Първо влезте в този акаунт.",
@@ -94,7 +91,6 @@
"verify.error.generic": "Нещо се обърка. Моля, опитайте отново.",
"verify.error.missingToken": "Невалидна връзка. Отворете тази страница от бота.",
"verify.error.title": "Неуспешно потвърждаване на връзката",
"verify.error.unlinkBeforeRelink": "Този LobeHub акаунт вече е свързан с друг Telegram акаунт. Прекъснете връзката в Настройки → Messenger, преди да свържете нов.",
"verify.labRequired.description": "Messenger в момента е функция в Labs. Активирайте я в Настройки → Разширени → Labs и презаредете тази страница.",
"verify.labRequired.openSettings": "Отворете настройките на Labs",
"verify.labRequired.title": "Активирайте Messenger, за да продължите",
+11 -19
View File
@@ -106,7 +106,6 @@
"MiniMax-Hailuo-2.3.description": "Чисто нов модел за видео генериране с цялостни подобрения в движенията на тялото, физическата реалистичност и следването на инструкции.",
"MiniMax-M1.description": "Нов вътрешен модел за разсъждение с 80K верига на мисълта и 1M вход, предлагащ производителност, сравнима с водещите глобални модели.",
"MiniMax-M2-Stable.description": "Създаден за ефективно програмиране и агентски работни потоци, с по-висока едновременност за търговска употреба.",
"MiniMax-M2.1-Lightning.description": "Мощни многоезични програмни възможности с по-бързо и ефективно извеждане.",
"MiniMax-M2.1-highspeed.description": "Мощни многоезични програмни възможности, цялостно подобрено програмиране. По-бързо и по-ефективно.",
"MiniMax-M2.1.description": "MiniMax-M2.1 е водеща отворена голяма езикова система от MiniMax, фокусирана върху решаването на сложни реални задачи. Основните ѝ предимства са възможностите за програмиране на множество езици и способността да действа като агент за решаване на сложни задачи.",
"MiniMax-M2.5-highspeed.description": "MiniMax M2.5 Highspeed: Същата производителност като M2.5, но с по-бързо извеждане.",
@@ -320,7 +319,7 @@
"claude-3-haiku-20240307.description": "Claude 3 Haiku е най-бързият и най-компактен модел на Anthropic, проектиран за почти мигновени отговори с бърза и точна производителност.",
"claude-3-opus-20240229.description": "Claude 3 Opus е най-мощният модел на Anthropic за силно сложни задачи, отличаващ се с производителност, интелигентност, плавност и разбиране.",
"claude-3-sonnet-20240229.description": "Claude 3 Sonnet балансира интелигентност и скорост за корпоративни натоварвания, осигурявайки висока полезност на по-ниска цена и надеждно мащабно внедряване.",
"claude-haiku-4-5-20251001.description": "Claude Haiku 4.5 е най-бързият и интелигентен Haiku модел на Anthropic, с мълниеносна скорост и разширено мислене.",
"claude-haiku-4-5-20251001.description": "Claude Haiku 4.5 е най-бързият и интелигентен Haiku модел на Anthropic, с мълниеносна скорост и разширено разсъждение.",
"claude-haiku-4-5.description": "Claude Haiku 4.5 от Anthropic — ново поколение Haiku с подобрено разсъждение и визия.",
"claude-haiku-4.5.description": "Claude Haiku 4.5 е най-бързият и най-умен Haiku модел на Anthropic, с мълниеносна скорост и разширено разсъждение.",
"claude-opus-4-1-20250805-thinking.description": "Claude Opus 4.1 Thinking е усъвършенстван вариант, който може да разкрие процеса си на разсъждение.",
@@ -335,8 +334,8 @@
"claude-opus-4.6-fast.description": "Claude Opus 4.6 е най-интелигентният модел на Anthropic за създаване на агенти и програмиране.",
"claude-opus-4.6.description": "Claude Opus 4.6 е най-интелигентният модел на Anthropic за създаване на агенти и програмиране.",
"claude-sonnet-4-20250514-thinking.description": "Claude Sonnet 4 Thinking може да генерира почти мигновени отговори или разширено стъпково мислене с видим процес.",
"claude-sonnet-4-20250514.description": "Claude Sonnet 4 е най-интелигентният модел на Anthropic досега, предлагащ почти мигновени отговори или разширено стъпка по стъпка мислене с фино управление за API потребители.",
"claude-sonnet-4-5-20250929.description": "Claude Sonnet 4.5 е най-интелигентният модел на Anthropic досега.",
"claude-sonnet-4-20250514.description": "Claude Sonnet 4 може да генерира почти мигновени отговори или разширено стъпка по стъпка мислене с видим процес.",
"claude-sonnet-4-5-20250929.description": "Claude Sonnet 4.5 е най-интелигентният модел на Anthropic до момента.",
"claude-sonnet-4-5.description": "Claude Sonnet 4.5 от Anthropic — подобрен Sonnet с по‑силни кодови способности.",
"claude-sonnet-4-6.description": "Claude Sonnet 4.6 от Anthropic — последният Sonnet с превъзходно кодиране и работа с инструменти.",
"claude-sonnet-4.5.description": "Claude Sonnet 4.5 е най-интелигентният модел на Anthropic до момента.",
@@ -409,7 +408,7 @@
"deepseek-ai/deepseek-llm-67b-chat.description": "DeepSeek LLM Chat (67B) е иновативен модел, предлагащ дълбоко езиково разбиране и интеракция.",
"deepseek-ai/deepseek-v3.1-terminus.description": "DeepSeek V3.1 е модел за разсъждение от ново поколение с по-силни способности за сложни разсъждения и верига от мисли за задълбочени аналитични задачи.",
"deepseek-ai/deepseek-v3.2.description": "DeepSeek V3.2 е модел за разсъждение от следващо поколение с по-силни способности за сложни разсъждения и верига на мисълта.",
"deepseek-chat.description": "Съвместимостен псевдоним за режим без мислене на DeepSeek V4 Flash. Планирано за премахване — използвайте DeepSeek V4 Flash вместо това.",
"deepseek-chat.description": "Нов модел с отворен код, който комбинира общи и кодови способности. Той запазва общия диалогов модел и силното кодиране на кодовия модел, с по-добро съответствие на предпочитанията. DeepSeek-V2.5 също така подобрява писането и следването на инструкции.",
"deepseek-coder-33B-instruct.description": "DeepSeek Coder 33B е езиков модел за програмиране, обучен върху 2 трилиона токени (87% код, 13% китайски/английски текст). Въвежда 16K контекстен прозорец и задачи за попълване в средата, осигурявайки допълване на код на ниво проект и попълване на фрагменти.",
"deepseek-coder-v2.description": "DeepSeek Coder V2 е отворен MoE модел за програмиране, който се представя на ниво GPT-4 Turbo.",
"deepseek-coder-v2:236b.description": "DeepSeek Coder V2 е отворен MoE модел за програмиране, който се представя на ниво GPT-4 Turbo.",
@@ -431,7 +430,7 @@
"deepseek-r1-fast-online.description": "Пълна бърза версия на DeepSeek R1 с търсене в реално време в уеб, комбинираща възможности от мащаб 671B и по-бърз отговор.",
"deepseek-r1-online.description": "Пълна версия на DeepSeek R1 с 671 милиарда параметъра и търсене в реално време в уеб, предлагаща по-силно разбиране и генериране.",
"deepseek-r1.description": "DeepSeek-R1 използва данни от студен старт преди подсиленото обучение и се представя наравно с OpenAI-o1 в математика, програмиране и разсъждение.",
"deepseek-reasoner.description": "Съвместимостен псевдоним за режим с мислене на DeepSeek V4 Flash. Планирано за премахване — използвайте DeepSeek V4 Flash вместо това.",
"deepseek-reasoner.description": "Съвместим псевдоним за DeepSeek V4 Flash режим на мислене. Планирано за премахване — използвайте deepseek-v4-flash вместо това.",
"deepseek-v2.description": "DeepSeek V2 е ефективен MoE модел за икономична обработка.",
"deepseek-v2:236b.description": "DeepSeek V2 236B е модел на DeepSeek, фокусиран върху програмиране, с висока производителност при генериране на код.",
"deepseek-v3-0324.description": "DeepSeek-V3-0324 е MoE модел с 671 милиарда параметъра, с изключителни способности в програмиране, технически задачи, разбиране на контекст и обработка на дълги текстове.",
@@ -496,8 +495,6 @@
"doubao-seedream-4-0-250828.description": "Seedream 4.0 е модел за генериране на изображения от ByteDance Seed, поддържащ вход от текст и изображения с високо контролируемо, висококачествено генериране на изображения. Генерира изображения от текстови подсказки.",
"doubao-seedream-4-5-251128.description": "Seedream 4.5 е най-новият мултимодален модел за изображения на ByteDance, интегриращ текст-към-изображение, изображение-към-изображение и групово генериране на изображения, като включва обща логика и способности за разсъждение. В сравнение с предишната версия 4.0, той предлага значително подобрено качество на генериране, с по-добра консистентност при редактиране и мулти-изображение сливане. Осигурява по-прецизен контрол върху визуалните детайли, като произвежда малък текст и малки лица по-естествено, и постига по-хармонично оформление и цветове, подобрявайки цялостната естетика.",
"doubao-seedream-5-0-260128.description": "Doubao-Seedream-5.0-lite е най-новият модел за генериране на изображения на ByteDance. За първи път интегрира възможности за онлайн извличане, позволявайки му да включва информация в реално време от уеб и да подобрява актуалността на генерираните изображения. Интелигентността на модела също е подобрена, позволявайки прецизно интерпретиране на сложни инструкции и визуално съдържание. Освен това предлага подобрено глобално покритие на знания, консистентност на референциите и качество на генериране в професионални сценарии, по-добре отговаряйки на нуждите за визуално създаване на корпоративно ниво.",
"dreamina-seedance-2-0-260128.description": "Seedance 2.0 от ByteDance е най-мощният модел за видео генериране, поддържащ мултимодално генериране на референтни видеа, редактиране на видеа, разширяване на видеа, текст-към-видео и изображение-към-видео със синхронизиран звук.",
"dreamina-seedance-2-0-fast-260128.description": "Seedance 2.0 Fast от ByteDance предлага същите възможности като Seedance 2.0 с по-бързи скорости на генериране на по-конкурентна цена.",
"emohaa.description": "Emohaa е модел за психично здраве с професионални консултантски способности, който помага на потребителите да разберат емоционални проблеми.",
"ernie-4.5-0.3b.description": "ERNIE 4.5 0.3B е лек модел с отворен код за локално и персонализирано внедряване.",
"ernie-4.5-8k-preview.description": "ERNIE 4.5 8K Preview е модел за предварителен преглед с 8K контекст за оценка на ERNIE 4.5.",
@@ -522,8 +519,7 @@
"ernie-x1-turbo-32k.description": "ERNIE X1 Turbo 32K е бърз мислещ модел с 32K контекст за сложни разсъждения и многозавойни разговори.",
"ernie-x1.1-preview.description": "ERNIE X1.1 Preview е предварителен модел за мислене, предназначен за оценка и тестване.",
"ernie-x1.1.description": "ERNIE X1.1 е мисловен модел за предварителен преглед за оценка и тестване.",
"fal-ai/bytedance/seedream/v4.5.description": "Seedream 4.5, създаден от екипа на ByteDance Seed, поддържа редактиране и композиция на множество изображения. Характеризира се с подобрена консистентност на обектите, прецизно следване на инструкции, разбиране на пространствена логика, естетическо изразяване, оформление на плакати и дизайн на лога с високопрецизно рендиране на текст-изображение.",
"fal-ai/bytedance/seedream/v4.description": "Seedream 4.0, създаден от ByteDance Seed, поддържа текстови и визуални входове за високо контролируемо, висококачествено генериране на изображения от подсказки.",
"fal-ai/bytedance/seedream/v4.description": "Seedream 4.0 е модел за генериране на изображения от ByteDance Seed, който поддържа текстови и визуални входове с високо контролируемо и висококачествено генериране на изображения. Той генерира изображения от текстови подсказки.",
"fal-ai/flux-kontext/dev.description": "FLUX.1 модел, фокусиран върху редактиране на изображения, поддържащ вход от текст и изображения.",
"fal-ai/flux-pro/kontext.description": "FLUX.1 Kontext [pro] приема текст и референтни изображения като вход, позволявайки целенасочени локални редакции и сложни глобални трансформации на сцени.",
"fal-ai/flux/krea.description": "Flux Krea [dev] е модел за генериране на изображения с естетично предпочитание към по-реалистични и естествени изображения.",
@@ -531,8 +527,8 @@
"fal-ai/hunyuan-image/v3.description": "Мощен роден мултимодален модел за генериране на изображения.",
"fal-ai/imagen4/preview.description": "Модел за висококачествено генериране на изображения от Google.",
"fal-ai/nano-banana.description": "Nano Banana е най-новият, най-бърз и най-ефективен роден мултимодален модел на Google, позволяващ генериране и редактиране на изображения чрез разговор.",
"fal-ai/qwen-image-edit.description": "Професионален модел за редактиране на изображения от екипа на Qwen, поддържащ семантични и визуални редакции, прецизно редактиране на текст на китайски/английски, трансфер на стил, завъртане и други.",
"fal-ai/qwen-image.description": "Мощен модел за генериране на изображения от екипа на Qwen с висока прецизност при рендиране на китайски текст и разнообразни визуални стилове.",
"fal-ai/qwen-image-edit.description": "Професионален модел за редактиране на изображения от екипа на Qwen, който поддържа семантични и визуални редакции, прецизно редактира китайски и английски текст и позволява висококачествени редакции като трансфер на стил и ротация на обекти.",
"fal-ai/qwen-image.description": "Мощен модел за генериране на изображения от екипа на Qwen с впечатляващо рендиране на китайски текст и разнообразни визуални стилове.",
"flux-1-schnell.description": "Модел за преобразуване на текст в изображение с 12 милиарда параметъра от Black Forest Labs, използващ латентна дифузионна дестилация за генериране на висококачествени изображения в 1–4 стъпки. Съперничи на затворени алтернативи и е пуснат под лиценз Apache-2.0 за лична, изследователска и търговска употреба.",
"flux-dev.description": "Модел за генериране на изображения с отворен код, оптимизиран за неконкурентни изследвания и иновации.",
"flux-kontext-max.description": "Съвременно генериране и редактиране на изображения с контекст, комбиниращо текст и изображения за прецизни и последователни резултати.",
@@ -571,10 +567,10 @@
"gemini-3-flash-preview.description": "Gemini 3 Flash е най-интелигентният модел, създаден за скорост, съчетаващ авангардна интелигентност с отлично търсене и обоснованост.",
"gemini-3-flash.description": "Gemini 3 Flash от Google — ултрабърз модел с мултимодална поддръжка.",
"gemini-3-pro-image-preview.description": "Gemini 3 Pro Image (Nano Banana Pro) е модел за генериране на изображения на Google, който също поддържа мултимодален диалог.",
"gemini-3-pro-image-preview:image.description": "Gemini 3 Pro Image (Nano Banana Pro) е моделът на Google за генериране на изображения и също така поддържа мултимодален чат.",
"gemini-3-pro-image-preview:image.description": "Gemini 3 Pro Image (Nano Banana Pro) е модел за генериране на изображения на Google и също така поддържа мултимодален чат.",
"gemini-3-pro-preview.description": "Gemini 3 Pro е най-мощният агентен и „vibe-coding“ модел на Google, който предлага по-богати визуализации и по-дълбоко взаимодействие, базирано на съвременно логическо мислене.",
"gemini-3.1-flash-image-preview.description": "Gemini 3.1 Flash Image (Nano Banana 2) е най-бързият модел на Google за генериране на изображения с поддръжка на мислене, разговорно генериране и редактиране на изображения.",
"gemini-3.1-flash-image-preview:image.description": "Gemini 3.1 Flash Image (Nano Banana 2) предоставя Pro-качество на изображения с Flash скорост и поддръжка на мултимодален чат.",
"gemini-3.1-flash-image-preview:image.description": "Gemini 3.1 Flash Image (Nano Banana 2) е най-бързият собствен модел на Google за генериране на изображения с поддръжка на мислене, разговорно генериране и редактиране на изображения.",
"gemini-3.1-flash-lite-preview.description": "Gemini 3.1 Flash-Lite Preview е най-икономичният мултимодален модел на Google, оптимизиран за задачи с голям обем, превод и обработка на данни.",
"gemini-3.1-pro-preview.description": "Gemini 3.1 Pro Preview подобрява Gemini 3 Pro с усъвършенствани способности за разсъждение и добавя поддръжка за средно ниво на мислене.",
"gemini-3.1-pro.description": "Gemini 3.1 Pro от Google — премиум мултимодален модел с 1M контекст.",
@@ -740,11 +736,9 @@
"grok-4-fast-reasoning.description": "С гордост представяме Grok 4 Fast – нашият най-нов напредък в икономичните логически модели.",
"grok-4.20-0309-non-reasoning.description": "Неразсъждаващ вариант за прости случаи.",
"grok-4.20-0309-reasoning.description": "Интелигентен, изключително бърз модел с разсъждение.",
"grok-4.20-beta-0309-non-reasoning.description": "Вариант без мислене за прости случаи на употреба.",
"grok-4.20-beta-0309-reasoning.description": "Интелигентен, изключително бърз модел, който разсъждава преди да отговори.",
"grok-4.20-multi-agent-0309.description": "Екип от 4 или 16 агента — отличен за проучвания; поддържа само xAI сървърни инструменти.",
"grok-4.3.description": "Най-истинно търсещият голям езиков модел в света",
"grok-4.description": "Нашият най-нов и най-силен флагмански модел, превъзхождащ в NLP, математика и разсъждения — идеален универсален инструмент.",
"grok-4.description": "Най-новият флагман Grok с ненадмината производителност в езика, математиката и разсъжденията — истински универсален модел. В момента сочи към grok-4-0709; поради ограничени ресурси временно е с 10% по-висока цена от официалната и се очаква да се върне към официалната цена по-късно.",
"grok-code-fast-1.description": "С гордост представяме grok-code-fast-1 – бърз и икономичен логически модел, който се отличава в агентско програмиране.",
"grok-imagine-image-pro.description": "Генерирайте изображения от текстови подсказки, редактирайте съществуващи изображения с естествен език или итеративно усъвършенствайте изображения чрез многократни разговори.",
"grok-imagine-image.description": "Генерирайте изображения от текстови подсказки, редактирайте съществуващи изображения с естествен език или итеративно усъвършенствайте изображения чрез многократни разговори.",
@@ -1233,8 +1227,6 @@
"qwq.description": "QwQ е модел за аргументация от семейството на Qwen. В сравнение със стандартните модели, обучени с инструкции, предлага мисловни и логически способности, които значително подобряват ефективността при трудни задачи. QwQ-32B е среден по размер модел, който се конкурира с водещи модели като DeepSeek-R1 и o1-mini.",
"qwq_32b.description": "Среден по размер модел за аргументация от семейството на Qwen. В сравнение със стандартните модели, обучени с инструкции, мисловните и логическите способности на QwQ значително подобряват ефективността при трудни задачи.",
"r1-1776.description": "R1-1776 е дообучен вариант на DeepSeek R1, създаден да предоставя неконфронтирана, обективна и фактическа информация.",
"seedance-1-5-pro-251215.description": "Seedance 1.5 Pro от ByteDance поддържа текст-към-видео, изображение-към-видео (първи кадър, първи+последен кадър) и генериране на звук, синхронизиран с визуализации.",
"seedream-5-0-260128.description": "ByteDance-Seedream-5.0-lite от BytePlus предлага генериране, обогатено с уеб търсене за реална информация, подобрена интерпретация на сложни подсказки и подобрена консистентност на референциите за професионално визуално създаване.",
"solar-mini-ja.description": "Solar Mini (Ja) разширява Solar Mini с фокус върху японски език, като запазва ефективността и силната производителност на английски и корейски.",
"solar-mini.description": "Solar Mini е компактен LLM, който превъзхожда GPT-3.5, с мощни многоезични възможности, поддържащ английски и корейски, и предлага ефективно решение с малък отпечатък.",
"solar-pro.description": "Solar Pro е интелигентен LLM от Upstage, фокусиран върху следване на инструкции на един GPU, с IFEval резултати над 80. Понастоящем поддържа английски; пълното издание е планирано за ноември 2024 с разширена езикова поддръжка и по-дълъг контекст.",
-2
View File
@@ -29,9 +29,7 @@
"agent.layout.switchMessage": "Не сте в настроение днес? Можете да преминете в <modeLink><modeText>{{mode}}</modeText></modeLink> или да <skipLink><skipText>{{skip}}</skipText></skipLink>.",
"agent.modeSwitch.agent": "Разговорен",
"agent.modeSwitch.classic": "Класически",
"agent.modeSwitch.collapse": "Свий",
"agent.modeSwitch.debug": "Експорт за отстраняване на грешки",
"agent.modeSwitch.expand": "Разгъни",
"agent.modeSwitch.label": "Изберете режим за въвеждане",
"agent.modeSwitch.reset": "Нулиране на процеса",
"agent.progress": "{{currentStep}}/{{totalSteps}}",
+1 -10
View File
@@ -256,16 +256,13 @@
"builtins.lobe-skills.apiName.runCommand": "Изпълни команда",
"builtins.lobe-skills.apiName.searchSkill": "Търсене на умения",
"builtins.lobe-skills.title": "Умения",
"builtins.lobe-task.apiName.addTaskComment": "Добавяне на коментар",
"builtins.lobe-task.apiName.createTask": "Създаване на задача",
"builtins.lobe-task.apiName.createTasks": "Създаване на задачи",
"builtins.lobe-task.apiName.deleteTask": "Изтриване на задача",
"builtins.lobe-task.apiName.deleteTaskComment": "Изтриване на коментар",
"builtins.lobe-task.apiName.editTask": "Редактиране на задача",
"builtins.lobe-task.apiName.listTasks": "Списък със задачи",
"builtins.lobe-task.apiName.runTask": "Изпълнение на задача",
"builtins.lobe-task.apiName.runTasks": "Изпълнение на задачи",
"builtins.lobe-task.apiName.updateTaskComment": "Актуализиране на коментар",
"builtins.lobe-task.apiName.updateTaskStatus": "Актуализиране на статус",
"builtins.lobe-task.apiName.viewTask": "Преглед на задача",
"builtins.lobe-task.create.subtaskOf": "Подзадача на {{parent}}",
@@ -276,8 +273,6 @@
"builtins.lobe-task.edit.blocksOn": "блокира на",
"builtins.lobe-task.edit.description": "описанието е актуализирано",
"builtins.lobe-task.edit.instruction": "инструкцията е актуализирана",
"builtins.lobe-task.edit.parent": "родител",
"builtins.lobe-task.edit.parentClear": "най-горно ниво",
"builtins.lobe-task.edit.priority": "приоритет",
"builtins.lobe-task.edit.rename": "преименуване",
"builtins.lobe-task.edit.unassign": "премахване на назначение",
@@ -327,11 +322,6 @@
"builtins.lobe-web-onboarding.inspector.interests_one": "{{count}} интерес",
"builtins.lobe-web-onboarding.inspector.interests_other": "{{count}} интереса",
"builtins.lobe-web-onboarding.title": "Въвеждане на потребител",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.delete": "Изтриване",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.deleteLines": "Изтриване на редове",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.insertAt": "Вмъкване на ред",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.replace": "Замяна",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.replaceLines": "Замяна на редове",
"confirm": "Потвърди",
"debug.arguments": "Аргументи",
"debug.error": "Дневник на грешки",
@@ -356,6 +346,7 @@
"detailModal.tabs.settings": "Настройки",
"detailModal.title": "Детайли за умението",
"dev.confirmDeleteDevPlugin": "Това локално умение ще бъде изтрито завинаги. Продължиш ли?",
"dev.customParams.useProxy.label": "Инсталирай чрез прокси (активирай при CORS грешки, след това опитай отново)",
"dev.deleteSuccess": "Умението е изтрито",
"dev.manifest.identifier.desc": "Уникален идентификатор за умението",
"dev.manifest.identifier.label": "Идентификатор",
-1
View File
@@ -33,7 +33,6 @@
"jina.description": "Основана през 2020 г., Jina AI е водеща компания в областта на търсещия AI. Технологичният ѝ стек включва векторни модели, преоценители и малки езикови модели за създаване на надеждни генеративни и мултимодални търсещи приложения.",
"kimicodingplan.description": "Kimi Code от Moonshot AI предоставя достъп до модели Kimi, включително K2.5, за задачи, свързани с програмиране.",
"lmstudio.description": "LM Studio е десктоп приложение за разработка и експериментиране с LLM на вашия компютър.",
"lobehub.description": "LobeHub Cloud използва официални API за достъп до AI модели и измерва използването чрез Кредити, свързани с токените на модела.",
"longcat.description": "LongCat е серия от големи модели за генеративен AI, независимо разработени от Meituan. Той е създаден да подобри вътрешната продуктивност на предприятието и да позволи иновативни приложения чрез ефективна изчислителна архитектура и силни мултимодални възможности.",
"minimax.description": "Основана през 2021 г., MiniMax създава универсален AI с мултимодални базови модели, включително текстови модели с трилиони параметри, речеви и визуални модели, както и приложения като Hailuo AI.",
"minimaxcodingplan.description": "MiniMax Token Plan предоставя достъп до модели MiniMax, включително M2.7, за задачи, свързани с програмиране, чрез абонамент с фиксирана такса.",
-7
View File
@@ -30,16 +30,9 @@
"agentMarketplace.category.personalLife": "Личен живот",
"agentMarketplace.category.productManagement": "Управление на продукти",
"agentMarketplace.category.salesCustomer": "Продажби и клиенти",
"agentMarketplace.inspector.moreCategories_one": "+{{count}}",
"agentMarketplace.inspector.moreCategories_other": "+{{count}}",
"agentMarketplace.inspector.pickCount_one": "{{count}} агент",
"agentMarketplace.inspector.pickCount_other": "{{count}} агенти",
"agentMarketplace.picker.empty": "Няма налични шаблони.",
"agentMarketplace.picker.failedToLoad": "Неуспешно зареждане на шаблоните. Моля, опитайте отново по-късно.",
"agentMarketplace.picker.summary": "{{filtered}} / {{total}} налични шаблони.",
"agentMarketplace.render.alreadyInLibraryTag": "Вече в библиотеката",
"agentMarketplace.render.alreadyInLibrary_one": "{{count}} вече в библиотеката",
"agentMarketplace.render.alreadyInLibrary_other": "{{count}} вече в библиотеката",
"codeInterpreter-legacy.error": "Грешка при изпълнение",
"codeInterpreter-legacy.executing": "Изпълнение...",
"codeInterpreter-legacy.files": "Файлове:",
+1 -1
View File
@@ -35,7 +35,7 @@
"authModal.title": "Sitzung abgelaufen",
"betterAuth.captcha.continue": "Weiter",
"betterAuth.captcha.description": "Führen Sie die Sicherheitsüberprüfung unten durch. Wir werden Ihre Anmeldung oder Registrierung automatisch fortsetzen.",
"betterAuth.captcha.pendingDescription": "Die Überprüfung wurde nicht abgeschlossen. Bitte versuchen Sie die Aufgabe erneut.",
"betterAuth.captcha.pendingDescription": "Bitte führen Sie zuerst die Überprüfung durch und fahren Sie dann fort.",
"betterAuth.captcha.title": "Sicherheitsüberprüfung erforderlich",
"betterAuth.errors.confirmPasswordRequired": "Bitte bestätigen Sie Ihr Passwort",
"betterAuth.errors.emailExists": "Diese E-Mail ist bereits registriert. Bitte melden Sie sich stattdessen an",
-1
View File
@@ -27,7 +27,6 @@
"codes.RATE_LIMIT_EXCEEDED": "Zu viele Anfragen, bitte versuche es später erneut",
"codes.SESSION_EXPIRED": "Sitzung ist abgelaufen, bitte erneut anmelden",
"codes.SOCIAL_ACCOUNT_ALREADY_LINKED": "Dieses soziale Konto ist bereits mit einem anderen Benutzer verknüpft",
"codes.TEMPORARY_EMAIL_NOT_ALLOWED": "Temporäre E-Mail-Adressen werden nicht unterstützt. Bitte verwenden Sie eine reguläre E-Mail-Adresse. Wiederholte Versuche können dieses Netzwerk blockieren.",
"codes.UNEXPECTED_ERROR": "Ein unerwarteter Fehler ist aufgetreten, bitte versuche es erneut",
"codes.UNKNOWN": "Ein unbekannter Fehler ist aufgetreten, bitte versuche es erneut oder kontaktiere den Support",
"codes.USER_ALREADY_EXISTS": "Benutzer existiert bereits",
+4 -15
View File
@@ -673,14 +673,14 @@
"tokenTag.used": "Verwendet",
"tool.intervention.approvalMode": "Genehmigungsmodus",
"tool.intervention.approve": "Genehmigen",
"tool.intervention.approveAndRemember": "Genehmigen und merken",
"tool.intervention.approveOnce": "Nur dieses Mal genehmigen",
"tool.intervention.mode.allowList": "Zulassungsliste",
"tool.intervention.mode.allowListDesc": "Nur genehmigte Tools automatisch ausführen",
"tool.intervention.mode.autoRun": "Automatisch genehmigen",
"tool.intervention.mode.autoRunDesc": "Alle Tool-Ausführungen automatisch genehmigen",
"tool.intervention.mode.manual": "Manuell",
"tool.intervention.mode.manualDesc": "Manuelle Genehmigung für jeden Aufruf erforderlich",
"tool.intervention.onboarding.agentIdentity.editHint": "Sie können den Namen oder Avatar direkt unten bearbeiten.",
"tool.intervention.onboarding.agentIdentity.namePlaceholder": "Agentenname",
"tool.intervention.onboarding.agentIdentity.title": "Aktualisierung der Agentenidentität bestätigen",
"tool.intervention.onboarding.agentIdentity.titleAvatarOnly": "Ich werde meinen Avatar aktualisieren",
"tool.intervention.onboarding.agentIdentity.titleNameOnly": "Ich werde meinen Namen aktualisieren",
@@ -690,15 +690,14 @@
"tool.intervention.onboarding.userProfile.fullName": "Vollständiger Name",
"tool.intervention.onboarding.userProfile.responseLanguage": "Antwortsprache",
"tool.intervention.onboarding.userProfile.title": "Bestätigen Sie Ihre Profilaktualisierung",
"tool.intervention.optionApprove": "Genehmigen",
"tool.intervention.pending": "Ausstehend",
"tool.intervention.reject": "Ablehnen",
"tool.intervention.rejectAndContinue": "Ablehnen und erneut versuchen",
"tool.intervention.rejectOnly": "Ablehnen",
"tool.intervention.rejectReasonPlaceholder": "Ein Grund hilft dem Agenten, deine Grenzen zu verstehen und sich zu verbessern",
"tool.intervention.rejectTitle": "Diesen Skill-Aufruf ablehnen",
"tool.intervention.rejectedWithReason": "Dieser Skill-Aufruf wurde abgelehnt: {{reason}}",
"tool.intervention.rememberSimilar": "Nicht erneut für ähnliche Aktionen fragen",
"tool.intervention.scrollToIntervention": "Ansehen",
"tool.intervention.submit": "Einreichen",
"tool.intervention.toolAbort": "Du hast diesen Skill-Aufruf abgebrochen",
"tool.intervention.toolRejected": "Dieser Skill-Aufruf wurde abgelehnt",
"tool.intervention.viewParameters": "Parameter anzeigen ({{count}})",
@@ -810,9 +809,7 @@
"workflow.toolDisplayName.searchLocalFiles": "Dateien durchsucht",
"workflow.toolDisplayName.searchSkill": "Gesuchte Fähigkeiten",
"workflow.toolDisplayName.searchUserMemory": "Speicher durchsucht",
"workflow.toolDisplayName.showAgentMarketplace": "Zusammengestelltes Agententeam",
"workflow.toolDisplayName.solve": "Gelöste Gleichung",
"workflow.toolDisplayName.submitAgentPick": "Ausgewählte Agenten",
"workflow.toolDisplayName.updateAgent": "Agent aktualisiert",
"workflow.toolDisplayName.updateDocument": "Ein Dokument aktualisiert",
"workflow.toolDisplayName.updateIdentityMemory": "Aktualisierter Speicher",
@@ -851,14 +848,6 @@
"workingPanel.resources.renameEmpty": "Title cannot be empty",
"workingPanel.resources.renameError": "Failed to rename document",
"workingPanel.resources.renameSuccess": "Document renamed",
"workingPanel.resources.tree.createError": "Erstellen fehlgeschlagen",
"workingPanel.resources.tree.moveError": "Verschieben fehlgeschlagen",
"workingPanel.resources.tree.newDocument": "Neues Dokument",
"workingPanel.resources.tree.newFolder": "Neuer Ordner",
"workingPanel.resources.tree.parentMissing": "Übergeordneter Ordner ist nicht verfügbar",
"workingPanel.resources.tree.rename": "Umbenennen",
"workingPanel.resources.tree.untitledDocument": "Unbenanntes Dokument",
"workingPanel.resources.tree.untitledFolder": "Unbenannter Ordner",
"workingPanel.resources.updatedAt": "Aktualisiert {{time}}",
"workingPanel.resources.viewMode.list": "Listenansicht",
"workingPanel.resources.viewMode.tree": "Baumansicht",
-1
View File
@@ -114,7 +114,6 @@
"response.ProviderBizError": "Fehler bei der Anfrage an {{provider}}. Bitte prüfen Sie die Details.",
"response.ProviderContentModeration": "Die Inhaltsrichtlinienprüfung ist fehlgeschlagen. Überarbeiten Sie Ihre Eingabe und versuchen Sie es erneut.",
"response.ProviderContentModerationWarning": "Wiederholte Verstöße gegen die Richtlinien wurden erkannt. Weitere Missbräuche können zur Einschränkung Ihres Kontos führen.",
"response.ProviderImageContentModerationWarning": "Wiederholte Sicherheitsablehnungen von Bildern festgestellt. Ähnliche Eingaben können die Bildgenerierung vorübergehend pausieren.",
"response.QuotaLimitReached": "Token- oder Anfrage-Limit erreicht. Bitte Kontingent erhöhen oder später versuchen.",
"response.QuotaLimitReachedCloud": "Der Modelldienst ist derzeit stark ausgelastet. Bitte versuchen Sie es später erneut.",
"response.ServerAgentRuntimeError": "Agent-Dienst derzeit nicht verfügbar. Bitte später erneut versuchen.",
-4
View File
@@ -84,9 +84,6 @@
"verify.confirm.fields.platformAccount": "{{platform}}-Konto",
"verify.confirm.fields.workspace": "Arbeitsbereich",
"verify.confirm.noAgents": "Sie haben noch keine Agenten. Erstellen Sie einen in LobeHub und kehren Sie dann zurück, um die Verknüpfung abzuschließen.",
"verify.confirm.relink.description": "Dieses LobeHub-Konto ist bereits mit dem Telegram-Konto {{account}} verknüpft. Um ein anderes Telegram-Konto zu verknüpfen, trennen Sie zuerst das aktuelle in Einstellungen → Messenger.",
"verify.confirm.relink.manage": "Messenger-Einstellungen öffnen",
"verify.confirm.relink.title": "Ein anderes Telegram-Konto ist bereits verknüpft",
"verify.confirm.title": "Verknüpfung bestätigen",
"verify.confirm.workspace": "Arbeitsbereich: {{workspace}}",
"verify.error.alreadyLinkedToOther": "Dieses Konto ist bereits mit einem anderen LobeHub-Konto verknüpft. Melden Sie sich zuerst bei diesem Konto an.",
@@ -94,7 +91,6 @@
"verify.error.generic": "Etwas ist schiefgelaufen. Bitte versuchen Sie es erneut.",
"verify.error.missingToken": "Ungültiger Link. Öffnen Sie diese Seite über den Bot.",
"verify.error.title": "Verknüpfung konnte nicht bestätigt werden",
"verify.error.unlinkBeforeRelink": "Dieses LobeHub-Konto ist bereits mit einem anderen Telegram-Konto verknüpft. Trennen Sie es in Einstellungen → Messenger, bevor Sie ein neues verknüpfen.",
"verify.labRequired.description": "Messenger ist derzeit eine Labs-Funktion. Aktivieren Sie sie unter Einstellungen → Erweitert → Labs und laden Sie diese Seite neu.",
"verify.labRequired.openSettings": "Labs-Einstellungen öffnen",
"verify.labRequired.title": "Messenger aktivieren, um fortzufahren",
+11 -19
View File
@@ -106,7 +106,6 @@
"MiniMax-Hailuo-2.3.description": "Brandneues Videoerzeugungsmodell mit umfassenden Verbesserungen in Körperbewegung, physikalischem Realismus und Befolgung von Anweisungen.",
"MiniMax-M1.description": "Ein neues Inhouse-Argumentationsmodell mit 80K Chain-of-Thought und 1M Eingabe, vergleichbar mit führenden globalen Modellen.",
"MiniMax-M2-Stable.description": "Entwickelt für effizientes Coden und Agenten-Workflows mit höherer Parallelität für den kommerziellen Einsatz.",
"MiniMax-M2.1-Lightning.description": "Leistungsstarke mehrsprachige Programmierfähigkeiten mit schnellerer und effizienterer Inferenz.",
"MiniMax-M2.1-highspeed.description": "Leistungsstarke mehrsprachige Programmierfähigkeiten, umfassend verbesserte Programmiererfahrung. Schneller und effizienter.",
"MiniMax-M2.1.description": "MiniMax-M2.1 ist das Flaggschiff unter den Open-Source-Großmodellen von MiniMax und konzentriert sich auf die Lösung komplexer Aufgaben aus der realen Welt. Seine zentralen Stärken liegen in der mehrsprachigen Programmierfähigkeit und der Fähigkeit, als Agent komplexe Aufgaben zu bewältigen.",
"MiniMax-M2.5-highspeed.description": "MiniMax M2.5 Highspeed: Gleiche Leistung wie M2.5 mit schnellerer Inferenz.",
@@ -320,13 +319,13 @@
"claude-3-haiku-20240307.description": "Claude 3 Haiku ist das schnellste und kompakteste Modell von Anthropic, entwickelt für nahezu sofortige Antworten mit schneller, präziser Leistung.",
"claude-3-opus-20240229.description": "Claude 3 Opus ist das leistungsstärkste Modell von Anthropic für hochkomplexe Aufgaben. Es überzeugt in Leistung, Intelligenz, Sprachfluss und Verständnis.",
"claude-3-sonnet-20240229.description": "Claude 3 Sonnet bietet eine ausgewogene Kombination aus Intelligenz und Geschwindigkeit für Unternehmensanwendungen. Es liefert hohe Nutzbarkeit bei geringeren Kosten und zuverlässiger Skalierbarkeit.",
"claude-haiku-4-5-20251001.description": "Claude Haiku 4.5 ist das schnellste und intelligenteste Haiku-Modell von Anthropic, mit blitzschneller Geschwindigkeit und erweitertem Denken.",
"claude-haiku-4-5-20251001.description": "Claude Haiku 4.5 ist das schnellste und intelligenteste Haiku-Modell von Anthropic, mit blitzschneller Geschwindigkeit und erweitertem Denkvermögen.",
"claude-haiku-4-5.description": "Claude Haiku 4.5 von Anthropic — Next-Gen-Haiku mit verbessertem Reasoning und Vision.",
"claude-haiku-4.5.description": "Claude Haiku 4.5 ist das schnellste und intelligenteste Haiku-Modell von Anthropic, mit blitzschneller Geschwindigkeit und erweiterten Denkfähigkeiten.",
"claude-opus-4-1-20250805-thinking.description": "Claude Opus 4.1 Thinking ist eine erweiterte Variante, die ihren Denkprozess offenlegen kann.",
"claude-opus-4-1-20250805.description": "Claude Opus 4.1 ist das neueste und leistungsfähigste Modell von Anthropic für hochkomplexe Aufgaben, das in Leistung, Intelligenz, Sprachgewandtheit und Verständnis herausragt.",
"claude-opus-4-1-20250805.description": "Claude Opus 4.1 ist das neueste und leistungsfähigste Modell von Anthropic für hochkomplexe Aufgaben und überzeugt durch Leistung, Intelligenz, Sprachgewandtheit und Verständnis.",
"claude-opus-4-1.description": "Claude Opus 4.1 von Anthropic — Premium-Reasoning-Modell mit tiefgehender Analysefähigkeit.",
"claude-opus-4-20250514.description": "Claude Opus 4 ist das leistungsstärkste Modell von Anthropic für hochkomplexe Aufgaben, das in Leistung, Intelligenz, Sprachgewandtheit und Verständnis herausragt.",
"claude-opus-4-20250514.description": "Claude Opus 4 ist das leistungsstärkste Modell von Anthropic für hochkomplexe Aufgaben und überzeugt durch Leistung, Intelligenz, Sprachgewandtheit und Verständnis.",
"claude-opus-4-5-20251101.description": "Claude Opus 4.5 ist das Flaggschiffmodell von Anthropic. Es kombiniert herausragende Intelligenz mit skalierbarer Leistung und ist ideal für komplexe Aufgaben, die höchste Qualität bei Antworten und logischem Denken erfordern.",
"claude-opus-4-5.description": "Claude Opus 4.5 von Anthropic — Flaggschiffmodell mit erstklassigem Reasoning und Coding.",
"claude-opus-4-6.description": "Claude Opus 4.6 von Anthropic — Flaggschiffmodell mit 1M Kontextfenster und erweitertem Reasoning.",
@@ -335,7 +334,7 @@
"claude-opus-4.6-fast.description": "Claude Opus 4.6 ist das intelligenteste Modell von Anthropic für die Entwicklung von Agenten und Programmierung.",
"claude-opus-4.6.description": "Claude Opus 4.6 ist das intelligenteste Modell von Anthropic für die Entwicklung von Agenten und Programmierung.",
"claude-sonnet-4-20250514-thinking.description": "Claude Sonnet 4 Thinking kann nahezu sofortige Antworten oder schrittweises Denken mit sichtbarem Prozess erzeugen.",
"claude-sonnet-4-20250514.description": "Claude Sonnet 4 ist das bisher intelligenteste Modell von Anthropic, das nahezu sofortige Antworten oder erweitertes schrittweises Denken mit fein abgestimmter Kontrolle für API-Nutzer bietet.",
"claude-sonnet-4-20250514.description": "Claude Sonnet 4 kann nahezu sofortige Antworten oder ausführliches, schrittweises Denken mit sichtbarem Prozess liefern.",
"claude-sonnet-4-5-20250929.description": "Claude Sonnet 4.5 ist das bisher intelligenteste Modell von Anthropic.",
"claude-sonnet-4-5.description": "Claude Sonnet 4.5 von Anthropic — weiterentwickeltes Sonnet mit verbesserter Coding-Leistung.",
"claude-sonnet-4-6.description": "Claude Sonnet 4.6 von Anthropic — neuestes Sonnet mit überlegener Coding- und Tool-Nutzung.",
@@ -409,7 +408,7 @@
"deepseek-ai/deepseek-llm-67b-chat.description": "DeepSeek LLM Chat (67B) ist ein innovatives Modell mit tiefem Sprachverständnis und Interaktionsfähigkeit.",
"deepseek-ai/deepseek-v3.1-terminus.description": "DeepSeek V3.1 ist ein Next-Gen-Denkmodell mit stärkerem komplexem Denken und Chain-of-Thought für tiefgreifende Analyseaufgaben.",
"deepseek-ai/deepseek-v3.2.description": "DeepSeek V3.2 ist ein Next-Gen-Modell für logisches Denken mit stärkeren Fähigkeiten für komplexes Denken und Kettenlogik.",
"deepseek-chat.description": "Kompatibilitätsalias für den DeepSeek V4 Flash-Modus ohne Denken. Zur Ausmusterung vorgesehen verwenden Sie stattdessen DeepSeek V4 Flash.",
"deepseek-chat.description": "Ein neues Open-Source-Modell, das allgemeine und Programmierfähigkeiten kombiniert. Es bewahrt den allgemeinen Dialog des Chat-Modells und die starken Programmierfähigkeiten des Coder-Modells, mit besserer Präferenzabstimmung. DeepSeek-V2.5 verbessert auch das Schreiben und das Befolgen von Anweisungen.",
"deepseek-coder-33B-instruct.description": "DeepSeek Coder 33B ist ein Code-Sprachmodell, trainiert auf 2B Tokens (87% Code, 13% chinesisch/englischer Text). Es bietet ein 16K-Kontextfenster und Fill-in-the-Middle-Aufgaben für projektweite Codevervollständigung und Snippet-Ergänzung.",
"deepseek-coder-v2.description": "DeepSeek Coder V2 ist ein Open-Source-MoE-Code-Modell mit starker Leistung bei Programmieraufgaben, vergleichbar mit GPT-4 Turbo.",
"deepseek-coder-v2:236b.description": "DeepSeek Coder V2 ist ein Open-Source-MoE-Code-Modell mit starker Leistung bei Programmieraufgaben, vergleichbar mit GPT-4 Turbo.",
@@ -431,7 +430,7 @@
"deepseek-r1-fast-online.description": "DeepSeek R1 Schnellversion mit Echtzeit-Websuche kombiniert 671B-Fähigkeiten mit schneller Reaktion.",
"deepseek-r1-online.description": "DeepSeek R1 Vollversion mit 671B Parametern und Echtzeit-Websuche bietet stärkeres Verständnis und bessere Generierung.",
"deepseek-r1.description": "DeepSeek-R1 nutzt Cold-Start-Daten vor dem RL und erreicht vergleichbare Leistungen wie OpenAI-o1 bei Mathematik, Programmierung und logischem Denken.",
"deepseek-reasoner.description": "Kompatibilitätsalias für den DeepSeek V4 Flash-Denkmodus. Zur Ausmusterung vorgesehen verwenden Sie stattdessen DeepSeek V4 Flash.",
"deepseek-reasoner.description": "Kompatibilitätsalias für den DeepSeek V4 Flash-Denkmodus. Geplant für die Abschaffung — verwenden Sie stattdessen deepseek-v4-flash.",
"deepseek-v2.description": "DeepSeek V2 ist ein effizientes MoE-Modell für kostengünstige Verarbeitung.",
"deepseek-v2:236b.description": "DeepSeek V2 236B ist das codefokussierte Modell von DeepSeek mit starker Codegenerierung.",
"deepseek-v3-0324.description": "DeepSeek-V3-0324 ist ein MoE-Modell mit 671B Parametern und herausragenden Stärken in Programmierung, technischer Kompetenz, Kontextverständnis und Langtextverarbeitung.",
@@ -496,8 +495,6 @@
"doubao-seedream-4-0-250828.description": "Seedream 4.0 ist ein Bildgenerierungsmodell von ByteDance Seed, das Text- und Bildeingaben unterstützt und eine hochgradig kontrollierbare, hochwertige Bildgenerierung ermöglicht. Es erzeugt Bilder aus Texteingaben.",
"doubao-seedream-4-5-251128.description": "Seedream 4.5 ist das neueste multimodale Bildmodell von ByteDance, das Text-zu-Bild, Bild-zu-Bild und Batch-Bilderzeugung integriert und dabei Allgemeinwissen und logisches Denken einbezieht. Im Vergleich zur vorherigen Version 4.0 bietet es eine deutlich verbesserte Generierungsqualität, bessere Konsistenz bei der Bearbeitung und Multi-Bild-Fusion. Es ermöglicht eine präzisere Kontrolle über visuelle Details, erzeugt kleine Texte und kleine Gesichter natürlicher und erreicht harmonischere Layouts und Farben, wodurch die Gesamtästhetik verbessert wird.",
"doubao-seedream-5-0-260128.description": "Doubao-Seedream-5.0-lite ist das neueste Bildgenerierungsmodell von ByteDance. Erstmals integriert es Online-Retrieval-Funktionen, die es ermöglichen, Echtzeit-Webinformationen einzubeziehen und die Aktualität der generierten Bilder zu verbessern. Die Intelligenz des Modells wurde ebenfalls aufgerüstet, um komplexe Anweisungen und visuelle Inhalte präzise zu interpretieren. Darüber hinaus bietet es eine verbesserte globale Wissensabdeckung, Konsistenz bei Referenzen und Generierungsqualität in professionellen Szenarien, um den visuellen Erstellungsbedarf auf Unternehmensebene besser zu erfüllen.",
"dreamina-seedance-2-0-260128.description": "Seedance 2.0 von ByteDance ist das leistungsstärkste Videoerzeugungsmodell, das multimodale Referenzvideoerzeugung, Videobearbeitung, Videoerweiterung, Text-zu-Video und Bild-zu-Video mit synchronisiertem Audio unterstützt.",
"dreamina-seedance-2-0-fast-260128.description": "Seedance 2.0 Fast von ByteDance bietet die gleichen Funktionen wie Seedance 2.0 mit schnelleren Erzeugungsgeschwindigkeiten zu einem wettbewerbsfähigeren Preis.",
"emohaa.description": "Emohaa ist ein Modell für psychische Gesundheit mit professionellen Beratungsfähigkeiten, das Nutzern hilft, emotionale Probleme zu verstehen.",
"ernie-4.5-0.3b.description": "ERNIE 4.5 0.3B ist ein quelloffenes, leichtgewichtiges Modell für lokale und individuell angepasste Bereitstellungen.",
"ernie-4.5-8k-preview.description": "ERNIE 4.5 8K Preview ist ein Vorschau-Modell mit 8K Kontextlänge zur Bewertung von ERNIE 4.5.",
@@ -522,8 +519,7 @@
"ernie-x1-turbo-32k.description": "ERNIE X1 Turbo 32K ist ein schnelles Denkmodell mit 32K Kontext für komplexe Schlussfolgerungen und mehrstufige Gespräche.",
"ernie-x1.1-preview.description": "ERNIE X1.1 Preview ist ein Vorschau-Modell mit Denkfähigkeit zur Bewertung und zum Testen.",
"ernie-x1.1.description": "ERNIE X1.1 ist ein Vorschau-Denkmodell für Evaluierung und Tests.",
"fal-ai/bytedance/seedream/v4.5.description": "Seedream 4.5, entwickelt vom ByteDance Seed-Team, unterstützt die Bearbeitung und Komposition mehrerer Bilder. Es bietet verbesserte Konsistenz von Motiven, präzise Befolgung von Anweisungen, räumliches Logikverständnis, ästhetischen Ausdruck, Posterlayout und Logodesign mit hochpräziser Text-Bild-Wiedergabe.",
"fal-ai/bytedance/seedream/v4.description": "Seedream 4.0, entwickelt von ByteDance Seed, unterstützt Text- und Bildeingaben für hochkontrollierbare, qualitativ hochwertige Bilderzeugung aus Eingabeaufforderungen.",
"fal-ai/bytedance/seedream/v4.description": "Seedream 4.0 ist ein Bildgenerierungsmodell von ByteDance Seed, das Text- und Bildeingaben unterstützt und hochkontrollierbare, qualitativ hochwertige Bildgenerierung ermöglicht. Es erstellt Bilder aus Texteingaben.",
"fal-ai/flux-kontext/dev.description": "FLUX.1-Modell mit Fokus auf Bildbearbeitung, unterstützt Text- und Bildeingaben.",
"fal-ai/flux-pro/kontext.description": "FLUX.1 Kontext [pro] akzeptiert Texte und Referenzbilder als Eingabe und ermöglicht gezielte lokale Bearbeitungen sowie komplexe globale Szenentransformationen.",
"fal-ai/flux/krea.description": "Flux Krea [dev] ist ein Bildgenerierungsmodell mit ästhetischer Ausrichtung auf realistischere, natürliche Bilder.",
@@ -531,8 +527,8 @@
"fal-ai/hunyuan-image/v3.description": "Ein leistungsstarkes natives multimodales Bildgenerierungsmodell.",
"fal-ai/imagen4/preview.description": "Hochwertiges Bildgenerierungsmodell von Google.",
"fal-ai/nano-banana.description": "Nano Banana ist das neueste, schnellste und effizienteste native multimodale Modell von Google. Es ermöglicht Bildgenerierung und -bearbeitung im Dialog.",
"fal-ai/qwen-image-edit.description": "Ein professionelles Bildbearbeitungsmodell des Qwen-Teams, das semantische und optische Bearbeitungen, präzise chinesische/englische Textbearbeitung, Stilübertragungen, Drehungen und mehr unterstützt.",
"fal-ai/qwen-image.description": "Ein leistungsstarkes Bildgenerierungsmodell des Qwen-Teams mit starker chinesischer Textrendering-Fähigkeit und vielfältigen visuellen Stilen.",
"fal-ai/qwen-image-edit.description": "Ein professionelles Bildbearbeitungsmodell des Qwen-Teams, das semantische und optische Bearbeitungen unterstützt, präzise chinesische und englische Texte bearbeitet und hochwertige Bearbeitungen wie Stilübertragungen und Objektrotation ermöglicht.",
"fal-ai/qwen-image.description": "Ein leistungsstarkes Bildgenerierungsmodell des Qwen-Teams mit beeindruckender chinesischer Textrendering-Fähigkeit und vielfältigen visuellen Stilen.",
"flux-1-schnell.description": "Ein Text-zu-Bild-Modell mit 12 Milliarden Parametern von Black Forest Labs, das latente adversariale Diffusionsdistillation nutzt, um hochwertige Bilder in 14 Schritten zu erzeugen. Es konkurriert mit geschlossenen Alternativen und ist unter Apache-2.0 für persönliche, Forschungs- und kommerzielle Nutzung verfügbar.",
"flux-dev.description": "Open-SourceBildgenerierungsmodell für Forschung und Entwicklung, effizient optimiert für nichtkommerzielle Innovationsforschung.",
"flux-kontext-max.description": "Modernste kontextuelle Bildgenerierung und -bearbeitung, kombiniert Text und Bilder für präzise, kohärente Ergebnisse.",
@@ -574,7 +570,7 @@
"gemini-3-pro-image-preview:image.description": "Gemini 3 Pro Image (Nano Banana Pro) ist Googles Bildgenerierungsmodell und unterstützt auch multimodale Chats.",
"gemini-3-pro-preview.description": "Gemini 3 Pro ist Googles leistungsstärkstes Agenten- und Vibe-Coding-Modell. Es bietet reichhaltigere visuelle Inhalte und tiefere Interaktionen auf Basis modernster logischer Fähigkeiten.",
"gemini-3.1-flash-image-preview.description": "Gemini 3.1 Flash Image (Nano Banana 2) ist Googles schnellstes natives Bildgenerierungsmodell mit Denkunterstützung, konversationaler Bildgenerierung und -bearbeitung.",
"gemini-3.1-flash-image-preview:image.description": "Gemini 3.1 Flash Image (Nano Banana 2) liefert Pro-Level-Bildqualität mit Flash-Geschwindigkeit und unterstützt multimodale Chats.",
"gemini-3.1-flash-image-preview:image.description": "Gemini 3.1 Flash Image (Nano Banana 2) ist Googles schnellstes natives Bildgenerierungsmodell mit Denkunterstützung, konversationaler Bildgenerierung und -bearbeitung.",
"gemini-3.1-flash-lite-preview.description": "Gemini 3.1 Flash-Lite Preview ist Googles kosteneffizientestes multimodales Modell, optimiert für hochvolumige agentische Aufgaben, Übersetzung und Datenverarbeitung.",
"gemini-3.1-pro-preview.description": "Gemini 3.1 Pro Preview verbessert Gemini 3 Pro mit erweiterten Fähigkeiten für logisches Denken und unterstützt mittleres Denklevel.",
"gemini-3.1-pro.description": "Gemini 3.1 Pro von Google — Premium-Multimodalmodell mit 1M Kontextfenster.",
@@ -740,11 +736,9 @@
"grok-4-fast-reasoning.description": "Wir freuen uns, Grok 4 Fast vorzustellen unser neuester Fortschritt bei kosteneffizienten Denkmodellen.",
"grok-4.20-0309-non-reasoning.description": "Eine Non-Reasoning-Variante für einfache Anwendungsfälle.",
"grok-4.20-0309-reasoning.description": "Intelligentes, extrem schnelles Modell, das vor der Antwort aktiv denkt.",
"grok-4.20-beta-0309-non-reasoning.description": "Eine Variante ohne Denkprozesse für einfache Anwendungsfälle.",
"grok-4.20-beta-0309-reasoning.description": "Intelligentes, blitzschnelles Modell, das vor der Antwort überlegt.",
"grok-4.20-multi-agent-0309.description": "Ein Team aus 4 oder 16 Agenten, hervorragend für Rechercheaufgaben. Unterstützt derzeit keine clientseitigen Tools. Unterstützt ausschließlich serverseitige xAI-Tools (z. B. X Search, Web Search Tools) und Remote-MCP-Tools.",
"grok-4.3.description": "Das wahrheitssuchendste große Sprachmodell der Welt",
"grok-4.description": "Unser neuestes und stärkstes Flaggschiff-Modell, das in NLP, Mathematik und logischem Denken herausragt ein idealer Allrounder.",
"grok-4.description": "Das neueste Grok-Flaggschiff mit unübertroffener Leistung in Sprache, Mathematik und Logik — ein wahrer Alleskönner. Derzeit verweist es auf grok-4-0709; aufgrund begrenzter Ressourcen ist der Preis vorübergehend 10 % höher als der offizielle Preis und wird voraussichtlich später wieder auf den offiziellen Preis zurückkehren.",
"grok-code-fast-1.description": "Wir freuen uns, grok-code-fast-1 vorzustellen ein schnelles und kosteneffizientes Denkmodell, das sich besonders für agentenbasiertes Programmieren eignet.",
"grok-imagine-image-pro.description": "Erstellen Sie Bilder aus Textvorgaben, bearbeiten Sie bestehende Bilder mit natürlicher Sprache oder verfeinern Sie Bilder iterativ durch mehrstufige Gespräche.",
"grok-imagine-image.description": "Erstellen Sie Bilder aus Textvorgaben, bearbeiten Sie bestehende Bilder mit natürlicher Sprache oder verfeinern Sie Bilder iterativ durch mehrstufige Gespräche.",
@@ -1233,8 +1227,6 @@
"qwq.description": "QwQ ist ein Schlussfolgerungsmodell aus der Qwen-Familie. Im Vergleich zu standardmäßig instruktionstunierten Modellen bietet es überlegene Denk- und Schlussfolgerungsfähigkeiten, die die Leistung bei nachgelagerten Aufgaben deutlich verbessern insbesondere bei schwierigen Problemen. QwQ-32B ist ein mittelgroßes Modell, das mit führenden Schlussfolgerungsmodellen wie DeepSeek-R1 und o1-mini mithalten kann.",
"qwq_32b.description": "Mittelgroßes Schlussfolgerungsmodell aus der Qwen-Familie. Im Vergleich zu standardmäßig instruktionstunierten Modellen steigern QwQs Denk- und Schlussfolgerungsfähigkeiten die Leistung bei nachgelagerten Aufgaben deutlich insbesondere bei schwierigen Problemen.",
"r1-1776.description": "R1-1776 ist eine nachtrainierte Variante von DeepSeek R1, die darauf ausgelegt ist, unzensierte, objektive und faktenbasierte Informationen bereitzustellen.",
"seedance-1-5-pro-251215.description": "Seedance 1.5 Pro von ByteDance unterstützt Text-zu-Video, Bild-zu-Video (erstes Bild, erstes+letztes Bild) und Audioerzeugung synchronisiert mit visuellen Inhalten.",
"seedream-5-0-260128.description": "ByteDance-Seedream-5.0-lite von BytePlus bietet webgestützte Generierung für Echtzeitinformationen, verbesserte Interpretation komplexer Eingabeaufforderungen und verbesserte Konsistenz von Referenzen für professionelle visuelle Kreationen.",
"solar-mini-ja.description": "Solar Mini (Ja) erweitert Solar Mini mit einem Fokus auf Japanisch und behält dabei eine effiziente und starke Leistung in Englisch und Koreanisch bei.",
"solar-mini.description": "Solar Mini ist ein kompaktes LLM, das GPT-3.5 übertrifft. Es bietet starke mehrsprachige Fähigkeiten in Englisch und Koreanisch und ist eine effiziente Lösung mit kleinem Ressourcenbedarf.",
"solar-pro.description": "Solar Pro ist ein hochintelligentes LLM von Upstage, das auf Befolgen von Anweisungen auf einer einzelnen GPU ausgelegt ist und IFEval-Werte über 80 erreicht. Derzeit wird Englisch unterstützt; die vollständige Veröffentlichung mit erweitertem Sprachsupport und längeren Kontexten war für November 2024 geplant.",
-2
View File
@@ -29,9 +29,7 @@
"agent.layout.switchMessage": "Heute nicht so in Stimmung? Du kannst zum <modeLink><modeText>{{mode}}</modeText></modeLink> wechseln oder <skipLink><skipText>{{skip}}</skipText></skipLink>.",
"agent.modeSwitch.agent": "Konversation",
"agent.modeSwitch.classic": "Klassisch",
"agent.modeSwitch.collapse": "Einklappen",
"agent.modeSwitch.debug": "Debug-Export",
"agent.modeSwitch.expand": "Erweitern",
"agent.modeSwitch.label": "Wählen Sie Ihren Einführungsmodus",
"agent.modeSwitch.reset": "Flow zurücksetzen",
"agent.progress": "{{currentStep}}/{{totalSteps}}",
+1 -10
View File
@@ -256,16 +256,13 @@
"builtins.lobe-skills.apiName.runCommand": "Befehl ausführen",
"builtins.lobe-skills.apiName.searchSkill": "Fähigkeiten suchen",
"builtins.lobe-skills.title": "Fähigkeiten",
"builtins.lobe-task.apiName.addTaskComment": "Kommentar hinzufügen",
"builtins.lobe-task.apiName.createTask": "Aufgabe erstellen",
"builtins.lobe-task.apiName.createTasks": "Aufgaben erstellen",
"builtins.lobe-task.apiName.deleteTask": "Aufgabe löschen",
"builtins.lobe-task.apiName.deleteTaskComment": "Kommentar löschen",
"builtins.lobe-task.apiName.editTask": "Aufgabe bearbeiten",
"builtins.lobe-task.apiName.listTasks": "Aufgaben auflisten",
"builtins.lobe-task.apiName.runTask": "Aufgabe ausführen",
"builtins.lobe-task.apiName.runTasks": "Aufgaben ausführen",
"builtins.lobe-task.apiName.updateTaskComment": "Kommentar aktualisieren",
"builtins.lobe-task.apiName.updateTaskStatus": "Status aktualisieren",
"builtins.lobe-task.apiName.viewTask": "Aufgabe anzeigen",
"builtins.lobe-task.create.subtaskOf": "Unteraufgabe von {{parent}}",
@@ -276,8 +273,6 @@
"builtins.lobe-task.edit.blocksOn": "blockiert durch",
"builtins.lobe-task.edit.description": "Beschreibung aktualisiert",
"builtins.lobe-task.edit.instruction": "Anweisung aktualisiert",
"builtins.lobe-task.edit.parent": "übergeordnet",
"builtins.lobe-task.edit.parentClear": "oberste Ebene",
"builtins.lobe-task.edit.priority": "Priorität",
"builtins.lobe-task.edit.rename": "umbenennen",
"builtins.lobe-task.edit.unassign": "Zuweisung aufheben",
@@ -327,11 +322,6 @@
"builtins.lobe-web-onboarding.inspector.interests_one": "{{count}} Interesse",
"builtins.lobe-web-onboarding.inspector.interests_other": "{{count}} Interessen",
"builtins.lobe-web-onboarding.title": "Benutzer-Onboarding",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.delete": "Löschen",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.deleteLines": "Zeilen löschen",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.insertAt": "Einfügen bei Zeile",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.replace": "Ersetzen",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.replaceLines": "Zeilen ersetzen",
"confirm": "Bestätigen",
"debug.arguments": "Argumente",
"debug.error": "Fehlerprotokoll",
@@ -356,6 +346,7 @@
"detailModal.tabs.settings": "Einstellungen",
"detailModal.title": "Skill-Details",
"dev.confirmDeleteDevPlugin": "Dieser lokale Skill wird dauerhaft gelöscht. Fortfahren?",
"dev.customParams.useProxy.label": "Über Proxy installieren (aktivieren bei CORS-Fehlern, dann erneut versuchen)",
"dev.deleteSuccess": "Skill gelöscht",
"dev.manifest.identifier.desc": "Eindeutige Kennung für den Skill",
"dev.manifest.identifier.label": "Kennung",
-1
View File
@@ -33,7 +33,6 @@
"jina.description": "Jina AI wurde 2020 gegründet und ist ein führendes Unternehmen im Bereich Such-KI. Der Such-Stack umfasst Vektormodelle, Reranker und kleine Sprachmodelle für zuverlässige, hochwertige generative und multimodale Suchanwendungen.",
"kimicodingplan.description": "Kimi Code von Moonshot AI bietet Zugriff auf Kimi-Modelle, darunter K2.5, für Coding-Aufgaben.",
"lmstudio.description": "LM Studio ist eine Desktop-App zur Entwicklung und zum Experimentieren mit LLMs auf dem eigenen Computer.",
"lobehub.description": "LobeHub Cloud verwendet offizielle APIs, um auf KI-Modelle zuzugreifen, und misst die Nutzung mit Credits, die an Modell-Token gebunden sind.",
"longcat.description": "LongCat ist eine Reihe von generativen KI-Großmodellen, die unabhängig von Meituan entwickelt wurden. Sie sind darauf ausgelegt, die Produktivität innerhalb des Unternehmens zu steigern und innovative Anwendungen durch eine effiziente Rechenarchitektur und starke multimodale Fähigkeiten zu ermöglichen.",
"minimax.description": "MiniMax wurde 2021 gegründet und entwickelt allgemeine KI mit multimodalen Foundation-Modellen, darunter Textmodelle mit Billionen Parametern, Sprach- und Bildmodelle sowie Apps wie Hailuo AI.",
"minimaxcodingplan.description": "Der MiniMax Token Plan bietet Zugriff auf MiniMax-Modelle, darunter M2.7, für Coding-Aufgaben im Rahmen eines Festpreis-Abonnements.",
-7
View File
@@ -30,16 +30,9 @@
"agentMarketplace.category.personalLife": "Privatleben",
"agentMarketplace.category.productManagement": "Produktmanagement",
"agentMarketplace.category.salesCustomer": "Vertrieb & Kunden",
"agentMarketplace.inspector.moreCategories_one": "+{{count}}",
"agentMarketplace.inspector.moreCategories_other": "+{{count}}",
"agentMarketplace.inspector.pickCount_one": "{{count}} Agent",
"agentMarketplace.inspector.pickCount_other": "{{count}} Agenten",
"agentMarketplace.picker.empty": "Keine Vorlagen verfügbar.",
"agentMarketplace.picker.failedToLoad": "Vorlagen konnten nicht geladen werden. Bitte versuchen Sie es später erneut.",
"agentMarketplace.picker.summary": "{{filtered}} / {{total}} Vorlagen verfügbar.",
"agentMarketplace.render.alreadyInLibraryTag": "Bereits in der Bibliothek",
"agentMarketplace.render.alreadyInLibrary_one": "{{count}} bereits in der Bibliothek",
"agentMarketplace.render.alreadyInLibrary_other": "{{count}} bereits in der Bibliothek",
"codeInterpreter-legacy.error": "Ausführungsfehler",
"codeInterpreter-legacy.executing": "Wird ausgeführt...",
"codeInterpreter-legacy.files": "Dateien:",
+1 -1
View File
@@ -35,7 +35,7 @@
"authModal.title": "Session Expired",
"betterAuth.captcha.continue": "Continue",
"betterAuth.captcha.description": "Complete the security verification below. We will continue your sign up or sign in automatically.",
"betterAuth.captcha.pendingDescription": "Verification did not complete. Please try the challenge again.",
"betterAuth.captcha.pendingDescription": "Please complete the verification first, then continue.",
"betterAuth.captcha.title": "Security verification required",
"betterAuth.errors.confirmPasswordRequired": "Please confirm your password",
"betterAuth.errors.emailExists": "This email is already registered. Please sign in instead",
-1
View File
@@ -27,7 +27,6 @@
"codes.RATE_LIMIT_EXCEEDED": "Too many requests, please try again later",
"codes.SESSION_EXPIRED": "Session has expired, please log in again",
"codes.SOCIAL_ACCOUNT_ALREADY_LINKED": "This social account is already linked to another user",
"codes.TEMPORARY_EMAIL_NOT_ALLOWED": "Temporary email addresses are not supported. Please use a regular email address. Repeated attempts may block this network.",
"codes.UNEXPECTED_ERROR": "An unexpected error occurred, please try again",
"codes.UNKNOWN": "An unknown error occurred, please try again or contact support",
"codes.USER_ALREADY_EXISTS": "User already exists",
-4
View File
@@ -84,9 +84,6 @@
"verify.confirm.fields.platformAccount": "{{platform}} account",
"verify.confirm.fields.workspace": "Workspace",
"verify.confirm.noAgents": "You don't have any agents yet. Create one in LobeHub, then come back to finish linking.",
"verify.confirm.relink.description": "This LobeHub account is already linked to {{platform}} account {{account}}. To link a different {{platform}} account, disconnect the current one first in Settings → Messenger.",
"verify.confirm.relink.manage": "Open Messenger settings",
"verify.confirm.relink.title": "Another {{platform}} account is already linked",
"verify.confirm.title": "Confirm linking",
"verify.confirm.workspace": "Workspace: {{workspace}}",
"verify.error.alreadyLinkedToOther": "This account is already linked to a different LobeHub account. Sign in to that account first.",
@@ -94,7 +91,6 @@
"verify.error.generic": "Something went wrong. Please try again.",
"verify.error.missingToken": "Invalid link. Open this page from the bot.",
"verify.error.title": "Unable to confirm link",
"verify.error.unlinkBeforeRelink": "This LobeHub account is already linked to another account on this platform. Disconnect it in Settings → Messenger before linking a new one.",
"verify.labRequired.description": "Messenger is currently a Labs feature. Enable it in Settings → Advanced → Labs and reload this page.",
"verify.labRequired.openSettings": "Open Labs settings",
"verify.labRequired.title": "Enable Messenger to continue",
+13 -21
View File
@@ -106,7 +106,6 @@
"MiniMax-Hailuo-2.3.description": "Brand-new video generation model with comprehensive upgrades in body motion, physical realism, and instruction following.",
"MiniMax-M1.description": "A new in-house reasoning model with 80K chain-of-thought and 1M input, delivering performance comparable to top global models.",
"MiniMax-M2-Stable.description": "Built for efficient coding and agent workflows, with higher concurrency for commercial use.",
"MiniMax-M2.1-Lightning.description": "Powerful multilingual programming capabilities with faster and more efficient inference.",
"MiniMax-M2.1-highspeed.description": "Powerful multilingual programming capabilities, comprehensively upgraded programming experience. Faster and more efficient.",
"MiniMax-M2.1.description": "MiniMax-M2.1 is a flagship open-source large model from MiniMax, focusing on solving complex real-world tasks. Its core strengths are multi-language programming capabilities and the ability to solve complex tasks as an Agent.",
"MiniMax-M2.5-highspeed.description": "MiniMax M2.5 Highspeed: Same performance as M2.5 with faster inference.",
@@ -320,13 +319,13 @@
"claude-3-haiku-20240307.description": "Claude 3 Haiku is Anthropics fastest and most compact model, designed for near-instant responses with fast, accurate performance.",
"claude-3-opus-20240229.description": "Claude 3 Opus is Anthropics most powerful model for highly complex tasks, excelling in performance, intelligence, fluency, and comprehension.",
"claude-3-sonnet-20240229.description": "Claude 3 Sonnet balances intelligence and speed for enterprise workloads, delivering high utility at lower cost and reliable large-scale deployment.",
"claude-haiku-4-5-20251001.description": "Claude Haiku 4.5 is Anthropic's fastest and most intelligent Haiku model, with lightning speed and extended thinking.",
"claude-haiku-4-5-20251001.description": "Claude Haiku 4.5 is Anthropics fastest and smartest Haiku model, with lightning speed and extended reasoning.",
"claude-haiku-4-5.description": "Claude Haiku 4.5 by Anthropic — next-gen Haiku with enhanced reasoning and vision.",
"claude-haiku-4.5.description": "Claude Haiku 4.5 is Anthropics fastest and smartest Haiku model, with lightning speed and extended reasoning.",
"claude-opus-4-1-20250805-thinking.description": "Claude Opus 4.1 Thinking is an advanced variant that can reveal its reasoning process.",
"claude-opus-4-1-20250805.description": "Claude Opus 4.1 is Anthropic's latest and most capable model for highly complex tasks, excelling in performance, intelligence, fluency, and understanding.",
"claude-opus-4-1-20250805.description": "Claude Opus 4.1 is Anthropics latest and most capable model for highly complex tasks, excelling in performance, intelligence, fluency, and understanding.",
"claude-opus-4-1.description": "Claude Opus 4.1 by Anthropic — premium reasoning model with deep analysis capabilities.",
"claude-opus-4-20250514.description": "Claude Opus 4 is Anthropic's most powerful model for highly complex tasks, excelling in performance, intelligence, fluency, and understanding.",
"claude-opus-4-20250514.description": "Claude Opus 4 is Anthropics most powerful model for highly complex tasks, excelling in performance, intelligence, fluency, and comprehension.",
"claude-opus-4-5-20251101.description": "Claude Opus 4.5 is Anthropics flagship model, combining outstanding intelligence with scalable performance, ideal for complex tasks requiring the highest-quality responses and reasoning.",
"claude-opus-4-5.description": "Claude Opus 4.5 by Anthropic — flagship model with top-tier reasoning and coding.",
"claude-opus-4-6.description": "Claude Opus 4.6 by Anthropic — 1M context window flagship with advanced reasoning.",
@@ -335,8 +334,8 @@
"claude-opus-4.6-fast.description": "Claude Opus 4.6 is Anthropics most intelligent model for building agents and coding.",
"claude-opus-4.6.description": "Claude Opus 4.6 is Anthropics most intelligent model for building agents and coding.",
"claude-sonnet-4-20250514-thinking.description": "Claude Sonnet 4 Thinking can produce near-instant responses or extended step-by-step thinking with visible process.",
"claude-sonnet-4-20250514.description": "Claude Sonnet 4 is Anthropic's most intelligent model to date, offering near-instant responses or extended step-by-step thinking with fine-grained control for API users.",
"claude-sonnet-4-5-20250929.description": "Claude Sonnet 4.5 is Anthropic's most intelligent model to date.",
"claude-sonnet-4-20250514.description": "Claude Sonnet 4 can produce near-instant responses or extended step-by-step thinking with visible process.",
"claude-sonnet-4-5-20250929.description": "Claude Sonnet 4.5 is Anthropics most intelligent model to date.",
"claude-sonnet-4-5.description": "Claude Sonnet 4.5 by Anthropic — improved Sonnet with enhanced coding performance.",
"claude-sonnet-4-6.description": "Claude Sonnet 4.6 by Anthropic — latest Sonnet with superior coding and tool use.",
"claude-sonnet-4.5.description": "Claude Sonnet 4.5 is Anthropics most intelligent model to date.",
@@ -409,7 +408,7 @@
"deepseek-ai/deepseek-llm-67b-chat.description": "DeepSeek LLM Chat (67B) is an innovative model offering deep language understanding and interaction.",
"deepseek-ai/deepseek-v3.1-terminus.description": "DeepSeek V3.1 is a next-gen reasoning model with stronger complex reasoning and chain-of-thought for deep analysis tasks.",
"deepseek-ai/deepseek-v3.2.description": "DeepSeek V3.2 is a next-gen reasoning model with stronger complex reasoning and chain-of-thought capabilities.",
"deepseek-chat.description": "Compatibility alias for DeepSeek V4 Flash non-thinking mode. Slated for deprecation — use DeepSeek V4 Flash instead.",
"deepseek-chat.description": "A new open-source model combining general and code abilities. It preserves the chat models general dialogue and the coder models strong coding, with better preference alignment. DeepSeek-V2.5 also improves writing and instruction following.",
"deepseek-coder-33B-instruct.description": "DeepSeek Coder 33B is a code language model trained on 2T tokens (87% code, 13% Chinese/English text). It introduces a 16K context window and fill-in-the-middle tasks, providing project-level code completion and snippet infilling.",
"deepseek-coder-v2.description": "DeepSeek Coder V2 is an open-source MoE code model that performs strongly on coding tasks, comparable to GPT-4 Turbo.",
"deepseek-coder-v2:236b.description": "DeepSeek Coder V2 is an open-source MoE code model that performs strongly on coding tasks, comparable to GPT-4 Turbo.",
@@ -431,7 +430,7 @@
"deepseek-r1-fast-online.description": "DeepSeek R1 fast full version with real-time web search, combining 671B-scale capability and faster response.",
"deepseek-r1-online.description": "DeepSeek R1 full version with 671B parameters and real-time web search, offering stronger understanding and generation.",
"deepseek-r1.description": "DeepSeek-R1 uses cold-start data before RL and performs comparably to OpenAI-o1 on math, coding, and reasoning.",
"deepseek-reasoner.description": "Compatibility alias for DeepSeek V4 Flash thinking mode. Slated for deprecation — use DeepSeek V4 Flash instead.",
"deepseek-reasoner.description": "Compatibility alias for DeepSeek V4 Flash thinking mode. Slated for deprecation — use deepseek-v4-flash instead.",
"deepseek-v2.description": "DeepSeek V2 is an efficient MoE model for cost-effective processing.",
"deepseek-v2:236b.description": "DeepSeek V2 236B is DeepSeeks code-focused model with strong code generation.",
"deepseek-v3-0324.description": "DeepSeek-V3-0324 is a 671B-parameter MoE model with standout strengths in programming and technical capability, context understanding, and long-text handling.",
@@ -496,8 +495,6 @@
"doubao-seedream-4-0-250828.description": "Seedream 4.0 is an image generation model from ByteDance Seed, supporting text and image inputs with highly controllable, high-quality image generation. It generates images from text prompts.",
"doubao-seedream-4-5-251128.description": "Seedream 4.5 is ByteDances latest multimodal image model, integrating text-to-image, image-to-image, and batch image generation capabilities, while incorporating commonsense and reasoning abilities. Compared to the previous 4.0 version, it delivers significantly improved generation quality, with better editing consistency and multi-image fusion. It offers more precise control over visual details, producing small text and small faces more naturally, and achieves more harmonious layout and color, enhancing overall aesthetics.",
"doubao-seedream-5-0-260128.description": "Doubao-Seedream-5.0-lite is ByteDances latest image-generation model. For the first time, it integrates online retrieval capabilities, allowing it to incorporate real-time web information and enhance the timeliness of generated images. The models intelligence has also been upgraded, enabling precise interpretation of complex instructions and visual content. Additionally, it offers improved global knowledge coverage, reference consistency, and generation quality in professional scenarios, better meeting enterprise-level visual creation needs.",
"dreamina-seedance-2-0-260128.description": "Seedance 2.0 by ByteDance is the most powerful video generation model, supporting multimodal reference video generation, video editing, video extension, text-to-video, and image-to-video with synchronized audio.",
"dreamina-seedance-2-0-fast-260128.description": "Seedance 2.0 Fast by ByteDance offers the same capabilities as Seedance 2.0 with faster generation speeds at a more competitive price.",
"emohaa.description": "Emohaa is a mental health model with professional counseling abilities to help users understand emotional issues.",
"ernie-4.5-0.3b.description": "ERNIE 4.5 0.3B is an open-source lightweight model for local and customized deployment.",
"ernie-4.5-8k-preview.description": "ERNIE 4.5 8K Preview is an 8K context preview model for evaluating ERNIE 4.5.",
@@ -522,8 +519,7 @@
"ernie-x1-turbo-32k.description": "ERNIE X1 Turbo 32K is a fast thinking model with 32K context for complex reasoning and multi-turn chat.",
"ernie-x1.1-preview.description": "ERNIE X1.1 Preview is a thinking-model preview for evaluation and testing.",
"ernie-x1.1.description": "ERNIE X1.1 is a thinking-model preview for evaluation and testing.",
"fal-ai/bytedance/seedream/v4.5.description": "Seedream 4.5, built by ByteDance Seed team, supports multi-image editing and composition. Features enhanced subject consistency, precise instruction following, spatial logic understanding, aesthetic expression, poster layout and logo design with high-precision text-image rendering.",
"fal-ai/bytedance/seedream/v4.description": "Seedream 4.0, built by ByteDance Seed, supports text and image inputs for highly controllable, high-quality image generation from prompts.",
"fal-ai/bytedance/seedream/v4.description": "Seedream 4.0 is an image generation model from ByteDance Seed, supporting text and image inputs with highly controllable, high-quality image generation. It generates images from text prompts.",
"fal-ai/flux-kontext/dev.description": "FLUX.1 model focused on image editing, supporting text and image inputs.",
"fal-ai/flux-pro/kontext.description": "FLUX.1 Kontext [pro] accepts text and reference images as input, enabling targeted local edits and complex global scene transformations.",
"fal-ai/flux/krea.description": "Flux Krea [dev] is an image generation model with an aesthetic bias toward more realistic, natural images.",
@@ -531,8 +527,8 @@
"fal-ai/hunyuan-image/v3.description": "A powerful native multimodal image generation model.",
"fal-ai/imagen4/preview.description": "High-quality image generation model from Google.",
"fal-ai/nano-banana.description": "Nano Banana is Googles newest, fastest, and most efficient native multimodal model, enabling image generation and editing through conversation.",
"fal-ai/qwen-image-edit.description": "A professional image editing model from the Qwen team, supporting semantic and appearance edits, precise Chinese/English text editing, style transfer, rotation, and more.",
"fal-ai/qwen-image.description": "A powerful image generation model from the Qwen team with strong Chinese text rendering and diverse visual styles.",
"fal-ai/qwen-image-edit.description": "A professional image editing model from the Qwen team that supports semantic and appearance edits, precisely edits Chinese and English text, and enables high-quality edits such as style transfer and object rotation.",
"fal-ai/qwen-image.description": "A powerful image generation model from the Qwen team with impressive Chinese text rendering and diverse visual styles.",
"flux-1-schnell.description": "A 12B-parameter text-to-image model from Black Forest Labs using latent adversarial diffusion distillation to generate high-quality images in 1-4 steps. It rivals closed alternatives and is released under Apache-2.0 for personal, research, and commercial use.",
"flux-dev.description": "Open-source R&D image generation model, efficiently optimized for non-commercial innovation research.",
"flux-kontext-max.description": "State-of-the-art contextual image generation and editing, combining text and images for precise, coherent results.",
@@ -571,10 +567,10 @@
"gemini-3-flash-preview.description": "Gemini 3 Flash is the smartest model built for speed, combining cutting-edge intelligence with excellent search grounding.",
"gemini-3-flash.description": "Gemini 3 Flash by Google — ultra-fast model with multimodal input support.",
"gemini-3-pro-image-preview.description": "Gemini 3 Pro Image (Nano Banana Pro) is Google's image generation model that also supports multimodal dialogue.",
"gemini-3-pro-image-preview:image.description": "Gemini 3 Pro Image (Nano Banana Pro) is Google's image generation model and also supports multimodal chat.",
"gemini-3-pro-image-preview:image.description": "Gemini 3 Pro Image (Nano Banana Pro) is Googles image generation model and also supports multimodal chat.",
"gemini-3-pro-preview.description": "Gemini 3 Pro is Googles most powerful agent and vibe-coding model, delivering richer visuals and deeper interaction on top of state-of-the-art reasoning.",
"gemini-3.1-flash-image-preview.description": "Gemini 3.1 Flash Image (Nano Banana 2) is Google's fastest native image generation model with thinking support, conversational image generation and editing.",
"gemini-3.1-flash-image-preview:image.description": "Gemini 3.1 Flash Image (Nano Banana 2) delivers Pro-level image quality at Flash speed with multimodal chat support.",
"gemini-3.1-flash-image-preview:image.description": "Gemini 3.1 Flash Image (Nano Banana 2) is Google's fastest native image generation model with thinking support, conversational image generation and editing.",
"gemini-3.1-flash-lite-preview.description": "Gemini 3.1 Flash-Lite Preview is Google's most cost-efficient multimodal model, optimized for high-volume agentic tasks, translation, and data processing.",
"gemini-3.1-pro-preview.description": "Gemini 3.1 Pro Preview improves on Gemini 3 Pro with enhanced reasoning capabilities and adds medium thinking level support.",
"gemini-3.1-pro.description": "Gemini 3.1 Pro by Google — premium multimodal model with 1M context window.",
@@ -740,11 +736,9 @@
"grok-4-fast-reasoning.description": "Were excited to release Grok 4 Fast, our latest progress in cost-effective reasoning models.",
"grok-4.20-0309-non-reasoning.description": "A non-reasoning variant for simple use cases",
"grok-4.20-0309-reasoning.description": "Intelligent, blazing-fast model that reasons before responding",
"grok-4.20-beta-0309-non-reasoning.description": "A non-reasoning variant for simple use cases",
"grok-4.20-beta-0309-reasoning.description": "Intelligent, blazing-fast model that reasons before responding",
"grok-4.20-multi-agent-0309.description": "A team of 4 or 16 agents, Excels at research use cases, Does not currently support client-side tools. Only supports xAI server side tools (eg X Search, Web Search tools) and remote MCP tools.",
"grok-4.3.description": "The most truth-seeking large language model in the world",
"grok-4.description": "Our newest and strongest flagship model, excelling in NLP, math, and reasoning—an ideal all-rounder.",
"grok-4.description": "Latest Grok flagship with unmatched performance in language, math, and reasoning — a true all-rounder. Currently points to grok-4-0709; due to limited resources it is temporarily 10% higher than official pricing and is expected to return to official price later.",
"grok-code-fast-1.description": "Were excited to launch grok-code-fast-1, a fast and cost-effective reasoning model that excels at agentic coding.",
"grok-imagine-image-pro.description": "Generate images from text prompts, edit existing images with natural language, or iteratively refine images through multi-turn conversations.",
"grok-imagine-image.description": "Generate images from text prompts, edit existing images with natural language, or iteratively refine images through multi-turn conversations.",
@@ -1233,8 +1227,6 @@
"qwq.description": "QwQ is a reasoning model in the Qwen family. Compared with standard instruction-tuned models, it brings thinking and reasoning abilities that significantly improve downstream performance, especially on hard problems. QwQ-32B is a mid-sized reasoning model that competes well with top reasoning models like DeepSeek-R1 and o1-mini.",
"qwq_32b.description": "Mid-sized reasoning model in the Qwen family. Compared with standard instruction-tuned models, QwQs thinking and reasoning abilities significantly boost downstream performance, especially on hard problems.",
"r1-1776.description": "R1-1776 is a post-trained variant of DeepSeek R1 designed to provide uncensored, unbiased factual information.",
"seedance-1-5-pro-251215.description": "Seedance 1.5 Pro by ByteDance supports text-to-video, image-to-video (first frame, first+last frame), and audio generation synchronized with visuals.",
"seedream-5-0-260128.description": "ByteDance-Seedream-5.0-lite by BytePlus features web-retrieval-augmented generation for real-time information, enhanced complex prompt interpretation, and improved reference consistency for professional visual creation.",
"solar-mini-ja.description": "Solar Mini (Ja) extends Solar Mini with a focus on Japanese while maintaining efficient, strong performance in English and Korean.",
"solar-mini.description": "Solar Mini is a compact LLM that outperforms GPT-3.5, with strong multilingual capability supporting English and Korean, offering an efficient small-footprint solution.",
"solar-pro.description": "Solar Pro is a high-intelligence LLM from Upstage, focused on instruction following on a single GPU, with IFEval scores above 80. It currently supports English; the full release was planned for November 2024 with expanded language support and longer context.",
-2
View File
@@ -29,9 +29,7 @@
"agent.layout.switchMessage": "Not feeling it today? You can switch to <modeLink><modeText>{{mode}}</modeText></modeLink> or <skipLink><skipText>{{skip}}</skipText></skipLink>.",
"agent.modeSwitch.agent": "Conversational",
"agent.modeSwitch.classic": "Classic",
"agent.modeSwitch.collapse": "Collapse",
"agent.modeSwitch.debug": "Debug Export",
"agent.modeSwitch.expand": "Expand",
"agent.modeSwitch.label": "Choose your onboarding mode",
"agent.modeSwitch.reset": "Reset Flow",
"agent.progress": "{{currentStep}}/{{totalSteps}}",
+1 -5
View File
@@ -256,16 +256,13 @@
"builtins.lobe-skills.apiName.runCommand": "Run Command",
"builtins.lobe-skills.apiName.searchSkill": "Search Skills",
"builtins.lobe-skills.title": "Skills",
"builtins.lobe-task.apiName.addTaskComment": "Add comment",
"builtins.lobe-task.apiName.createTask": "Create task",
"builtins.lobe-task.apiName.createTasks": "Create tasks",
"builtins.lobe-task.apiName.deleteTask": "Delete task",
"builtins.lobe-task.apiName.deleteTaskComment": "Delete comment",
"builtins.lobe-task.apiName.editTask": "Edit task",
"builtins.lobe-task.apiName.listTasks": "List tasks",
"builtins.lobe-task.apiName.runTask": "Run task",
"builtins.lobe-task.apiName.runTasks": "Run tasks",
"builtins.lobe-task.apiName.updateTaskComment": "Update comment",
"builtins.lobe-task.apiName.updateTaskStatus": "Update status",
"builtins.lobe-task.apiName.viewTask": "View task",
"builtins.lobe-task.create.subtaskOf": "Subtask of {{parent}}",
@@ -276,8 +273,6 @@
"builtins.lobe-task.edit.blocksOn": "blocks on",
"builtins.lobe-task.edit.description": "description updated",
"builtins.lobe-task.edit.instruction": "instruction updated",
"builtins.lobe-task.edit.parent": "parent",
"builtins.lobe-task.edit.parentClear": "top level",
"builtins.lobe-task.edit.priority": "priority",
"builtins.lobe-task.edit.rename": "rename",
"builtins.lobe-task.edit.unassign": "unassign",
@@ -356,6 +351,7 @@
"detailModal.tabs.settings": "Settings",
"detailModal.title": "Skill details",
"dev.confirmDeleteDevPlugin": "This local Skill will be deleted permanently. Continue?",
"dev.customParams.useProxy.label": "Install via proxy (enable if encountering CORS errors, then retry)",
"dev.deleteSuccess": "Skill deleted",
"dev.manifest.identifier.desc": "Unique identifier for the Skill",
"dev.manifest.identifier.label": "Identifier",
-1
View File
@@ -33,7 +33,6 @@
"jina.description": "Founded in 2020, Jina AI is a leading search AI company. Its search stack includes vector models, rerankers, and small language models to build reliable, high-quality generative and multimodal search apps.",
"kimicodingplan.description": "Kimi Code from Moonshot AI provides access to Kimi models including K2.5 for coding tasks.",
"lmstudio.description": "LM Studio is a desktop app for developing and experimenting with LLMs on your computer.",
"lobehub.description": "LobeHub Cloud uses official APIs to access AI models and measures usage with Credits tied to model tokens.",
"longcat.description": "LongCat is a series of generative AI large models independently developed by Meituan. It is designed to enhance internal enterprise productivity and enable innovative applications through an efficient computational architecture and strong multimodal capabilities.",
"minimax.description": "Founded in 2021, MiniMax builds general-purpose AI with multimodal foundation models, including trillion-parameter MoE text models, speech models, and vision models, along with apps like Hailuo AI.",
"minimaxcodingplan.description": "MiniMax Token Plan provides access to MiniMax models including M2.7 for coding tasks via a fixed-fee subscription.",
+1 -1
View File
@@ -214,7 +214,7 @@
"schedule.daily": "Every day at {{time}}",
"schedule.editableAfterCreateTooltip": "You can adjust the schedule after creating the task.",
"schedule.weekly": "Every {{weekday}} at {{time}}",
"section.title": "Try these tasks",
"section.title": "Try these scheduled tasks",
"seo-weekly-report.description": "Every Monday, ranking movement, emerging keywords, and pages worth refreshing.",
"seo-weekly-report.prompt": "Every Monday at 09:00, give me a lightweight SEO weekly: top ranking movers (up/down), 5 emerging keywords worth targeting, and 3 existing pages ripe for a content refresh.",
"seo-weekly-report.title": "SEO weekly report",
+1 -1
View File
@@ -35,7 +35,7 @@
"authModal.title": "Sesión expirada",
"betterAuth.captcha.continue": "Continuar",
"betterAuth.captcha.description": "Complete la verificación de seguridad a continuación. Continuaremos con su registro o inicio de sesión automáticamente.",
"betterAuth.captcha.pendingDescription": "La verificación no se completó. Vuelva a intentar el desafío.",
"betterAuth.captcha.pendingDescription": "Por favor, complete la verificación primero y luego continúe.",
"betterAuth.captcha.title": "Se requiere verificación de seguridad",
"betterAuth.errors.confirmPasswordRequired": "Por favor, confirme su contraseña",
"betterAuth.errors.emailExists": "Este correo ya está registrado. Por favor, inicie sesión",
-1
View File
@@ -27,7 +27,6 @@
"codes.RATE_LIMIT_EXCEEDED": "Demasiadas solicitudes, por favor intenta más tarde",
"codes.SESSION_EXPIRED": "La sesión ha expirado, por favor inicia sesión de nuevo",
"codes.SOCIAL_ACCOUNT_ALREADY_LINKED": "Esta cuenta social ya está vinculada a otro usuario",
"codes.TEMPORARY_EMAIL_NOT_ALLOWED": "No se admiten direcciones de correo electrónico temporales. Por favor, utiliza una dirección de correo electrónico regular. Los intentos repetidos pueden bloquear esta red.",
"codes.UNEXPECTED_ERROR": "Ocurrió un error inesperado, por favor intenta de nuevo",
"codes.UNKNOWN": "Ocurrió un error desconocido, intenta de nuevo o contacta con soporte",
"codes.USER_ALREADY_EXISTS": "El usuario ya existe",
+4 -15
View File
@@ -673,14 +673,14 @@
"tokenTag.used": "Usado",
"tool.intervention.approvalMode": "Modo de aprobación",
"tool.intervention.approve": "Aprobar",
"tool.intervention.approveAndRemember": "Aprobar y recordar",
"tool.intervention.approveOnce": "Aprobar solo esta vez",
"tool.intervention.mode.allowList": "Lista permitida",
"tool.intervention.mode.allowListDesc": "Ejecutar automáticamente solo herramientas aprobadas",
"tool.intervention.mode.autoRun": "Aprobación automática",
"tool.intervention.mode.autoRunDesc": "Aprobar automáticamente todas las ejecuciones de herramientas",
"tool.intervention.mode.manual": "Manual",
"tool.intervention.mode.manualDesc": "Requiere aprobación manual para cada invocación",
"tool.intervention.onboarding.agentIdentity.editHint": "Puedes editar el nombre o el avatar directamente abajo.",
"tool.intervention.onboarding.agentIdentity.namePlaceholder": "Nombre del agente",
"tool.intervention.onboarding.agentIdentity.title": "Confirmar actualización de identidad del agente",
"tool.intervention.onboarding.agentIdentity.titleAvatarOnly": "Actualizaré mi avatar",
"tool.intervention.onboarding.agentIdentity.titleNameOnly": "Actualizaré mi nombre",
@@ -690,15 +690,14 @@
"tool.intervention.onboarding.userProfile.fullName": "Nombre completo",
"tool.intervention.onboarding.userProfile.responseLanguage": "Idioma de respuesta",
"tool.intervention.onboarding.userProfile.title": "Confirma la actualización de tu perfil",
"tool.intervention.optionApprove": "Aprobar",
"tool.intervention.pending": "Pendiente",
"tool.intervention.reject": "Rechazar",
"tool.intervention.rejectAndContinue": "Rechazar e intentar de nuevo",
"tool.intervention.rejectOnly": "Rechazar",
"tool.intervention.rejectReasonPlaceholder": "Una razón ayuda al agente a entender tus límites y mejorar sus acciones futuras",
"tool.intervention.rejectTitle": "Rechazar esta llamada de habilidad",
"tool.intervention.rejectedWithReason": "Esta llamada de habilidad fue rechazada: {{reason}}",
"tool.intervention.rememberSimilar": "No volver a preguntar para acciones similares",
"tool.intervention.scrollToIntervention": "Ver",
"tool.intervention.submit": "Enviar",
"tool.intervention.toolAbort": "Cancelaste esta llamada de habilidad",
"tool.intervention.toolRejected": "Esta llamada de habilidad fue rechazada",
"tool.intervention.viewParameters": "Ver parámetros ({{count}})",
@@ -810,9 +809,7 @@
"workflow.toolDisplayName.searchLocalFiles": "Archivos buscados",
"workflow.toolDisplayName.searchSkill": "Habilidades buscadas",
"workflow.toolDisplayName.searchUserMemory": "Memoria consultada",
"workflow.toolDisplayName.showAgentMarketplace": "Equipo de agentes ensamblado",
"workflow.toolDisplayName.solve": "Ecuación resuelta",
"workflow.toolDisplayName.submitAgentPick": "Agentes seleccionados",
"workflow.toolDisplayName.updateAgent": "Agente actualizado",
"workflow.toolDisplayName.updateDocument": "Actualizó un documento",
"workflow.toolDisplayName.updateIdentityMemory": "Memoria actualizada",
@@ -851,14 +848,6 @@
"workingPanel.resources.renameEmpty": "Title cannot be empty",
"workingPanel.resources.renameError": "Failed to rename document",
"workingPanel.resources.renameSuccess": "Document renamed",
"workingPanel.resources.tree.createError": "Error al crear",
"workingPanel.resources.tree.moveError": "Error al mover",
"workingPanel.resources.tree.newDocument": "Nuevo documento",
"workingPanel.resources.tree.newFolder": "Nueva carpeta",
"workingPanel.resources.tree.parentMissing": "La carpeta principal no está disponible",
"workingPanel.resources.tree.rename": "Renombrar",
"workingPanel.resources.tree.untitledDocument": "Documento sin título",
"workingPanel.resources.tree.untitledFolder": "Carpeta sin título",
"workingPanel.resources.updatedAt": "Actualizado {{time}}",
"workingPanel.resources.viewMode.list": "Vista de lista",
"workingPanel.resources.viewMode.tree": "Vista de árbol",
-1
View File
@@ -114,7 +114,6 @@
"response.ProviderBizError": "Error al solicitar el servicio {{provider}}. Intenta solucionarlo o vuelve a intentarlo.",
"response.ProviderContentModeration": "La verificación de políticas de contenido ha fallado. Revisa tu solicitud y vuelve a intentarlo.",
"response.ProviderContentModerationWarning": "Se han detectado infracciones reiteradas de las políticas. Un uso indebido adicional puede restringir tu cuenta.",
"response.ProviderImageContentModerationWarning": "Se han detectado rechazos repetidos de seguridad de imágenes. Solicitudes similares pueden pausar temporalmente la generación de imágenes.",
"response.QuotaLimitReached": "Lo sentimos, se alcanzó el límite de uso de tokens o solicitudes para esta clave.",
"response.QuotaLimitReachedCloud": "El servicio del modelo está actualmente bajo una carga elevada. Por favor, inténtalo de nuevo más tarde.",
"response.ServerAgentRuntimeError": "Lo sentimos, el servicio Agent no está disponible. Inténtalo más tarde o contáctanos.",
-4
View File
@@ -84,9 +84,6 @@
"verify.confirm.fields.platformAccount": "Cuenta de {{platform}}",
"verify.confirm.fields.workspace": "Espacio de trabajo",
"verify.confirm.noAgents": "Aún no tienes agentes. Crea uno en LobeHub y luego regresa para finalizar la vinculación.",
"verify.confirm.relink.description": "Esta cuenta de LobeHub ya está vinculada a la cuenta de Telegram {{account}}. Para vincular una cuenta de Telegram diferente, primero desconecta la actual en Configuración → Messenger.",
"verify.confirm.relink.manage": "Abrir configuración de Messenger",
"verify.confirm.relink.title": "Otra cuenta de Telegram ya está vinculada",
"verify.confirm.title": "Confirmar vinculación",
"verify.confirm.workspace": "Espacio de trabajo: {{workspace}}",
"verify.error.alreadyLinkedToOther": "Esta cuenta ya está vinculada a una cuenta diferente de LobeHub. Inicia sesión en esa cuenta primero.",
@@ -94,7 +91,6 @@
"verify.error.generic": "Algo salió mal. Por favor, inténtalo de nuevo.",
"verify.error.missingToken": "Enlace no válido. Abre esta página desde el bot.",
"verify.error.title": "No se pudo confirmar la vinculación",
"verify.error.unlinkBeforeRelink": "Esta cuenta de LobeHub ya está vinculada a otra cuenta de Telegram. Desconéctala en Configuración → Messenger antes de vincular una nueva.",
"verify.labRequired.description": "Messenger es actualmente una función de Labs. Actívala en Configuración → Avanzado → Labs y recarga esta página.",
"verify.labRequired.openSettings": "Abrir configuración de Labs",
"verify.labRequired.title": "Habilita Messenger para continuar",
+10 -18
View File
@@ -106,7 +106,6 @@
"MiniMax-Hailuo-2.3.description": "Nuevo modelo de generación de video con mejoras integrales en movimiento corporal, realismo físico y seguimiento de instrucciones.",
"MiniMax-M1.description": "Nuevo modelo de razonamiento interno con 80K de cadena de pensamiento y 1M de entrada, con rendimiento comparable a los mejores modelos globales.",
"MiniMax-M2-Stable.description": "Diseñado para codificación eficiente y flujos de trabajo de agentes, con mayor concurrencia para uso comercial.",
"MiniMax-M2.1-Lightning.description": "Potentes capacidades de programación multilingüe con inferencia más rápida y eficiente.",
"MiniMax-M2.1-highspeed.description": "Potentes capacidades de programación multilingüe, con una experiencia de programación completamente mejorada. Más rápido y eficiente.",
"MiniMax-M2.1.description": "MiniMax-M2.1 es un modelo insignia de código abierto de MiniMax, enfocado en resolver tareas complejas del mundo real. Sus principales fortalezas son sus capacidades de programación multilingüe y su habilidad para resolver tareas complejas como un Agente.",
"MiniMax-M2.5-highspeed.description": "MiniMax M2.5 Highspeed: Mismo rendimiento que M2.5 con inferencia más rápida.",
@@ -320,11 +319,11 @@
"claude-3-haiku-20240307.description": "Claude 3 Haiku es el modelo más rápido y compacto de Anthropic, diseñado para respuestas casi instantáneas con rendimiento rápido y preciso.",
"claude-3-opus-20240229.description": "Claude 3 Opus es el modelo más potente de Anthropic para tareas altamente complejas, destacando en rendimiento, inteligencia, fluidez y comprensión.",
"claude-3-sonnet-20240229.description": "Claude 3 Sonnet equilibra inteligencia y velocidad para cargas de trabajo empresariales, ofreciendo alta utilidad a menor costo y despliegue confiable a gran escala.",
"claude-haiku-4-5-20251001.description": "Claude Haiku 4.5 es el modelo Haiku más rápido e inteligente de Anthropic, con velocidad relámpago y pensamiento extendido.",
"claude-haiku-4-5-20251001.description": "Claude Haiku 4.5 es el modelo Haiku más rápido e inteligente de Anthropic, con velocidad relámpago y razonamiento extendido.",
"claude-haiku-4-5.description": "Claude Haiku 4.5 de Anthropic: Haiku de nueva generación con razonamiento y visión mejorados.",
"claude-haiku-4.5.description": "Claude Haiku 4.5 es el modelo Haiku más rápido e inteligente de Anthropic, con velocidad relámpago y razonamiento extendido.",
"claude-opus-4-1-20250805-thinking.description": "Claude Opus 4.1 Thinking es una variante avanzada que puede mostrar su proceso de razonamiento.",
"claude-opus-4-1-20250805.description": "Claude Opus 4.1 es el modelo más reciente y avanzado de Anthropic para tareas altamente complejas, destacando en rendimiento, inteligencia, fluidez y comprensión.",
"claude-opus-4-1-20250805.description": "Claude Opus 4.1 es el modelo más reciente y capaz de Anthropic para tareas altamente complejas, destacando en rendimiento, inteligencia, fluidez y comprensión.",
"claude-opus-4-1.description": "Claude Opus 4.1 de Anthropic: modelo de razonamiento premium con profundas capacidades de análisis.",
"claude-opus-4-20250514.description": "Claude Opus 4 es el modelo más poderoso de Anthropic para tareas altamente complejas, destacando en rendimiento, inteligencia, fluidez y comprensión.",
"claude-opus-4-5-20251101.description": "Claude Opus 4.5 es el modelo insignia de Anthropic, combinando inteligencia excepcional con rendimiento escalable, ideal para tareas complejas que requieren respuestas y razonamiento de la más alta calidad.",
@@ -335,7 +334,7 @@
"claude-opus-4.6-fast.description": "Claude Opus 4.6 es el modelo más inteligente de Anthropic para construir agentes y programar.",
"claude-opus-4.6.description": "Claude Opus 4.6 es el modelo más inteligente de Anthropic para construir agentes y programar.",
"claude-sonnet-4-20250514-thinking.description": "Claude Sonnet 4 Thinking puede generar respuestas casi instantáneas o pensamiento paso a paso extendido con proceso visible.",
"claude-sonnet-4-20250514.description": "Claude Sonnet 4 es el modelo más inteligente de Anthropic hasta la fecha, ofreciendo respuestas casi instantáneas o pensamiento extendido paso a paso con control detallado para usuarios de API.",
"claude-sonnet-4-20250514.description": "Claude Sonnet 4 puede generar respuestas casi instantáneas o razonamientos extendidos paso a paso con un proceso visible.",
"claude-sonnet-4-5-20250929.description": "Claude Sonnet 4.5 es el modelo más inteligente de Anthropic hasta la fecha.",
"claude-sonnet-4-5.description": "Claude Sonnet 4.5 de Anthropic: versión mejorada de Sonnet con mayor rendimiento en programación.",
"claude-sonnet-4-6.description": "Claude Sonnet 4.6 de Anthropic: última versión de Sonnet con programación superior y uso avanzado de herramientas.",
@@ -409,7 +408,7 @@
"deepseek-ai/deepseek-llm-67b-chat.description": "DeepSeek LLM Chat (67B) es un modelo innovador que ofrece una comprensión profunda del lenguaje y una interacción avanzada.",
"deepseek-ai/deepseek-v3.1-terminus.description": "DeepSeek V3.1 es un modelo de razonamiento de nueva generación con capacidades mejoradas para razonamiento complejo y cadenas de pensamiento, ideal para tareas de análisis profundo.",
"deepseek-ai/deepseek-v3.2.description": "DeepSeek V3.2 es un modelo de razonamiento de próxima generación con capacidades mejoradas de razonamiento complejo y cadenas de pensamiento.",
"deepseek-chat.description": "Alias de compatibilidad para el modo sin razonamiento de DeepSeek V4 Flash. Programado para ser descontinuado: utiliza DeepSeek V4 Flash en su lugar.",
"deepseek-chat.description": "Un nuevo modelo de código abierto que combina habilidades generales y de codificación. Preserva el diálogo general del modelo de chat y la sólida capacidad de codificación del modelo de programador, con mejor alineación de preferencias. DeepSeek-V2.5 también mejora la escritura y el seguimiento de instrucciones.",
"deepseek-coder-33B-instruct.description": "DeepSeek Coder 33B es un modelo de lenguaje para código entrenado con 2T de tokens (87% código, 13% texto en chino/inglés). Introduce una ventana de contexto de 16K y tareas de completado intermedio, ofreciendo completado de código a nivel de proyecto y relleno de fragmentos.",
"deepseek-coder-v2.description": "DeepSeek Coder V2 es un modelo de código MoE de código abierto que tiene un rendimiento sólido en tareas de programación, comparable a GPT-4 Turbo.",
"deepseek-coder-v2:236b.description": "DeepSeek Coder V2 es un modelo de código MoE de código abierto que tiene un rendimiento sólido en tareas de programación, comparable a GPT-4 Turbo.",
@@ -431,7 +430,7 @@
"deepseek-r1-fast-online.description": "Versión completa rápida de DeepSeek R1 con búsqueda web en tiempo real, combinando capacidad a escala 671B y respuesta ágil.",
"deepseek-r1-online.description": "Versión completa de DeepSeek R1 con 671B de parámetros y búsqueda web en tiempo real, ofreciendo mejor comprensión y generación.",
"deepseek-r1.description": "DeepSeek-R1 utiliza datos de arranque en frío antes del aprendizaje por refuerzo y tiene un rendimiento comparable a OpenAI-o1 en matemáticas, programación y razonamiento.",
"deepseek-reasoner.description": "Alias de compatibilidad para el modo de razonamiento de DeepSeek V4 Flash. Programado para ser descontinuado: utiliza DeepSeek V4 Flash en su lugar.",
"deepseek-reasoner.description": "Alias de compatibilidad para el modo de pensamiento rápido de DeepSeek V4. Programado para su eliminación — utiliza deepseek-v4-flash en su lugar.",
"deepseek-v2.description": "DeepSeek V2 es un modelo MoE eficiente para procesamiento rentable.",
"deepseek-v2:236b.description": "DeepSeek V2 236B es el modelo de DeepSeek centrado en código con fuerte generación de código.",
"deepseek-v3-0324.description": "DeepSeek-V3-0324 es un modelo MoE con 671 mil millones de parámetros, con fortalezas destacadas en programación, capacidad técnica, comprensión de contexto y manejo de textos largos.",
@@ -496,8 +495,6 @@
"doubao-seedream-4-0-250828.description": "Seedream 4.0 es un modelo de generación de imágenes de ByteDance Seed que admite entradas de texto e imagen con generación de imágenes de alta calidad y altamente controlable. Genera imágenes a partir de indicaciones de texto.",
"doubao-seedream-4-5-251128.description": "Seedream 4.5 es el último modelo multimodal de imágenes de ByteDance, que integra capacidades de texto a imagen, imagen a imagen y generación de imágenes por lotes, mientras incorpora sentido común y habilidades de razonamiento. En comparación con la versión 4.0 anterior, ofrece una calidad de generación significativamente mejorada, con mayor consistencia en la edición y fusión de múltiples imágenes. Proporciona un control más preciso sobre los detalles visuales, produciendo texto y rostros pequeños de manera más natural, y logra una disposición y color más armoniosos, mejorando la estética general.",
"doubao-seedream-5-0-260128.description": "Doubao-Seedream-5.0-lite es el último modelo de generación de imágenes de ByteDance. Por primera vez, integra capacidades de recuperación en línea, permitiendo incorporar información web en tiempo real y mejorar la actualidad de las imágenes generadas. La inteligencia del modelo también ha sido mejorada, permitiendo una interpretación precisa de instrucciones complejas y contenido visual. Además, ofrece una mejor cobertura de conocimiento global, consistencia de referencia y calidad de generación en escenarios profesionales, satisfaciendo mejor las necesidades de creación visual a nivel empresarial.",
"dreamina-seedance-2-0-260128.description": "Seedance 2.0 de ByteDance es el modelo de generación de video más poderoso, compatible con generación de video multimodal de referencia, edición de video, extensión de video, texto a video e imagen a video con audio sincronizado.",
"dreamina-seedance-2-0-fast-260128.description": "Seedance 2.0 Fast de ByteDance ofrece las mismas capacidades que Seedance 2.0 con velocidades de generación más rápidas a un precio más competitivo.",
"emohaa.description": "Emohaa es un modelo de salud mental con capacidades profesionales de asesoramiento para ayudar a los usuarios a comprender problemas emocionales.",
"ernie-4.5-0.3b.description": "ERNIE 4.5 0.3B es un modelo ligero de código abierto para implementación local y personalizada.",
"ernie-4.5-8k-preview.description": "ERNIE 4.5 8K Preview es un modelo de vista previa con contexto de 8K para evaluar ERNIE 4.5.",
@@ -522,8 +519,7 @@
"ernie-x1-turbo-32k.description": "ERNIE X1 Turbo 32K es un modelo de pensamiento rápido con contexto de 32K para razonamiento complejo y chat de múltiples turnos.",
"ernie-x1.1-preview.description": "ERNIE X1.1 Preview es una vista previa del modelo de pensamiento para evaluación y pruebas.",
"ernie-x1.1.description": "ERNIE X1.1 es un modelo de pensamiento en vista previa para evaluación y pruebas.",
"fal-ai/bytedance/seedream/v4.5.description": "Seedream 4.5, desarrollado por el equipo Seed de ByteDance, admite edición y composición de múltiples imágenes. Incluye consistencia mejorada de sujetos, seguimiento preciso de instrucciones, comprensión de lógica espacial, expresión estética, diseño de carteles y logotipos con renderizado de texto-imagen de alta precisión.",
"fal-ai/bytedance/seedream/v4.description": "Seedream 4.0, desarrollado por ByteDance Seed, admite entradas de texto e imagen para una generación de imágenes altamente controlable y de alta calidad a partir de indicaciones.",
"fal-ai/bytedance/seedream/v4.description": "Seedream 4.0 es un modelo de generación de imágenes de ByteDance Seed, que admite entradas de texto e imagen con generación de imágenes altamente controlable y de alta calidad. Genera imágenes a partir de indicaciones de texto.",
"fal-ai/flux-kontext/dev.description": "Modelo FLUX.1 centrado en la edición de imágenes, compatible con entradas de texto e imagen.",
"fal-ai/flux-pro/kontext.description": "FLUX.1 Kontext [pro] acepta texto e imágenes de referencia como entrada, permitiendo ediciones locales dirigidas y transformaciones globales complejas de escenas.",
"fal-ai/flux/krea.description": "Flux Krea [dev] es un modelo de generación de imágenes con una inclinación estética hacia imágenes más realistas y naturales.",
@@ -531,8 +527,8 @@
"fal-ai/hunyuan-image/v3.description": "Un potente modelo nativo multimodal de generación de imágenes.",
"fal-ai/imagen4/preview.description": "Modelo de generación de imágenes de alta calidad de Google.",
"fal-ai/nano-banana.description": "Nano Banana es el modelo multimodal nativo más nuevo, rápido y eficiente de Google, que permite generación y edición de imágenes mediante conversación.",
"fal-ai/qwen-image-edit.description": "Un modelo profesional de edición de imágenes del equipo Qwen, que admite ediciones semánticas y de apariencia, edición precisa de texto en chino/inglés, transferencia de estilo, rotación y más.",
"fal-ai/qwen-image.description": "Un modelo poderoso de generación de imágenes del equipo Qwen con un fuerte renderizado de texto en chino y estilos visuales diversos.",
"fal-ai/qwen-image-edit.description": "Un modelo profesional de edición de imágenes del equipo Qwen que admite ediciones semánticas y de apariencia, edita con precisión texto en chino e inglés, y permite ediciones de alta calidad como transferencia de estilo y rotación de objetos.",
"fal-ai/qwen-image.description": "Un modelo poderoso de generación de imágenes del equipo Qwen con impresionante renderizado de texto en chino y estilos visuales diversos.",
"flux-1-schnell.description": "Modelo de texto a imagen con 12 mil millones de parámetros de Black Forest Labs que utiliza destilación difusiva adversarial latente para generar imágenes de alta calidad en 1 a 4 pasos. Compite con alternativas cerradas y se lanza bajo licencia Apache-2.0 para uso personal, de investigación y comercial.",
"flux-dev.description": "Modelo de generación de imágenes de I+D de código abierto, optimizado de forma eficiente para investigación innovadora no comercial.",
"flux-kontext-max.description": "Generación y edición de imágenes contextual de última generación, combinando texto e imágenes para resultados precisos y coherentes.",
@@ -574,7 +570,7 @@
"gemini-3-pro-image-preview:image.description": "Gemini 3 Pro Image (Nano Banana Pro) es el modelo de generación de imágenes de Google y también admite chat multimodal.",
"gemini-3-pro-preview.description": "Gemini 3 Pro es el agente más potente de Google y modelo de codificación emocional, que ofrece visuales más ricos e interacción más profunda sobre un razonamiento de última generación.",
"gemini-3.1-flash-image-preview.description": "Gemini 3.1 Flash Image (Nano Banana 2) es el modelo nativo de generación de imágenes más rápido de Google con soporte de pensamiento, generación conversacional de imágenes y edición.",
"gemini-3.1-flash-image-preview:image.description": "Gemini 3.1 Flash Image (Nano Banana 2) ofrece calidad de imagen a nivel Pro a velocidad Flash con soporte para chat multimodal.",
"gemini-3.1-flash-image-preview:image.description": "Gemini 3.1 Flash Image (Nano Banana 2) es el modelo nativo de generación de imágenes más rápido de Google con soporte de pensamiento, generación conversacional de imágenes y edición.",
"gemini-3.1-flash-lite-preview.description": "Gemini 3.1 Flash-Lite Preview es el modelo multimodal más rentable de Google, optimizado para tareas agentivas de alto volumen, traducción y procesamiento de datos.",
"gemini-3.1-pro-preview.description": "Gemini 3.1 Pro Preview mejora las capacidades de razonamiento de Gemini 3 Pro y añade soporte para un nivel de pensamiento medio.",
"gemini-3.1-pro.description": "Gemini 3.1 Pro de Google: modelo multimodal premium con ventana de contexto de 1M.",
@@ -740,11 +736,9 @@
"grok-4-fast-reasoning.description": "Nos complace lanzar Grok 4 Fast, nuestro último avance en modelos de razonamiento rentables.",
"grok-4.20-0309-non-reasoning.description": "Variante sin razonamiento para casos de uso simples.",
"grok-4.20-0309-reasoning.description": "Modelo inteligente y rapidísimo que razona antes de responder.",
"grok-4.20-beta-0309-non-reasoning.description": "Una variante sin razonamiento para casos de uso simples.",
"grok-4.20-beta-0309-reasoning.description": "Modelo inteligente y ultrarrápido que razona antes de responder.",
"grok-4.20-multi-agent-0309.description": "Equipo de 4 o 16 agentes. Destaca en casos de investigación. No admite herramientas del lado del cliente. Solo admite herramientas del lado del servidor de xAI (como X Search, Web Search) y herramientas MCP remotas.",
"grok-4.3.description": "El modelo de lenguaje grande más orientado a la verdad en el mundo.",
"grok-4.description": "Nuestro modelo insignia más nuevo y fuerte, destacando en PNL, matemáticas y razonamiento: un todoterreno ideal.",
"grok-4.description": "Último modelo insignia de Grok con un rendimiento inigualable en lenguaje, matemáticas y razonamiento un verdadero todoterreno. Actualmente apunta a grok-4-0709; debido a recursos limitados, su precio es temporalmente un 10% más alto que el oficial y se espera que regrese al precio oficial más adelante.",
"grok-code-fast-1.description": "Nos complace lanzar grok-code-fast-1, un modelo de razonamiento rápido y rentable que destaca en codificación agente.",
"grok-imagine-image-pro.description": "Genera imágenes a partir de indicaciones de texto, edita imágenes existentes con lenguaje natural o refina imágenes de manera iterativa a través de conversaciones de múltiples turnos.",
"grok-imagine-image.description": "Genera imágenes a partir de indicaciones de texto, edita imágenes existentes con lenguaje natural o refina imágenes de manera iterativa a través de conversaciones de múltiples turnos.",
@@ -1233,8 +1227,6 @@
"qwq.description": "QwQ es un modelo de razonamiento de la familia Qwen. En comparación con los modelos estándar ajustados por instrucciones, ofrece capacidades de pensamiento y razonamiento que mejoran significativamente el rendimiento en tareas difíciles. QwQ-32B es un modelo de razonamiento de tamaño medio que compite con los mejores modelos como DeepSeek-R1 y o1-mini.",
"qwq_32b.description": "Modelo de razonamiento de tamaño medio de la familia Qwen. En comparación con los modelos estándar ajustados por instrucciones, las capacidades de pensamiento y razonamiento de QwQ mejoran significativamente el rendimiento en tareas difíciles.",
"r1-1776.description": "R1-1776 es una variante postentrenada de DeepSeek R1 diseñada para proporcionar información factual sin censura ni sesgo.",
"seedance-1-5-pro-251215.description": "Seedance 1.5 Pro de ByteDance admite texto a video, imagen a video (primer cuadro, primer+último cuadro) y generación de audio sincronizado con visuales.",
"seedream-5-0-260128.description": "ByteDance-Seedream-5.0-lite de BytePlus presenta generación aumentada con recuperación web para información en tiempo real, interpretación mejorada de indicaciones complejas y mayor consistencia de referencia para creación visual profesional.",
"solar-mini-ja.description": "Solar Mini (Ja) amplía Solar Mini con un enfoque en japonés, manteniendo un rendimiento eficiente y sólido en inglés y coreano.",
"solar-mini.description": "Solar Mini es un modelo LLM compacto que supera a GPT-3.5, con una sólida capacidad multilingüe compatible con inglés y coreano, ofreciendo una solución eficiente de bajo consumo.",
"solar-pro.description": "Solar Pro es un LLM de alta inteligencia de Upstage, enfocado en el seguimiento de instrucciones en una sola GPU, con puntuaciones IFEval superiores a 80. Actualmente admite inglés; el lanzamiento completo estaba previsto para noviembre de 2024 con soporte de idiomas ampliado y contexto más largo.",
-2
View File
@@ -29,9 +29,7 @@
"agent.layout.switchMessage": "¿No te convence hoy? Puedes cambiar a <modeLink><modeText>{{mode}}</modeText></modeLink> o <skipLink><skipText>{{skip}}</skipText></skipLink>.",
"agent.modeSwitch.agent": "Conversacional",
"agent.modeSwitch.classic": "Clásico",
"agent.modeSwitch.collapse": "Colapsar",
"agent.modeSwitch.debug": "Exportar Depuración",
"agent.modeSwitch.expand": "Expandir",
"agent.modeSwitch.label": "Elige tu modo de incorporación",
"agent.modeSwitch.reset": "Reiniciar Flujo",
"agent.progress": "{{currentStep}}/{{totalSteps}}",
+1 -10
View File
@@ -256,16 +256,13 @@
"builtins.lobe-skills.apiName.runCommand": "Ejecutar Comando",
"builtins.lobe-skills.apiName.searchSkill": "Buscar Habilidades",
"builtins.lobe-skills.title": "Habilidades",
"builtins.lobe-task.apiName.addTaskComment": "Agregar comentario",
"builtins.lobe-task.apiName.createTask": "Crear tarea",
"builtins.lobe-task.apiName.createTasks": "Crear tareas",
"builtins.lobe-task.apiName.deleteTask": "Eliminar tarea",
"builtins.lobe-task.apiName.deleteTaskComment": "Eliminar comentario",
"builtins.lobe-task.apiName.editTask": "Editar tarea",
"builtins.lobe-task.apiName.listTasks": "Listar tareas",
"builtins.lobe-task.apiName.runTask": "Ejecutar tarea",
"builtins.lobe-task.apiName.runTasks": "Ejecutar tareas",
"builtins.lobe-task.apiName.updateTaskComment": "Actualizar comentario",
"builtins.lobe-task.apiName.updateTaskStatus": "Actualizar estado",
"builtins.lobe-task.apiName.viewTask": "Ver tarea",
"builtins.lobe-task.create.subtaskOf": "Subtarea de {{parent}}",
@@ -276,8 +273,6 @@
"builtins.lobe-task.edit.blocksOn": "bloquea en",
"builtins.lobe-task.edit.description": "descripción actualizada",
"builtins.lobe-task.edit.instruction": "instrucción actualizada",
"builtins.lobe-task.edit.parent": "padre",
"builtins.lobe-task.edit.parentClear": "nivel superior",
"builtins.lobe-task.edit.priority": "prioridad",
"builtins.lobe-task.edit.rename": "renombrar",
"builtins.lobe-task.edit.unassign": "desasignar",
@@ -327,11 +322,6 @@
"builtins.lobe-web-onboarding.inspector.interests_one": "{{count}} interés",
"builtins.lobe-web-onboarding.inspector.interests_other": "{{count}} intereses",
"builtins.lobe-web-onboarding.title": "Incorporación del Usuario",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.delete": "Eliminar",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.deleteLines": "Eliminar líneas",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.insertAt": "Insertar en la línea",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.replace": "Reemplazar",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.replaceLines": "Reemplazar líneas",
"confirm": "Confirmar",
"debug.arguments": "Argumentos",
"debug.error": "Registro de errores",
@@ -356,6 +346,7 @@
"detailModal.tabs.settings": "Configuración",
"detailModal.title": "Detalles del Skill",
"dev.confirmDeleteDevPlugin": "Este Skill local se eliminará permanentemente. ¿Continuar?",
"dev.customParams.useProxy.label": "Instalar vía proxy (activa si hay errores CORS, luego reintenta)",
"dev.deleteSuccess": "Skill eliminado",
"dev.manifest.identifier.desc": "Identificador único del Skill",
"dev.manifest.identifier.label": "Identificador",
-1
View File
@@ -33,7 +33,6 @@
"jina.description": "Fundada en 2020, Jina AI es una empresa líder en búsqueda con IA. Su pila de búsqueda incluye modelos vectoriales, reordenadores y pequeños modelos de lenguaje para construir aplicaciones generativas y multimodales confiables y de alta calidad.",
"kimicodingplan.description": "Kimi Code de Moonshot AI proporciona acceso a los modelos Kimi, incluidos K2.5, para tareas de codificación.",
"lmstudio.description": "LM Studio es una aplicación de escritorio para desarrollar y experimentar con LLMs en tu ordenador.",
"lobehub.description": "LobeHub Cloud utiliza APIs oficiales para acceder a modelos de IA y mide el uso con Créditos vinculados a los tokens del modelo.",
"longcat.description": "LongCat es una serie de modelos grandes de inteligencia artificial generativa desarrollados de manera independiente por Meituan. Está diseñado para mejorar la productividad interna de la empresa y permitir aplicaciones innovadoras mediante una arquitectura computacional eficiente y sólidas capacidades multimodales.",
"minimax.description": "Fundada en 2021, MiniMax desarrolla IA de propósito general con modelos fundacionales multimodales, incluyendo modelos de texto MoE con billones de parámetros, modelos de voz y visión, junto con aplicaciones como Hailuo AI.",
"minimaxcodingplan.description": "El Plan de Tokens MiniMax proporciona acceso a los modelos MiniMax, incluidos M2.7, para tareas de codificación mediante una suscripción de tarifa fija.",
-7
View File
@@ -30,16 +30,9 @@
"agentMarketplace.category.personalLife": "Vida Personal",
"agentMarketplace.category.productManagement": "Gestión de Producto",
"agentMarketplace.category.salesCustomer": "Ventas y Atención al Cliente",
"agentMarketplace.inspector.moreCategories_one": "+{{count}}",
"agentMarketplace.inspector.moreCategories_other": "+{{count}}",
"agentMarketplace.inspector.pickCount_one": "{{count}} agente",
"agentMarketplace.inspector.pickCount_other": "{{count}} agentes",
"agentMarketplace.picker.empty": "No hay plantillas disponibles.",
"agentMarketplace.picker.failedToLoad": "No se pudieron cargar las plantillas. Por favor, inténtelo de nuevo más tarde.",
"agentMarketplace.picker.summary": "{{filtered}} / {{total}} plantillas disponibles.",
"agentMarketplace.render.alreadyInLibraryTag": "Ya en la biblioteca",
"agentMarketplace.render.alreadyInLibrary_one": "{{count}} ya en la biblioteca",
"agentMarketplace.render.alreadyInLibrary_other": "{{count}} ya en la biblioteca",
"codeInterpreter-legacy.error": "Error de Ejecución",
"codeInterpreter-legacy.executing": "Ejecutando...",
"codeInterpreter-legacy.files": "Archivos:",
+1 -1
View File
@@ -35,7 +35,7 @@
"authModal.title": "نشست منقضی شد",
"betterAuth.captcha.continue": "ادامه",
"betterAuth.captcha.description": "لطفاً تأیید امنیتی زیر را تکمیل کنید. ما به‌طور خودکار ثبت‌نام یا ورود شما را ادامه خواهیم داد.",
"betterAuth.captcha.pendingDescription": "تأیید کامل نشد. لطفاً چالش را دوباره امتحان کنید.",
"betterAuth.captcha.pendingDescription": "لطفاً ابتدا تأیید را کامل کنید، سپس ادامه دهید.",
"betterAuth.captcha.title": "نیاز به تأیید امنیتی",
"betterAuth.errors.confirmPasswordRequired": "لطفاً رمز عبور را تأیید کنید",
"betterAuth.errors.emailExists": "این ایمیل قبلاً ثبت شده است. لطفاً وارد شوید",
-1
View File
@@ -27,7 +27,6 @@
"codes.RATE_LIMIT_EXCEEDED": "تعداد درخواست‌ها بیش از حد مجاز است، لطفاً بعداً تلاش کنید",
"codes.SESSION_EXPIRED": "نشست منقضی شده است، لطفاً دوباره وارد شوید",
"codes.SOCIAL_ACCOUNT_ALREADY_LINKED": "این حساب اجتماعی قبلاً به کاربر دیگری متصل شده است",
"codes.TEMPORARY_EMAIL_NOT_ALLOWED": "آدرس‌های ایمیل موقت پشتیبانی نمی‌شوند. لطفاً از یک آدرس ایمیل معمولی استفاده کنید. تلاش‌های مکرر ممکن است این شبکه را مسدود کند.",
"codes.UNEXPECTED_ERROR": "خطای غیرمنتظره‌ای رخ داد، لطفاً دوباره تلاش کنید",
"codes.UNKNOWN": "خطای ناشناخته‌ای رخ داد، لطفاً دوباره تلاش کنید یا با پشتیبانی تماس بگیرید",
"codes.USER_ALREADY_EXISTS": "کاربر از قبل وجود دارد",
+4 -15
View File
@@ -673,14 +673,14 @@
"tokenTag.used": "مصرف‌شده",
"tool.intervention.approvalMode": "حالت تأیید",
"tool.intervention.approve": "تأیید",
"tool.intervention.approveAndRemember": "تأیید و به خاطر سپردن",
"tool.intervention.approveOnce": "فقط این بار تأیید شود",
"tool.intervention.mode.allowList": "فهرست مجاز",
"tool.intervention.mode.allowListDesc": "فقط ابزارهای تأییدشده به‌طور خودکار اجرا شوند",
"tool.intervention.mode.autoRun": "تأیید خودکار",
"tool.intervention.mode.autoRunDesc": "همه فراخوانی‌های ابزار به‌طور خودکار تأیید شوند",
"tool.intervention.mode.manual": "دستی",
"tool.intervention.mode.manualDesc": "برای هر فراخوانی تأیید دستی لازم است",
"tool.intervention.onboarding.agentIdentity.editHint": "شما می‌توانید نام یا آواتار را مستقیماً در زیر ویرایش کنید.",
"tool.intervention.onboarding.agentIdentity.namePlaceholder": "نام نماینده",
"tool.intervention.onboarding.agentIdentity.title": "تأیید به‌روزرسانی هویت عامل",
"tool.intervention.onboarding.agentIdentity.titleAvatarOnly": "من آواتارم را به‌روزرسانی می‌کنم",
"tool.intervention.onboarding.agentIdentity.titleNameOnly": "من نامم را به‌روزرسانی می‌کنم",
@@ -690,15 +690,14 @@
"tool.intervention.onboarding.userProfile.fullName": "نام کامل",
"tool.intervention.onboarding.userProfile.responseLanguage": "زبان پاسخ",
"tool.intervention.onboarding.userProfile.title": "به‌روزرسانی پروفایل خود را تأیید کنید",
"tool.intervention.optionApprove": "تأیید",
"tool.intervention.pending": "در انتظار",
"tool.intervention.reject": "رد کردن",
"tool.intervention.rejectAndContinue": "رد و تلاش مجدد",
"tool.intervention.rejectOnly": "رد کردن",
"tool.intervention.rejectReasonPlaceholder": "ارائه دلیل به نماینده کمک می‌کند تا مرزهای شما را درک کرده و عملکرد آینده را بهبود دهد",
"tool.intervention.rejectTitle": "رد این فراخوانی مهارت",
"tool.intervention.rejectedWithReason": "این فراخوانی مهارت رد شد: {{reason}}",
"tool.intervention.rememberSimilar": "برای اقدامات مشابه دوباره سؤال نکن",
"tool.intervention.scrollToIntervention": "مشاهده",
"tool.intervention.submit": "ارسال",
"tool.intervention.toolAbort": "شما این فراخوانی مهارت را لغو کردید",
"tool.intervention.toolRejected": "این فراخوانی مهارت رد شد",
"tool.intervention.viewParameters": "مشاهده پارامترها ({{count}})",
@@ -810,9 +809,7 @@
"workflow.toolDisplayName.searchLocalFiles": "فایل‌های جستجو‌شده",
"workflow.toolDisplayName.searchSkill": "مهارت‌های جستجو شده",
"workflow.toolDisplayName.searchUserMemory": "حافظه جستجو شد",
"workflow.toolDisplayName.showAgentMarketplace": "تیم نمایندگان مونتاژ شده",
"workflow.toolDisplayName.solve": "حل معادله",
"workflow.toolDisplayName.submitAgentPick": "نمایندگان انتخاب‌شده",
"workflow.toolDisplayName.updateAgent": "یک عامل را به‌روزرسانی کرد",
"workflow.toolDisplayName.updateDocument": "یک سند را به‌روزرسانی کرد",
"workflow.toolDisplayName.updateIdentityMemory": "حافظه به‌روزرسانی‌شده",
@@ -851,14 +848,6 @@
"workingPanel.resources.renameEmpty": "Title cannot be empty",
"workingPanel.resources.renameError": "Failed to rename document",
"workingPanel.resources.renameSuccess": "Document renamed",
"workingPanel.resources.tree.createError": "ایجاد ناموفق بود",
"workingPanel.resources.tree.moveError": "انتقال ناموفق بود",
"workingPanel.resources.tree.newDocument": "سند جدید",
"workingPanel.resources.tree.newFolder": "پوشه جدید",
"workingPanel.resources.tree.parentMissing": "پوشه والد در دسترس نیست",
"workingPanel.resources.tree.rename": "تغییر نام",
"workingPanel.resources.tree.untitledDocument": "سند بدون عنوان",
"workingPanel.resources.tree.untitledFolder": "پوشه بدون عنوان",
"workingPanel.resources.updatedAt": "به‌روزرسانی شده در {{time}}",
"workingPanel.resources.viewMode.list": "نمای فهرست",
"workingPanel.resources.viewMode.tree": "نمای درختی",
-1
View File
@@ -114,7 +114,6 @@
"response.ProviderBizError": "خطا در درخواست به سرویس {{provider}}. لطفاً بر اساس اطلاعات زیر عیب‌یابی یا دوباره تلاش کنید.",
"response.ProviderContentModeration": "بررسی خط‌مشی محتوا ناموفق بود. درخواست خود را بازبینی کرده و دوباره تلاش کنید.",
"response.ProviderContentModerationWarning": "تخطی‌های مکرر از خط‌مشی شناسایی شد. ادامهٔ استفادهٔ نادرست ممکن است منجر به محدودیت حساب شما شود.",
"response.ProviderImageContentModerationWarning": "رد مکرر ایمنی تصاویر شناسایی شد. درخواست‌های مشابه ممکن است به طور موقت تولید تصویر را متوقف کنند.",
"response.QuotaLimitReached": "متأسفیم، استفاده از توکن یا تعداد درخواست‌ها به حد مجاز رسیده است. لطفاً سهمیه را افزایش داده یا بعداً تلاش کنید.",
"response.QuotaLimitReachedCloud": "خدمات مدل در حال حاضر تحت بار سنگین قرار دارد. لطفاً بعداً دوباره تلاش کنید.",
"response.ServerAgentRuntimeError": "متأسفیم، سرویس Agent در حال حاضر در دسترس نیست. لطفاً بعداً تلاش کنید یا با ما تماس بگیرید.",
-4
View File
@@ -84,9 +84,6 @@
"verify.confirm.fields.platformAccount": "حساب {{platform}}",
"verify.confirm.fields.workspace": "فضای کاری",
"verify.confirm.noAgents": "شما هنوز هیچ نماینده‌ای ندارید. یکی را در LobeHub ایجاد کنید، سپس برای تکمیل لینک کردن بازگردید.",
"verify.confirm.relink.description": "این حساب LobeHub قبلاً به حساب تلگرام {{account}} متصل شده است. برای اتصال به یک حساب تلگرام دیگر، ابتدا حساب فعلی را در تنظیمات → پیام‌رسان قطع کنید.",
"verify.confirm.relink.manage": "باز کردن تنظیمات پیام‌رسان",
"verify.confirm.relink.title": "یک حساب تلگرام دیگر قبلاً متصل شده است",
"verify.confirm.title": "تأیید لینک",
"verify.confirm.workspace": "فضای کاری: {{workspace}}",
"verify.error.alreadyLinkedToOther": "این حساب قبلاً به یک حساب دیگر LobeHub لینک شده است. ابتدا وارد آن حساب شوید.",
@@ -94,7 +91,6 @@
"verify.error.generic": "مشکلی پیش آمد. لطفاً دوباره امتحان کنید.",
"verify.error.missingToken": "لینک نامعتبر. این صفحه را از ربات باز کنید.",
"verify.error.title": "تأیید لینک امکان‌پذیر نیست",
"verify.error.unlinkBeforeRelink": "این حساب LobeHub قبلاً به یک حساب تلگرام دیگر متصل شده است. ابتدا آن را در تنظیمات → پیام‌رسان قطع کنید تا بتوانید حساب جدیدی را متصل کنید.",
"verify.labRequired.description": "پیام‌رسان در حال حاضر یک ویژگی آزمایشی است. آن را در تنظیمات → پیشرفته → آزمایش‌ها فعال کنید و این صفحه را دوباره بارگذاری کنید.",
"verify.labRequired.openSettings": "باز کردن تنظیمات آزمایش‌ها",
"verify.labRequired.title": "برای ادامه پیام‌رسان را فعال کنید",
+11 -19
View File
@@ -106,7 +106,6 @@
"MiniMax-Hailuo-2.3.description": "مدل جدید تولید ویدئو با ارتقاهای جامع در حرکت بدن، واقع‌گرایی فیزیکی و پیروی از دستورالعمل‌ها.",
"MiniMax-M1.description": "یک مدل استدلالی داخلی جدید با ۸۰ هزار زنجیره تفکر و ورودی ۱ میلیون توکن، با عملکردی در سطح مدل‌های برتر جهانی.",
"MiniMax-M2-Stable.description": "طراحی‌شده برای کدنویسی کارآمد و جریان‌های کاری عامل‌محور، با هم‌زمانی بالاتر برای استفاده تجاری.",
"MiniMax-M2.1-Lightning.description": "قابلیت‌های برنامه‌نویسی چندزبانه قدرتمند با استنتاج سریع‌تر و کارآمدتر.",
"MiniMax-M2.1-highspeed.description": "قابلیت‌های برنامه‌نویسی چندزبانه قدرتمند، تجربه برنامه‌نویسی کاملاً ارتقاء یافته. سریع‌تر و کارآمدتر.",
"MiniMax-M2.1.description": "MiniMax-M2.1 یک مدل بزرگ متن‌باز پیشرفته از MiniMax است که بر حل وظایف پیچیده دنیای واقعی تمرکز دارد. نقاط قوت اصلی آن شامل توانایی برنامه‌نویسی چندزبانه و قابلیت عمل به‌عنوان یک عامل هوشمند برای حل مسائل پیچیده است.",
"MiniMax-M2.5-highspeed.description": "MiniMax M2.5 Highspeed: همان عملکرد M2.5 با استنتاج سریع‌تر.",
@@ -320,13 +319,13 @@
"claude-3-haiku-20240307.description": "Claude 3 Haiku سریع‌ترین و فشرده‌ترین مدل Anthropic است که برای پاسخ‌های تقریباً فوری با عملکرد سریع و دقیق طراحی شده است.",
"claude-3-opus-20240229.description": "Claude 3 Opus قدرتمندترین مدل Anthropic برای وظایف بسیار پیچیده است که در عملکرد، هوش، روانی و درک زبان برتری دارد.",
"claude-3-sonnet-20240229.description": "Claude 3 Sonnet تعادل بین هوش و سرعت را برای بارهای کاری سازمانی برقرار می‌کند و با هزینه کمتر، بهره‌وری بالا و استقرار قابل اعتماد در مقیاس وسیع را ارائه می‌دهد.",
"claude-haiku-4-5-20251001.description": "Claude Haiku 4.5 سریع‌ترین و هوشمندترین مدل هایکو Anthropic است، با سرعت فوق‌العاده و توانایی تفکر گسترده.",
"claude-haiku-4-5-20251001.description": "Claude Haiku 4.5 سریع‌ترین و هوشمندترین مدل Haiku از Anthropic است که با سرعت فوق‌العاده و توانایی استدلال پیشرفته ارائه می‌شود.",
"claude-haiku-4-5.description": "Claude Haiku 4.5 از Anthropic — نسل جدید Haiku با استدلال و پردازش تصویری پیشرفته.",
"claude-haiku-4.5.description": "Claude Haiku 4.5 سریع‌ترین و هوشمندترین مدل Haiku از Anthropic است که با سرعت برق‌آسا و توانایی استدلال پیشرفته ارائه می‌شود.",
"claude-opus-4-1-20250805-thinking.description": "Claude Opus 4.1 Thinking یک نسخه پیشرفته است که می‌تواند فرآیند استدلال خود را آشکار کند.",
"claude-opus-4-1-20250805.description": "Claude Opus 4.1 جدیدترین و توانمندترین مدل Anthropic برای وظایف بسیار پیچیده است که در عملکرد، هوش، روانی و درک برتری دارد.",
"claude-opus-4-1.description": "Claude Opus 4.1 از Anthropic — مدل استدلال سطح‌بالا با توانایی تحلیل عمیق.",
"claude-opus-4-20250514.description": "Claude Opus 4 قدرتمندترین مدل Anthropic برای وظایف بسیار پیچیده است که در عملکرد، هوش، روانی و درک برتری دارد.",
"claude-opus-4-20250514.description": "Claude Opus 4 قدرتمندترین مدل Anthropic برای وظایف بسیار پیچیده است که در عملکرد، هوش، روانی و فهم برتری دارد.",
"claude-opus-4-5-20251101.description": "Claude Opus 4.5 مدل پرچم‌دار Anthropic است که هوش برجسته را با عملکرد مقیاس‌پذیر ترکیب می‌کند و برای وظایف پیچیده‌ای که نیاز به پاسخ‌های باکیفیت و استدلال دارند، ایده‌آل است.",
"claude-opus-4-5.description": "Claude Opus 4.5 از Anthropic — مدل پرچم‌دار با استدلال و کدنویسی سطح‌بالا.",
"claude-opus-4-6.description": "Claude Opus 4.6 از Anthropic — مدل پرچم‌دار با پنجره زمینه ۱ میلیون و توانایی استدلال پیشرفته.",
@@ -335,7 +334,7 @@
"claude-opus-4.6-fast.description": "Claude Opus 4.6 هوشمندترین مدل Anthropic برای ساخت عوامل و کدنویسی است.",
"claude-opus-4.6.description": "Claude Opus 4.6 هوشمندترین مدل Anthropic برای ساخت عوامل و کدنویسی است.",
"claude-sonnet-4-20250514-thinking.description": "Claude Sonnet 4 Thinking می‌تواند پاسخ‌های تقریباً فوری یا تفکر گام‌به‌گام طولانی با فرآیند قابل مشاهده تولید کند.",
"claude-sonnet-4-20250514.description": "Claude Sonnet 4 هوشمندترین مدل Anthropic تا به امروز است که پاسخ‌های تقریباً فوری یا تفکر گام‌به‌گام گسترده با کنترل دقیق برای کاربران API ارائه می‌دهد.",
"claude-sonnet-4-20250514.description": "Claude Sonnet 4 می‌تواند پاسخ‌های تقریباً فوری یا تفکر گام‌به‌گام گسترده با فرآیند قابل مشاهده تولید کند.",
"claude-sonnet-4-5-20250929.description": "Claude Sonnet 4.5 هوشمندترین مدل Anthropic تا به امروز است.",
"claude-sonnet-4-5.description": "Claude Sonnet 4.5 از Anthropic — نسخه بهبود‌یافته Sonnet با عملکرد بهتر در کدنویسی.",
"claude-sonnet-4-6.description": "Claude Sonnet 4.6 از Anthropic — جدیدترین Sonnet با کدنویسی برتر و استفاده بهتر از ابزار.",
@@ -409,7 +408,7 @@
"deepseek-ai/deepseek-llm-67b-chat.description": "DeepSeek LLM Chat (67B) یک مدل نوآورانه با درک عمیق زبان و تعامل است.",
"deepseek-ai/deepseek-v3.1-terminus.description": "DeepSeek V3.1 یک مدل استدلال نسل بعدی با توانایی استدلال پیچیده و زنجیره تفکر برای وظایف تحلیلی عمیق است.",
"deepseek-ai/deepseek-v3.2.description": "DeepSeek V3.2 یک مدل استدلال نسل بعدی با قابلیت‌های استدلال پیچیده‌تر و زنجیره‌ای از تفکر است.",
"deepseek-chat.description": "نام مستعار سازگار برای حالت غیرتفکری DeepSeek V4 Flash. برنامه‌ریزی شده برای توقف استفاده — به جای آن از DeepSeek V4 Flash استفاده کنید.",
"deepseek-chat.description": "یک مدل متن‌باز جدید که توانایی‌های عمومی و کدنویسی را ترکیب می‌کند. این مدل گفتگوی عمومی مدل چت و کدنویسی قوی مدل کدنویس را حفظ کرده و با هم‌ترازی بهتر ترجیحات ارائه می‌شود. DeepSeek-V2.5 همچنین نوشتن و پیروی از دستورالعمل‌ها را بهبود می‌بخشد.",
"deepseek-coder-33B-instruct.description": "DeepSeek Coder 33B یک مدل زبان برنامه‌نویسی است که با ۲ تریلیون توکن (۸۷٪ کد، ۱۳٪ متن چینی/انگلیسی) آموزش دیده است. این مدل دارای پنجره متنی ۱۶K و وظایف تکمیل در میانه است که تکمیل کد در سطح پروژه و پر کردن قطعات کد را فراهم می‌کند.",
"deepseek-coder-v2.description": "DeepSeek Coder V2 یک مدل کدنویسی MoE متن‌باز است که در وظایف برنامه‌نویسی عملکردی هم‌سطح با GPT-4 Turbo دارد.",
"deepseek-coder-v2:236b.description": "DeepSeek Coder V2 یک مدل کدنویسی MoE متن‌باز است که در وظایف برنامه‌نویسی عملکردی هم‌سطح با GPT-4 Turbo دارد.",
@@ -431,7 +430,7 @@
"deepseek-r1-fast-online.description": "نسخه کامل سریع DeepSeek R1 با جستجوی وب در زمان واقعی که توانایی در مقیاس ۶۷۱B را با پاسخ‌دهی سریع‌تر ترکیب می‌کند.",
"deepseek-r1-online.description": "نسخه کامل DeepSeek R1 با ۶۷۱ میلیارد پارامتر و جستجوی وب در زمان واقعی که درک و تولید قوی‌تری را ارائه می‌دهد.",
"deepseek-r1.description": "DeepSeek-R1 پیش از یادگیری تقویتی از داده‌های شروع سرد استفاده می‌کند و در وظایف ریاضی، کدنویسی و استدلال عملکردی هم‌سطح با OpenAI-o1 دارد.",
"deepseek-reasoner.description": "نام مستعار سازگار برای حالت تفکری DeepSeek V4 Flash. برنامه‌ریزی شده برای توقف استفاده — به جای آن از DeepSeek V4 Flash استفاده کنید.",
"deepseek-reasoner.description": "نام مستعار سازگار برای حالت تفکر سریع DeepSeek V4. برنامه‌ریزی شده برای توقف استفاده — به جای آن از deepseek-v4-flash استفاده کنید.",
"deepseek-v2.description": "DeepSeek V2 یک مدل MoE کارآمد است که پردازش مقرون‌به‌صرفه را امکان‌پذیر می‌سازد.",
"deepseek-v2:236b.description": "DeepSeek V2 236B مدل متمرکز بر کدنویسی DeepSeek است که توانایی بالایی در تولید کد دارد.",
"deepseek-v3-0324.description": "DeepSeek-V3-0324 یک مدل MoE با ۶۷۱ میلیارد پارامتر است که در برنامه‌نویسی، توانایی‌های فنی، درک زمینه و پردازش متون بلند عملکرد برجسته‌ای دارد.",
@@ -496,8 +495,6 @@
"doubao-seedream-4-0-250828.description": "Seedream 4.0 یک مدل تولید تصویر از ByteDance Seed است که از ورودی‌های متن و تصویر پشتیبانی می‌کند و تولید تصویر با کیفیت بالا و قابل کنترل را ارائه می‌دهد. این مدل تصاویر را از دستورات متنی تولید می‌کند.",
"doubao-seedream-4-5-251128.description": "Seedream 4.5 جدیدترین مدل چندوجهی تصویر ByteDance است که قابلیت‌های تبدیل متن به تصویر، تصویر به تصویر و تولید دسته‌ای تصاویر را ادغام می‌کند و توانایی‌های استدلال و دانش عمومی را نیز در بر می‌گیرد. در مقایسه با نسخه قبلی 4.0، کیفیت تولید به‌طور قابل‌توجهی بهبود یافته است، با سازگاری بهتر در ویرایش و ترکیب چند تصویر. کنترل دقیق‌تری بر جزئیات بصری ارائه می‌دهد، متن‌های کوچک و چهره‌های کوچک را به‌طور طبیعی‌تر تولید می‌کند و به هماهنگی بهتر در چیدمان و رنگ دست می‌یابد، که زیبایی کلی را افزایش می‌دهد.",
"doubao-seedream-5-0-260128.description": "Doubao-Seedream-5.0-lite جدیدترین مدل تولید تصویر ByteDance است. برای اولین بار، قابلیت‌های بازیابی آنلاین را ادغام کرده است که به آن امکان می‌دهد اطلاعات وب لحظه‌ای را وارد کند و به‌موقع بودن تصاویر تولید شده را افزایش دهد. هوش مدل نیز ارتقا یافته است، که تفسیر دقیق دستورالعمل‌های پیچیده و محتوای بصری را امکان‌پذیر می‌کند. علاوه بر این، پوشش دانش جهانی، سازگاری مرجع و کیفیت تولید در سناریوهای حرفه‌ای بهبود یافته است، که نیازهای خلق بصری در سطح سازمانی را بهتر برآورده می‌کند.",
"dreamina-seedance-2-0-260128.description": "Seedance 2.0 توسط ByteDance قدرتمندترین مدل تولید ویدئو است که از تولید ویدئو با مرجع چندوجهی، ویرایش ویدئو، گسترش ویدئو، متن به ویدئو و تصویر به ویدئو با صدای همگام‌سازی شده پشتیبانی می‌کند.",
"dreamina-seedance-2-0-fast-260128.description": "Seedance 2.0 Fast توسط ByteDance همان قابلیت‌های Seedance 2.0 را با سرعت تولید بالاتر و قیمت رقابتی‌تر ارائه می‌دهد.",
"emohaa.description": "Emohaa یک مدل سلامت روان با توانایی مشاوره حرفه‌ای است که به کاربران در درک مسائل احساسی کمک می‌کند.",
"ernie-4.5-0.3b.description": "ERNIE 4.5 0.3B یک مدل سبک متن‌باز برای استقرار محلی و سفارشی‌سازی شده است.",
"ernie-4.5-8k-preview.description": "پیش‌نمایش مدل با پنجره متنی ۸هزار توکن برای ارزیابی ERNIE 4.5.",
@@ -522,8 +519,7 @@
"ernie-x1-turbo-32k.description": "ERNIE X1 Turbo 32K یک مدل تفکر سریع با زمینه ۳۲K برای استدلال پیچیده و گفت‌وگوی چندمرحله‌ای است.",
"ernie-x1.1-preview.description": "پیش‌نمایش ERNIE X1.1 یک مدل تفکر برای ارزیابی و آزمایش است.",
"ernie-x1.1.description": "ERNIE X1.1 یک مدل تفکر پیش‌نمایش برای ارزیابی و آزمایش است.",
"fal-ai/bytedance/seedream/v4.5.description": "Seedream 4.5 که توسط تیم Seed ByteDance ساخته شده است، از ویرایش و ترکیب چندتصویری پشتیبانی می‌کند. ویژگی‌های آن شامل سازگاری بیشتر با موضوع، پیروی دقیق از دستورات، درک منطق فضایی، بیان زیبایی‌شناختی، طراحی پوستر و لوگو با رندر دقیق متن-تصویر است.",
"fal-ai/bytedance/seedream/v4.description": "Seedream 4.0 که توسط تیم Seed ByteDance ساخته شده است، از ورودی‌های متن و تصویر برای تولید تصاویر باکیفیت و قابل‌کنترل از طریق دستورات پشتیبانی می‌کند.",
"fal-ai/bytedance/seedream/v4.description": "Seedream 4.0 یک مدل تولید تصویر از ByteDance Seed است که از ورودی‌های متنی و تصویری پشتیبانی می‌کند و تولید تصاویر با کیفیت بالا و قابل کنترل را ارائه می‌دهد. این مدل تصاویر را از دستورات متنی تولید می‌کند.",
"fal-ai/flux-kontext/dev.description": "مدل FLUX.1 با تمرکز بر ویرایش تصویر که از ورودی‌های متنی و تصویری پشتیبانی می‌کند.",
"fal-ai/flux-pro/kontext.description": "FLUX.1 Kontext [pro] ورودی‌های متنی و تصاویر مرجع را می‌پذیرد و امکان ویرایش‌های محلی هدفمند و تغییرات پیچیده در صحنه کلی را فراهم می‌کند.",
"fal-ai/flux/krea.description": "Flux Krea [dev] یک مدل تولید تصویر با تمایل زیبایی‌شناسی به تصاویر طبیعی و واقع‌گرایانه‌تر است.",
@@ -531,8 +527,8 @@
"fal-ai/hunyuan-image/v3.description": "یک مدل قدرتمند بومی چندوجهی برای تولید تصویر.",
"fal-ai/imagen4/preview.description": "مدل تولید تصویر با کیفیت بالا از گوگل.",
"fal-ai/nano-banana.description": "Nano Banana جدیدترین، سریع‌ترین و کارآمدترین مدل چندوجهی بومی گوگل است که امکان تولید و ویرایش تصویر از طریق مکالمه را فراهم می‌کند.",
"fal-ai/qwen-image-edit.description": "مدل ویرایش تصویر حرفه‌ای از تیم Qwen که از ویرایش‌های معنایی و ظاهری، ویرایش دقیق متن‌های چینی/انگلیسی، انتقال سبک، چرخش و موارد دیگر پشتیبانی می‌کند.",
"fal-ai/qwen-image.description": "مدل قدرتمند تولید تصویر از تیم Qwen با قابلیت رندر قوی متن چینی و سبک‌های بصری متنوع.",
"fal-ai/qwen-image-edit.description": "یک مدل ویرایش تصویر حرفه‌ای از تیم Qwen که از ویرایش‌های معنایی و ظاهری پشتیبانی می‌کند، متن‌های چینی و انگلیسی را با دقت ویرایش می‌کند و ویرایش‌های با کیفیت بالا مانند انتقال سبک و چرخش اشیاء را ممکن می‌سازد.",
"fal-ai/qwen-image.description": "یک مدل قدرتمند تولید تصویر از تیم Qwen با قابلیت‌های برجسته در رندر متن چینی و سبک‌های بصری متنوع.",
"flux-1-schnell.description": "مدل تبدیل متن به تصویر با ۱۲ میلیارد پارامتر از Black Forest Labs که از تقطیر انتشار تقابلی نهفته برای تولید تصاویر با کیفیت بالا در ۱ تا ۴ مرحله استفاده می‌کند. این مدل با جایگزین‌های بسته رقابت می‌کند و تحت مجوز Apache-2.0 برای استفاده شخصی، تحقیقاتی و تجاری منتشر شده است.",
"flux-dev.description": "مدل تولید تصویر متن‌باز برای تحقیق و توسعه، به‌طور کارآمد برای پژوهش‌های نوآورانهٔ غیرتجاری بهینه‌سازی شده است.",
"flux-kontext-max.description": "تولید و ویرایش تصویر متنی-زمینه‌ای پیشرفته که متن و تصویر را برای نتایج دقیق و منسجم ترکیب می‌کند.",
@@ -571,10 +567,10 @@
"gemini-3-flash-preview.description": "Gemini 3 Flash هوشمندترین مدل طراحی‌شده برای سرعت است که هوش پیشرفته را با قابلیت جست‌وجوی دقیق ترکیب می‌کند.",
"gemini-3-flash.description": "Gemini 3 Flash از Google — مدل بسیار سریع با پشتیبانی ورودی چندوجهی.",
"gemini-3-pro-image-preview.description": "Gemini 3 Pro Image (Nano Banana Pro) مدل تولید تصویر گوگل است که از گفتگوی چندوجهی نیز پشتیبانی می‌کند.",
"gemini-3-pro-image-preview:image.description": "Gemini 3 Pro Image (Nano Banana Pro) مدل تولید تصویر گوگل است و همچنین از چت چندوجهی پشتیبانی می‌کند.",
"gemini-3-pro-image-preview:image.description": "Gemini 3 Pro Image (Nano Banana Pro) مدل تولید تصویر گوگل است که از چت چندوجهی نیز پشتیبانی می‌کند.",
"gemini-3-pro-preview.description": "Gemini 3 Pro قدرتمندترین مدل عامل و کدنویسی احساسی گوگل است که تعاملات بصری غنی‌تر و تعامل عمیق‌تری را بر پایه استدلال پیشرفته ارائه می‌دهد.",
"gemini-3.1-flash-image-preview.description": "Gemini 3.1 Flash Image (Nano Banana 2) سریع‌ترین مدل تولید تصویر بومی گوگل با پشتیبانی از تفکر، تولید و ویرایش تصویر مکالمه‌ای است.",
"gemini-3.1-flash-image-preview:image.description": "Gemini 3.1 Flash Image (Nano Banana 2) کیفیت تصویر در سطح حرفه‌ای را با سرعت Flash و پشتیبانی از چت چندوجهی ارائه می‌دهد.",
"gemini-3.1-flash-image-preview:image.description": "Gemini 3.1 Flash Image (Nano Banana 2) سریع‌ترین مدل تولید تصویر بومی گوگل با پشتیبانی از تفکر، تولید و ویرایش تصویری مکالمه‌ای است.",
"gemini-3.1-flash-lite-preview.description": "Gemini 3.1 Flash-Lite Preview اقتصادی‌ترین مدل چندوجهی گوگل است که برای وظایف عامل‌محور با حجم بالا، ترجمه و پردازش داده‌ها بهینه شده است.",
"gemini-3.1-pro-preview.description": "پیش‌نمایش Gemini 3.1 Pro قابلیت‌های استدلال بهبود یافته را به Gemini 3 Pro اضافه می‌کند و از سطح تفکر متوسط پشتیبانی می‌کند.",
"gemini-3.1-pro.description": "Gemini 3.1 Pro از Google — مدل ممتاز چندوجهی با پنجره زمینه ۱ میلیون.",
@@ -740,11 +736,9 @@
"grok-4-fast-reasoning.description": "با افتخار Grok 4 Fast را معرفی می‌کنیم، جدیدترین پیشرفت ما در مدل‌های استدلال مقرون‌به‌صرفه.",
"grok-4.20-0309-non-reasoning.description": "نسخه بدون استدلال برای کاربردهای ساده.",
"grok-4.20-0309-reasoning.description": "مدلی هوشمند و بسیار سریع که قبل از پاسخ استدلال می‌کند.",
"grok-4.20-beta-0309-non-reasoning.description": "یک نسخه غیرتفکری برای موارد استفاده ساده.",
"grok-4.20-beta-0309-reasoning.description": "مدلی هوشمند و فوق‌العاده سریع که قبل از پاسخ‌دهی استدلال می‌کند.",
"grok-4.20-multi-agent-0309.description": "مجموعه‌ای از ۴ یا ۱۶ ایجنت که در پژوهش عملکرد عالی دارد. در حال حاضر از ابزارهای سمت کاربر پشتیبانی نمی‌کند و تنها ابزارهای سمت سرور xAI (مانند X Search و Web Search) و ابزارهای MCP از راه دور را پشتیبانی می‌کند.",
"grok-4.3.description": "حقیقت‌جویانه‌ترین مدل زبان بزرگ در جهان",
"grok-4.description": "جدیدترین و قوی‌ترین مدل پرچمدار ما که در NLP، ریاضیات و استدلال برتری دارد—یک مدل همه‌کاره ایده‌آل.",
"grok-4.description": "جدیدترین مدل پرچمدار Grok با عملکرد بی‌نظیر در زبان، ریاضیات و استدلال — یک مدل همه‌کاره واقعی. در حال حاضر به grok-4-0709 اشاره دارد؛ به دلیل منابع محدود، قیمت آن موقتاً ۱۰٪ بالاتر از قیمت رسمی است و انتظار می‌رود به قیمت رسمی بازگردد.",
"grok-code-fast-1.description": "با افتخار grok-code-fast-1 را معرفی می‌کنیم، مدلی سریع و مقرون‌به‌صرفه برای استدلال که در برنامه‌نویسی عامل‌محور عملکرد درخشانی دارد.",
"grok-imagine-image-pro.description": "تصاویر را از دستورات متنی تولید کنید، تصاویر موجود را با زبان طبیعی ویرایش کنید، یا تصاویر را از طریق مکالمات چندمرحله‌ای به‌طور مکرر اصلاح کنید.",
"grok-imagine-image.description": "تصاویر را از دستورات متنی تولید کنید، تصاویر موجود را با زبان طبیعی ویرایش کنید، یا تصاویر را از طریق مکالمات چندمرحله‌ای به‌طور مکرر اصلاح کنید.",
@@ -1233,8 +1227,6 @@
"qwq.description": "QwQ یک مدل استدلال در خانواده Qwen است. در مقایسه با مدل‌های تنظیم‌شده با دستورالعمل استاندارد، توانایی تفکر و استدلال آن عملکرد پایین‌دستی را به‌ویژه در مسائل دشوار به‌طور قابل توجهی بهبود می‌بخشد. QwQ-32B یک مدل استدلال میان‌رده است که با مدل‌های برتر مانند DeepSeek-R1 و o1-mini رقابت می‌کند.",
"qwq_32b.description": "مدل استدلال میان‌رده در خانواده Qwen. در مقایسه با مدل‌های تنظیم‌شده با دستورالعمل استاندارد، توانایی تفکر و استدلال QwQ عملکرد پایین‌دستی را به‌ویژه در مسائل دشوار به‌طور قابل توجهی بهبود می‌بخشد.",
"r1-1776.description": "R1-1776 نسخه پس‌آموزشی مدل DeepSeek R1 است که برای ارائه اطلاعات واقعی، بدون سانسور و بی‌طرف طراحی شده است.",
"seedance-1-5-pro-251215.description": "Seedance 1.5 Pro توسط ByteDance از متن به ویدئو، تصویر به ویدئو (فریم اول، فریم اول+آخر) و تولید صدا همگام با تصاویر پشتیبانی می‌کند.",
"seedream-5-0-260128.description": "ByteDance-Seedream-5.0-lite توسط BytePlus دارای تولید تقویت‌شده با بازیابی وب برای اطلاعات بلادرنگ، تفسیر پیشرفته دستورات پیچیده و بهبود سازگاری مرجع برای خلق بصری حرفه‌ای است.",
"solar-mini-ja.description": "Solar Mini (ژاپنی) نسخه‌ای از Solar Mini با تمرکز بر زبان ژاپنی است که در عین حال عملکرد قوی و کارآمدی در زبان‌های انگلیسی و کره‌ای حفظ می‌کند.",
"solar-mini.description": "Solar Mini یک مدل زبانی فشرده است که عملکردی بهتر از GPT-3.5 دارد و با پشتیبانی چندزبانه قوی از زبان‌های انگلیسی و کره‌ای، راه‌حلی کارآمد با حجم کم ارائه می‌دهد.",
"solar-pro.description": "Solar Pro یک مدل زبانی هوشمند از Upstage است که برای پیروی از دستورالعمل‌ها روی یک GPU طراحی شده و امتیاز IFEval بالای ۸۰ دارد. در حال حاضر از زبان انگلیسی پشتیبانی می‌کند؛ انتشار کامل آن برای نوامبر ۲۰۲۴ با پشتیبانی زبانی گسترده‌تر و زمینه طولانی‌تر برنامه‌ریزی شده است.",
-2
View File
@@ -29,9 +29,7 @@
"agent.layout.switchMessage": "امروز حال و هواشو نداری؟ می‌تونی به <modeLink><modeText>{{mode}}</modeText></modeLink> یا <skipLink><skipText>{{skip}}</skipText></skipLink> تغییر بدی.",
"agent.modeSwitch.agent": "مکالمه‌ای",
"agent.modeSwitch.classic": "کلاسیک",
"agent.modeSwitch.collapse": "بستن",
"agent.modeSwitch.debug": "صادرات اشکال‌زدایی",
"agent.modeSwitch.expand": "باز کردن",
"agent.modeSwitch.label": "حالت آموزش خود را انتخاب کنید",
"agent.modeSwitch.reset": "بازنشانی جریان",
"agent.progress": "{{currentStep}}/{{totalSteps}}",
+1 -10
View File
@@ -256,16 +256,13 @@
"builtins.lobe-skills.apiName.runCommand": "اجرای فرمان",
"builtins.lobe-skills.apiName.searchSkill": "جستجوی مهارت‌ها",
"builtins.lobe-skills.title": "مهارت‌ها",
"builtins.lobe-task.apiName.addTaskComment": "افزودن نظر",
"builtins.lobe-task.apiName.createTask": "ایجاد وظیفه",
"builtins.lobe-task.apiName.createTasks": "ایجاد وظایف",
"builtins.lobe-task.apiName.deleteTask": "حذف وظیفه",
"builtins.lobe-task.apiName.deleteTaskComment": "حذف نظر",
"builtins.lobe-task.apiName.editTask": "ویرایش وظیفه",
"builtins.lobe-task.apiName.listTasks": "لیست وظایف",
"builtins.lobe-task.apiName.runTask": "اجرای وظیفه",
"builtins.lobe-task.apiName.runTasks": "اجرای وظایف",
"builtins.lobe-task.apiName.updateTaskComment": "به‌روزرسانی نظر",
"builtins.lobe-task.apiName.updateTaskStatus": "به‌روزرسانی وضعیت",
"builtins.lobe-task.apiName.viewTask": "مشاهده وظیفه",
"builtins.lobe-task.create.subtaskOf": "زیر وظیفه از {{parent}}",
@@ -276,8 +273,6 @@
"builtins.lobe-task.edit.blocksOn": "مسدود شده توسط",
"builtins.lobe-task.edit.description": "توضیحات به‌روزرسانی شد",
"builtins.lobe-task.edit.instruction": "دستورالعمل به‌روزرسانی شد",
"builtins.lobe-task.edit.parent": "والد",
"builtins.lobe-task.edit.parentClear": "سطح بالا",
"builtins.lobe-task.edit.priority": "اولویت",
"builtins.lobe-task.edit.rename": "تغییر نام",
"builtins.lobe-task.edit.unassign": "لغو اختصاص",
@@ -327,11 +322,6 @@
"builtins.lobe-web-onboarding.inspector.interests_one": "{{count}} علاقه‌مندی",
"builtins.lobe-web-onboarding.inspector.interests_other": "{{count}} علاقه‌مندی",
"builtins.lobe-web-onboarding.title": "آشنایی کاربر",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.delete": "حذف",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.deleteLines": "حذف خطوط",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.insertAt": "درج در خط",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.replace": "جایگزینی",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.replaceLines": "جایگزینی خطوط",
"confirm": "تأیید",
"debug.arguments": "آرگومان‌ها",
"debug.error": "گزارش خطا",
@@ -356,6 +346,7 @@
"detailModal.tabs.settings": "تنظیمات",
"detailModal.title": "جزئیات مهارت",
"dev.confirmDeleteDevPlugin": "این مهارت محلی به‌طور دائمی حذف خواهد شد. ادامه می‌دهید؟",
"dev.customParams.useProxy.label": "نصب از طریق پراکسی (در صورت بروز خطای CORS فعال کنید و دوباره تلاش کنید)",
"dev.deleteSuccess": "مهارت حذف شد",
"dev.manifest.identifier.desc": "شناسه یکتا برای مهارت",
"dev.manifest.identifier.label": "شناسه",
-1
View File
@@ -33,7 +33,6 @@
"jina.description": "Jina AI که در سال 2020 تأسیس شد، یک شرکت پیشرو در زمینه جستجوی هوش مصنوعی است. پشته جستجوی آن شامل مدل‌های برداری، رتبه‌بندها و مدل‌های زبانی کوچک برای ساخت اپلیکیشن‌های جستجوی مولد و چندوجهی با کیفیت بالا است.",
"kimicodingplan.description": "Kimi Code از Moonshot AI دسترسی به مدل‌های Kimi شامل K2.5 را برای وظایف کدنویسی فراهم می‌کند.",
"lmstudio.description": "LM Studio یک اپلیکیشن دسکتاپ برای توسعه و آزمایش مدل‌های زبانی بزرگ روی رایانه شخصی شماست.",
"lobehub.description": "LobeHub Cloud از APIهای رسمی برای دسترسی به مدل‌های هوش مصنوعی استفاده می‌کند و مصرف را با اعتباراتی که به توکن‌های مدل مرتبط هستند، اندازه‌گیری می‌کند.",
"longcat.description": "لانگ‌کت مجموعه‌ای از مدل‌های بزرگ هوش مصنوعی تولیدی است که به‌طور مستقل توسط میتوآن توسعه داده شده است. این مدل‌ها برای افزایش بهره‌وری داخلی شرکت و امکان‌پذیر کردن کاربردهای نوآورانه از طریق معماری محاسباتی کارآمد و قابلیت‌های چندوجهی قدرتمند طراحی شده‌اند.",
"minimax.description": "MiniMax که در سال 2021 تأسیس شد، هوش مصنوعی چندمنظوره با مدل‌های پایه چندوجهی از جمله مدل‌های متنی با پارامترهای تریلیونی، مدل‌های گفتاری و تصویری توسعه می‌دهد و اپ‌هایی مانند Hailuo AI را ارائه می‌کند.",
"minimaxcodingplan.description": "طرح توکن MiniMax دسترسی به مدل‌های MiniMax شامل M2.7 را برای وظایف کدنویسی از طریق اشتراک با هزینه ثابت فراهم می‌کند.",
-7
View File
@@ -30,16 +30,9 @@
"agentMarketplace.category.personalLife": "زندگی شخصی",
"agentMarketplace.category.productManagement": "مدیریت محصول",
"agentMarketplace.category.salesCustomer": "فروش و مشتری",
"agentMarketplace.inspector.moreCategories_one": "+{{count}}",
"agentMarketplace.inspector.moreCategories_other": "+{{count}}",
"agentMarketplace.inspector.pickCount_one": "{{count}} نماینده",
"agentMarketplace.inspector.pickCount_other": "{{count}} نماینده",
"agentMarketplace.picker.empty": "هیچ قالبی موجود نیست.",
"agentMarketplace.picker.failedToLoad": "بارگذاری قالب‌ها ناموفق بود. لطفاً بعداً دوباره تلاش کنید.",
"agentMarketplace.picker.summary": "{{filtered}} / {{total}} قالب‌ها موجود است.",
"agentMarketplace.render.alreadyInLibraryTag": "قبلاً در کتابخانه",
"agentMarketplace.render.alreadyInLibrary_one": "{{count}} قبلاً در کتابخانه",
"agentMarketplace.render.alreadyInLibrary_other": "{{count}} قبلاً در کتابخانه",
"codeInterpreter-legacy.error": "خطای اجرا",
"codeInterpreter-legacy.executing": "در حال اجرا...",
"codeInterpreter-legacy.files": "فایل‌ها:",
+1 -1
View File
@@ -35,7 +35,7 @@
"authModal.title": "Session expirée",
"betterAuth.captcha.continue": "Continuer",
"betterAuth.captcha.description": "Complétez la vérification de sécurité ci-dessous. Nous continuerons automatiquement votre inscription ou connexion.",
"betterAuth.captcha.pendingDescription": "La vérification na pas abouti. Veuillez réessayer le défi.",
"betterAuth.captcha.pendingDescription": "Veuillez d'abord compléter la vérification, puis continuer.",
"betterAuth.captcha.title": "Vérification de sécurité requise",
"betterAuth.errors.confirmPasswordRequired": "Veuillez confirmer votre mot de passe",
"betterAuth.errors.emailExists": "Cet e-mail est déjà enregistré. Veuillez vous connecter",
-1
View File
@@ -27,7 +27,6 @@
"codes.RATE_LIMIT_EXCEEDED": "Trop de requêtes, veuillez réessayer plus tard",
"codes.SESSION_EXPIRED": "La session a expiré, veuillez vous reconnecter",
"codes.SOCIAL_ACCOUNT_ALREADY_LINKED": "Ce compte social est déjà lié à un autre utilisateur",
"codes.TEMPORARY_EMAIL_NOT_ALLOWED": "Les adresses e-mail temporaires ne sont pas prises en charge. Veuillez utiliser une adresse e-mail régulière. Des tentatives répétées peuvent bloquer ce réseau.",
"codes.UNEXPECTED_ERROR": "Une erreur inattendue est survenue, veuillez réessayer",
"codes.UNKNOWN": "Une erreur inconnue est survenue, veuillez réessayer ou contacter le support",
"codes.USER_ALREADY_EXISTS": "L'utilisateur existe déjà",
+4 -15
View File
@@ -673,14 +673,14 @@
"tokenTag.used": "Utilisé",
"tool.intervention.approvalMode": "Mode d'approbation",
"tool.intervention.approve": "Approuver",
"tool.intervention.approveAndRemember": "Approuver et mémoriser",
"tool.intervention.approveOnce": "Approuver cette fois uniquement",
"tool.intervention.mode.allowList": "Liste autorisée",
"tool.intervention.mode.allowListDesc": "Exécuter automatiquement uniquement les outils approuvés",
"tool.intervention.mode.autoRun": "Approbation automatique",
"tool.intervention.mode.autoRunDesc": "Approuver automatiquement toutes les exécutions d'outils",
"tool.intervention.mode.manual": "Manuel",
"tool.intervention.mode.manualDesc": "Approbation manuelle requise pour chaque appel",
"tool.intervention.onboarding.agentIdentity.editHint": "Vous pouvez modifier le nom ou l'avatar directement ci-dessous.",
"tool.intervention.onboarding.agentIdentity.namePlaceholder": "Nom de l'agent",
"tool.intervention.onboarding.agentIdentity.title": "Confirmer la mise à jour de lidentité de lagent",
"tool.intervention.onboarding.agentIdentity.titleAvatarOnly": "Je vais mettre à jour mon avatar",
"tool.intervention.onboarding.agentIdentity.titleNameOnly": "Je vais mettre à jour mon nom",
@@ -690,15 +690,14 @@
"tool.intervention.onboarding.userProfile.fullName": "Nom complet",
"tool.intervention.onboarding.userProfile.responseLanguage": "Langue de réponse",
"tool.intervention.onboarding.userProfile.title": "Confirmez la mise à jour de votre profil",
"tool.intervention.optionApprove": "Approuver",
"tool.intervention.pending": "En attente",
"tool.intervention.reject": "Rejeter",
"tool.intervention.rejectAndContinue": "Rejeter et réessayer",
"tool.intervention.rejectOnly": "Rejeter",
"tool.intervention.rejectReasonPlaceholder": "Une raison aide l'agent à comprendre vos limites et à améliorer ses actions futures",
"tool.intervention.rejectTitle": "Rejeter cet appel de compétence",
"tool.intervention.rejectedWithReason": "Cet appel de compétence a été rejeté : {{reason}}",
"tool.intervention.rememberSimilar": "Ne plus demander pour des actions similaires",
"tool.intervention.scrollToIntervention": "Voir",
"tool.intervention.submit": "Soumettre",
"tool.intervention.toolAbort": "Vous avez annulé cet appel de compétence",
"tool.intervention.toolRejected": "Cet appel de compétence a été rejeté",
"tool.intervention.viewParameters": "Voir les paramètres ({{count}})",
@@ -810,9 +809,7 @@
"workflow.toolDisplayName.searchLocalFiles": "Fichiers recherchés",
"workflow.toolDisplayName.searchSkill": "Compétences recherchées",
"workflow.toolDisplayName.searchUserMemory": "Mémoire consultée",
"workflow.toolDisplayName.showAgentMarketplace": "Équipe d'agents assemblée",
"workflow.toolDisplayName.solve": "Équation résolue",
"workflow.toolDisplayName.submitAgentPick": "Agents sélectionnés",
"workflow.toolDisplayName.updateAgent": "Agent mis à jour",
"workflow.toolDisplayName.updateDocument": "A mis à jour un document",
"workflow.toolDisplayName.updateIdentityMemory": "Mémoire mise à jour",
@@ -851,14 +848,6 @@
"workingPanel.resources.renameEmpty": "Title cannot be empty",
"workingPanel.resources.renameError": "Failed to rename document",
"workingPanel.resources.renameSuccess": "Document renamed",
"workingPanel.resources.tree.createError": "Échec de la création",
"workingPanel.resources.tree.moveError": "Échec du déplacement",
"workingPanel.resources.tree.newDocument": "Nouveau document",
"workingPanel.resources.tree.newFolder": "Nouveau dossier",
"workingPanel.resources.tree.parentMissing": "Le dossier parent est indisponible",
"workingPanel.resources.tree.rename": "Renommer",
"workingPanel.resources.tree.untitledDocument": "Document sans titre",
"workingPanel.resources.tree.untitledFolder": "Dossier sans titre",
"workingPanel.resources.updatedAt": "Mis à jour {{time}}",
"workingPanel.resources.viewMode.list": "Vue en liste",
"workingPanel.resources.viewMode.tree": "Vue arborescente",
-1
View File
@@ -114,7 +114,6 @@
"response.ProviderBizError": "Erreur lors de la requête au service {{provider}}. Veuillez diagnostiquer ou réessayer.",
"response.ProviderContentModeration": "Échec de la vérification de la politique de contenu. Révisez votre demande et réessayez.",
"response.ProviderContentModerationWarning": "Violations répétées des règles détectées. Une mauvaise utilisation supplémentaire pourrait restreindre votre compte.",
"response.ProviderImageContentModerationWarning": "Détections répétées de rejet de sécurité d'image. Des invites similaires peuvent temporairement suspendre la génération d'images.",
"response.QuotaLimitReached": "Désolé, la limite de quota pour cette clé a été atteinte. Veuillez augmenter le quota ou réessayer plus tard.",
"response.QuotaLimitReachedCloud": "Le service du modèle est actuellement très sollicité. Veuillez réessayer plus tard.",
"response.ServerAgentRuntimeError": "Désolé, le service Agent est actuellement indisponible. Veuillez réessayer plus tard ou nous contacter par e-mail.",
-4
View File
@@ -84,9 +84,6 @@
"verify.confirm.fields.platformAccount": "Compte {{platform}}",
"verify.confirm.fields.workspace": "Espace de travail",
"verify.confirm.noAgents": "Vous n'avez pas encore d'agents. Créez-en un dans LobeHub, puis revenez pour terminer la liaison.",
"verify.confirm.relink.description": "Ce compte LobeHub est déjà lié au compte Telegram {{account}}. Pour lier un autre compte Telegram, déconnectez d'abord celui-ci dans Paramètres → Messagerie.",
"verify.confirm.relink.manage": "Ouvrir les paramètres de Messagerie",
"verify.confirm.relink.title": "Un autre compte Telegram est déjà lié",
"verify.confirm.title": "Confirmer la liaison",
"verify.confirm.workspace": "Espace de travail : {{workspace}}",
"verify.error.alreadyLinkedToOther": "Ce compte est déjà lié à un autre compte LobeHub. Connectez-vous d'abord à ce compte.",
@@ -94,7 +91,6 @@
"verify.error.generic": "Une erreur s'est produite. Veuillez réessayer.",
"verify.error.missingToken": "Lien invalide. Ouvrez cette page depuis le bot.",
"verify.error.title": "Impossible de confirmer la liaison",
"verify.error.unlinkBeforeRelink": "Ce compte LobeHub est déjà lié à un autre compte Telegram. Déconnectez-le dans Paramètres → Messagerie avant d'en lier un nouveau.",
"verify.labRequired.description": "La messagerie est actuellement une fonctionnalité Labs. Activez-la dans Paramètres → Avancé → Labs et rechargez cette page.",
"verify.labRequired.openSettings": "Ouvrir les paramètres Labs",
"verify.labRequired.title": "Activez la messagerie pour continuer",
+11 -19
View File
@@ -106,7 +106,6 @@
"MiniMax-Hailuo-2.3.description": "Nouveau modèle de génération vidéo avec des améliorations complètes dans les mouvements corporels, le réalisme physique et le suivi des instructions.",
"MiniMax-M1.description": "Un nouveau modèle de raisonnement interne avec 80 000 chaînes de pensée et 1 million dentrées, offrant des performances comparables aux meilleurs modèles mondiaux.",
"MiniMax-M2-Stable.description": "Conçu pour un codage efficace et des flux de travail dagents, avec une plus grande simultanéité pour un usage commercial.",
"MiniMax-M2.1-Lightning.description": "Capacités de programmation multilingues puissantes avec une inférence plus rapide et plus efficace.",
"MiniMax-M2.1-highspeed.description": "Des capacités de programmation multilingues puissantes, offrant une expérience de programmation entièrement améliorée. Plus rapide et plus efficace.",
"MiniMax-M2.1.description": "MiniMax-M2.1 est un modèle phare open source de MiniMax, conçu pour résoudre des tâches complexes du monde réel. Ses principaux atouts résident dans ses capacités de programmation multilingue et sa faculté à résoudre des problèmes complexes en tant qu'agent.",
"MiniMax-M2.5-highspeed.description": "MiniMax M2.5 Highspeed : Même performance que M2.5 avec une inférence plus rapide.",
@@ -320,13 +319,13 @@
"claude-3-haiku-20240307.description": "Claude 3 Haiku est le modèle le plus rapide et le plus compact dAnthropic, conçu pour des réponses quasi instantanées avec des performances rapides et précises.",
"claude-3-opus-20240229.description": "Claude 3 Opus est le modèle le plus puissant dAnthropic pour les tâches complexes, excellent en performance, intelligence, fluidité et compréhension.",
"claude-3-sonnet-20240229.description": "Claude 3 Sonnet équilibre intelligence et rapidité pour les charges de travail en entreprise, offrant une grande utilité à moindre coût et un déploiement fiable à grande échelle.",
"claude-haiku-4-5-20251001.description": "Claude Haiku 4.5 est le modèle Haiku le plus rapide et le plus intelligent d'Anthropic, avec une vitesse fulgurante et une réflexion étendue.",
"claude-haiku-4-5-20251001.description": "Claude Haiku 4.5 est le modèle Haiku le plus rapide et le plus intelligent d'Anthropic, avec une vitesse fulgurante et un raisonnement étendu.",
"claude-haiku-4-5.description": "Claude Haiku 4.5 par Anthropic — modèle Haiku de nouvelle génération avec un raisonnement et une vision améliorés.",
"claude-haiku-4.5.description": "Claude Haiku 4.5 est le modèle Haiku le plus rapide et le plus intelligent dAnthropic, avec une vitesse fulgurante et un raisonnement étendu.",
"claude-opus-4-1-20250805-thinking.description": "Claude Opus 4.1 Thinking est une variante avancée capable de révéler son processus de raisonnement.",
"claude-opus-4-1-20250805.description": "Claude Opus 4.1 est le dernier modèle d'Anthropic, le plus performant pour les tâches hautement complexes, excelle en performance, intelligence, fluidité et compréhension.",
"claude-opus-4-1-20250805.description": "Claude Opus 4.1 est le modèle le plus récent et le plus performant d'Anthropic pour les tâches hautement complexes, excelling en performance, intelligence, fluidité et compréhension.",
"claude-opus-4-1.description": "Claude Opus 4.1 par Anthropic — modèle de raisonnement premium avec des capacités d'analyse approfondie.",
"claude-opus-4-20250514.description": "Claude Opus 4 est le modèle le plus puissant d'Anthropic pour les tâches hautement complexes, excelle en performance, intelligence, fluidité et compréhension.",
"claude-opus-4-20250514.description": "Claude Opus 4 est le modèle le plus puissant d'Anthropic pour les tâches hautement complexes, excelling en performance, intelligence, fluidité et compréhension.",
"claude-opus-4-5-20251101.description": "Claude Opus 4.5 est le modèle phare dAnthropic, combinant intelligence exceptionnelle et performance évolutive, idéal pour les tâches complexes nécessitant des réponses et un raisonnement de très haute qualité.",
"claude-opus-4-5.description": "Claude Opus 4.5 par Anthropic — modèle phare avec un raisonnement et un codage de premier ordre.",
"claude-opus-4-6.description": "Claude Opus 4.6 par Anthropic — modèle phare avec une fenêtre de contexte de 1M et un raisonnement avancé.",
@@ -335,7 +334,7 @@
"claude-opus-4.6-fast.description": "Claude Opus 4.6 est le modèle le plus intelligent dAnthropic pour la création dagents et le codage.",
"claude-opus-4.6.description": "Claude Opus 4.6 est le modèle le plus intelligent dAnthropic pour la création dagents et le codage.",
"claude-sonnet-4-20250514-thinking.description": "Claude Sonnet 4 Thinking peut produire des réponses quasi instantanées ou une réflexion détaillée étape par étape avec un processus visible.",
"claude-sonnet-4-20250514.description": "Claude Sonnet 4 est le modèle le plus intelligent d'Anthropic à ce jour, offrant des réponses quasi-instantanées ou une réflexion détaillée étape par étape avec un contrôle précis pour les utilisateurs d'API.",
"claude-sonnet-4-20250514.description": "Claude Sonnet 4 peut produire des réponses quasi instantanées ou un raisonnement détaillé étape par étape avec un processus visible.",
"claude-sonnet-4-5-20250929.description": "Claude Sonnet 4.5 est le modèle le plus intelligent d'Anthropic à ce jour.",
"claude-sonnet-4-5.description": "Claude Sonnet 4.5 par Anthropic — Sonnet amélioré avec des performances de codage accrues.",
"claude-sonnet-4-6.description": "Claude Sonnet 4.6 par Anthropic — dernier modèle Sonnet avec un codage supérieur et une utilisation d'outils avancée.",
@@ -409,7 +408,7 @@
"deepseek-ai/deepseek-llm-67b-chat.description": "DeepSeek LLM Chat (67B) est un modèle innovant offrant une compréhension linguistique approfondie et une interaction fluide.",
"deepseek-ai/deepseek-v3.1-terminus.description": "DeepSeek V3.1 est un modèle de raisonnement nouvelle génération avec un raisonnement complexe renforcé et une chaîne de pensée pour les tâches danalyse approfondie.",
"deepseek-ai/deepseek-v3.2.description": "DeepSeek V3.2 est un modèle de raisonnement de nouvelle génération avec des capacités renforcées de raisonnement complexe et de chaîne de pensée.",
"deepseek-chat.description": "Alias de compatibilité pour le mode non-réflexif de DeepSeek V4 Flash. Prévu pour être abandonné — utilisez DeepSeek V4 Flash à la place.",
"deepseek-chat.description": "Un nouveau modèle open-source combinant des capacités générales et de codage. Il conserve le dialogue général du modèle de chat et les solides compétences en codage du modèle de programmeur, avec un meilleur alignement des préférences. DeepSeek-V2.5 améliore également l'écriture et le suivi des instructions.",
"deepseek-coder-33B-instruct.description": "DeepSeek Coder 33B est un modèle de langage pour le code entraîné sur 2T de tokens (87 % de code, 13 % de texte en chinois/anglais). Il introduit une fenêtre de contexte de 16K et des tâches de remplissage au milieu, offrant une complétion de code à l’échelle du projet et un remplissage de fragments.",
"deepseek-coder-v2.description": "DeepSeek Coder V2 est un modèle de code MoE open source performant sur les tâches de programmation, comparable à GPT-4 Turbo.",
"deepseek-coder-v2:236b.description": "DeepSeek Coder V2 est un modèle de code MoE open source performant sur les tâches de programmation, comparable à GPT-4 Turbo.",
@@ -431,7 +430,7 @@
"deepseek-r1-fast-online.description": "Version complète rapide de DeepSeek R1 avec recherche web en temps réel, combinant des capacités à l’échelle de 671B et des réponses plus rapides.",
"deepseek-r1-online.description": "Version complète de DeepSeek R1 avec 671B de paramètres et recherche web en temps réel, offrant une meilleure compréhension et génération.",
"deepseek-r1.description": "DeepSeek-R1 utilise des données de démarrage à froid avant lapprentissage par renforcement et affiche des performances comparables à OpenAI-o1 en mathématiques, codage et raisonnement.",
"deepseek-reasoner.description": "Alias de compatibilité pour le mode réflexif de DeepSeek V4 Flash. Prévu pour être abandonné — utilisez DeepSeek V4 Flash à la place.",
"deepseek-reasoner.description": "Alias de compatibilité pour le mode de réflexion Flash de DeepSeek V4. Prévu pour être obsolète — utilisez deepseek-v4-flash à la place.",
"deepseek-v2.description": "DeepSeek V2 est un modèle MoE efficace pour un traitement économique.",
"deepseek-v2:236b.description": "DeepSeek V2 236B est le modèle axé sur le code de DeepSeek avec une forte génération de code.",
"deepseek-v3-0324.description": "DeepSeek-V3-0324 est un modèle MoE de 671B paramètres avec des points forts en programmation, compréhension du contexte et traitement de longs textes.",
@@ -496,8 +495,6 @@
"doubao-seedream-4-0-250828.description": "Seedream 4.0 est un modèle de génération dimage de ByteDance Seed, prenant en charge les entrées texte et image avec une génération dimage de haute qualité et hautement contrôlable. Il génère des images à partir dinvites textuelles.",
"doubao-seedream-4-5-251128.description": "Seedream 4.5 est le dernier modèle d'image multimodal de ByteDance, intégrant des capacités de génération de texte en image, d'image en image et de génération d'images par lots, tout en incorporant des compétences en raisonnement et en bon sens. Par rapport à la version précédente 4.0, il offre une qualité de génération nettement améliorée, avec une meilleure cohérence d'édition et une fusion multi-images. Il permet un contrôle plus précis des détails visuels, produisant des textes et des visages plus petits de manière plus naturelle, et atteint une mise en page et des couleurs plus harmonieuses, améliorant l'esthétique globale.",
"doubao-seedream-5-0-260128.description": "Doubao-Seedream-5.0-lite est le dernier modèle de génération d'images de ByteDance. Pour la première fois, il intègre des capacités de recherche en ligne, lui permettant d'incorporer des informations web en temps réel et d'améliorer la pertinence des images générées. L'intelligence du modèle a également été améliorée, permettant une interprétation précise des instructions complexes et du contenu visuel. De plus, il offre une meilleure couverture des connaissances globales, une cohérence des références et une qualité de génération dans des scénarios professionnels, répondant mieux aux besoins de création visuelle au niveau des entreprises.",
"dreamina-seedance-2-0-260128.description": "Seedance 2.0 de ByteDance est le modèle de génération vidéo le plus puissant, prenant en charge la génération de vidéos de référence multimodales, le montage vidéo, l'extension vidéo, la conversion texte en vidéo et image en vidéo avec audio synchronisé.",
"dreamina-seedance-2-0-fast-260128.description": "Seedance 2.0 Fast de ByteDance offre les mêmes capacités que Seedance 2.0 avec des vitesses de génération plus rapides à un prix plus compétitif.",
"emohaa.description": "Emohaa est un modèle de santé mentale doté de compétences professionnelles en conseil pour aider les utilisateurs à comprendre leurs problèmes émotionnels.",
"ernie-4.5-0.3b.description": "ERNIE 4.5 0.3B est un modèle léger open source conçu pour un déploiement local et personnalisé.",
"ernie-4.5-8k-preview.description": "ERNIE 4.5 8K Preview est un modèle de prévisualisation avec contexte 8K pour l’évaluation dERNIE 4.5.",
@@ -522,8 +519,7 @@
"ernie-x1-turbo-32k.description": "ERNIE X1 Turbo 32K est un modèle de réflexion rapide avec un contexte de 32K pour le raisonnement complexe et les dialogues multi-tours.",
"ernie-x1.1-preview.description": "ERNIE X1.1 Preview est une préversion de modèle de réflexion pour l’évaluation et les tests.",
"ernie-x1.1.description": "ERNIE X1.1 est un modèle de réflexion en aperçu pour évaluation et test.",
"fal-ai/bytedance/seedream/v4.5.description": "Seedream 4.5, développé par l'équipe Seed de ByteDance, prend en charge l'édition et la composition multi-images. Inclut une meilleure cohérence des sujets, un suivi précis des instructions, une compréhension de la logique spatiale, une expression esthétique, une mise en page de posters et la conception de logos avec un rendu texte-image de haute précision.",
"fal-ai/bytedance/seedream/v4.description": "Seedream 4.0, développé par ByteDance Seed, prend en charge les entrées texte et image pour une génération d'images hautement contrôlable et de haute qualité à partir de prompts.",
"fal-ai/bytedance/seedream/v4.description": "Seedream 4.0 est un modèle de génération d'images de ByteDance Seed, prenant en charge les entrées texte et image avec une génération d'images hautement contrôlable et de haute qualité. Il génère des images à partir de descriptions textuelles.",
"fal-ai/flux-kontext/dev.description": "Modèle FLUX.1 axé sur l’édition dimages, prenant en charge les entrées texte et image.",
"fal-ai/flux-pro/kontext.description": "FLUX.1 Kontext [pro] accepte des textes et des images de référence en entrée, permettant des modifications locales ciblées et des transformations globales complexes de scènes.",
"fal-ai/flux/krea.description": "Flux Krea [dev] est un modèle de génération dimages avec une préférence esthétique pour des images plus réalistes et naturelles.",
@@ -531,8 +527,8 @@
"fal-ai/hunyuan-image/v3.description": "Un puissant modèle natif multimodal de génération dimages.",
"fal-ai/imagen4/preview.description": "Modèle de génération dimages de haute qualité développé par Google.",
"fal-ai/nano-banana.description": "Nano Banana est le modèle multimodal natif le plus récent, le plus rapide et le plus efficace de Google, permettant la génération et l’édition dimages via la conversation.",
"fal-ai/qwen-image-edit.description": "Un modèle d'édition d'images professionnel de l'équipe Qwen, prenant en charge les modifications sémantiques et d'apparence, l'édition précise de texte en chinois/anglais, le transfert de style, la rotation et plus encore.",
"fal-ai/qwen-image.description": "Un modèle puissant de génération d'images de l'équipe Qwen avec un rendu texte chinois robuste et des styles visuels variés.",
"fal-ai/qwen-image-edit.description": "Un modèle professionnel d'édition d'images de l'équipe Qwen qui prend en charge les modifications sémantiques et d'apparence, édite précisément le texte en chinois et en anglais, et permet des modifications de haute qualité telles que le transfert de style et la rotation d'objets.",
"fal-ai/qwen-image.description": "Un puissant modèle de génération d'images de l'équipe Qwen avec un rendu impressionnant du texte en chinois et des styles visuels variés.",
"flux-1-schnell.description": "Modèle texte-vers-image à 12 milliards de paramètres de Black Forest Labs utilisant la distillation par diffusion latente adversariale pour générer des images de haute qualité en 1 à 4 étapes. Il rivalise avec les alternatives propriétaires et est publié sous licence Apache-2.0 pour un usage personnel, de recherche et commercial.",
"flux-dev.description": "Modèle open source de génération dimages destiné à la R&D, optimisé efficacement pour la recherche dinnovation non commerciale.",
"flux-kontext-max.description": "Génération et édition dimages contextuelles de pointe, combinant texte et images pour des résultats précis et cohérents.",
@@ -574,7 +570,7 @@
"gemini-3-pro-image-preview:image.description": "Gemini 3 Pro Image (Nano Banana Pro) est le modèle de génération d'images de Google et prend également en charge le chat multimodal.",
"gemini-3-pro-preview.description": "Gemini 3 Pro est le modèle agent et de codage le plus puissant de Google, offrant des visuels enrichis et une interaction plus poussée grâce à un raisonnement de pointe.",
"gemini-3.1-flash-image-preview.description": "Gemini 3.1 Flash Image (Nano Banana 2) est le modèle de génération d'images natif le plus rapide de Google avec prise en charge de la réflexion, génération et édition d'images conversationnelles.",
"gemini-3.1-flash-image-preview:image.description": "Gemini 3.1 Flash Image (Nano Banana 2) offre une qualité d'image de niveau Pro à une vitesse Flash avec prise en charge du chat multimodal.",
"gemini-3.1-flash-image-preview:image.description": "Gemini 3.1 Flash Image (Nano Banana 2) est le modèle de génération d'images natif le plus rapide de Google avec prise en charge de la réflexion, génération et édition d'images conversationnelles.",
"gemini-3.1-flash-lite-preview.description": "Gemini 3.1 Flash-Lite Preview est le modèle multimodal le plus économique de Google, optimisé pour les tâches agentiques à haut volume, la traduction et le traitement des données.",
"gemini-3.1-pro-preview.description": "Gemini 3.1 Pro Preview améliore Gemini 3 Pro avec des capacités de raisonnement renforcées et ajoute un support de niveau de réflexion moyen.",
"gemini-3.1-pro.description": "Gemini 3.1 Pro par Google — modèle multimodal premium avec une fenêtre contextuelle de 1M.",
@@ -740,11 +736,9 @@
"grok-4-fast-reasoning.description": "Nous sommes ravis de présenter Grok 4 Fast, notre dernière avancée en matière de modèles de raisonnement économiques.",
"grok-4.20-0309-non-reasoning.description": "Une variante sans raisonnement pour des cas d'utilisation simples.",
"grok-4.20-0309-reasoning.description": "Modèle intelligent et ultra-rapide qui raisonne avant de répondre.",
"grok-4.20-beta-0309-non-reasoning.description": "Une variante non-réflexive pour des cas d'utilisation simples.",
"grok-4.20-beta-0309-reasoning.description": "Modèle intelligent et ultra-rapide qui réfléchit avant de répondre.",
"grok-4.20-multi-agent-0309.description": "Une équipe de 4 ou 16 agents, excelle dans les cas d'utilisation de recherche. Ne prend actuellement pas en charge les outils côté client. Prend uniquement en charge les outils côté serveur xAI (par exemple X Search, outils de recherche Web) et les outils MCP distants.",
"grok-4.3.description": "Le modèle de langage de grande taille le plus axé sur la vérité au monde",
"grok-4.description": "Notre modèle phare le plus récent et le plus puissant, excelle en PNL, mathématiques et raisonnement — un tout-en-un idéal.",
"grok-4.description": "Dernier modèle phare Grok avec des performances inégalées en langage, mathématiques et raisonnement — un véritable polyvalent. Actuellement pointé vers grok-4-0709 ; en raison de ressources limitées, son prix est temporairement 10 % plus élevé que le tarif officiel et devrait revenir au prix officiel ultérieurement.",
"grok-code-fast-1.description": "Nous sommes ravis de lancer grok-code-fast-1, un modèle de raisonnement rapide et économique, excellent pour le codage agentique.",
"grok-imagine-image-pro.description": "Générez des images à partir de prompts textuels, modifiez des images existantes avec un langage naturel ou affinez les images de manière itérative via des conversations multi-tours.",
"grok-imagine-image.description": "Générez des images à partir de prompts textuels, modifiez des images existantes avec un langage naturel ou affinez les images de manière itérative via des conversations multi-tours.",
@@ -1233,8 +1227,6 @@
"qwq.description": "QwQ est un modèle de raisonnement de la famille Qwen. Comparé aux modèles classiques ajustés par instruction, il apporte des capacités de réflexion et de raisonnement qui améliorent considérablement les performances en aval, notamment sur les problèmes complexes. QwQ-32B est un modèle de raisonnement de taille moyenne qui rivalise avec les meilleurs modèles comme DeepSeek-R1 et o1-mini.",
"qwq_32b.description": "Modèle de raisonnement de taille moyenne de la famille Qwen. Comparé aux modèles classiques ajustés par instruction, les capacités de réflexion et de raisonnement de QwQ améliorent considérablement les performances en aval, notamment sur les problèmes complexes.",
"r1-1776.description": "R1-1776 est une variante post-entraînée de DeepSeek R1 conçue pour fournir des informations factuelles non censurées et impartiales.",
"seedance-1-5-pro-251215.description": "Seedance 1.5 Pro de ByteDance prend en charge la conversion texte en vidéo, image en vidéo (première image, première+dernière image) et la génération audio synchronisée avec les visuels.",
"seedream-5-0-260128.description": "ByteDance-Seedream-5.0-lite par BytePlus propose une génération augmentée par récupération web pour des informations en temps réel, une interprétation améliorée des prompts complexes et une meilleure cohérence des références pour la création visuelle professionnelle.",
"solar-mini-ja.description": "Solar Mini (Ja) étend Solar Mini avec un accent sur le japonais tout en maintenant des performances efficaces et solides en anglais et en coréen.",
"solar-mini.description": "Solar Mini est un modèle LLM compact surpassant GPT-3.5, avec de solides capacités multilingues en anglais et en coréen, offrant une solution efficace à faible empreinte.",
"solar-pro.description": "Solar Pro est un LLM intelligent développé par Upstage, axé sur le suivi d'instructions sur un seul GPU, avec des scores IFEval supérieurs à 80. Il prend actuellement en charge l'anglais ; la version complète est prévue pour novembre 2024 avec un support linguistique élargi et un contexte plus long.",
-2
View File
@@ -29,9 +29,7 @@
"agent.layout.switchMessage": "Pas d'humeur aujourd'hui ? Vous pouvez passer en <modeLink><modeText>{{mode}}</modeText></modeLink> ou <skipLink><skipText>{{skip}}</skipText></skipLink>.",
"agent.modeSwitch.agent": "Conversationnel",
"agent.modeSwitch.classic": "Classique",
"agent.modeSwitch.collapse": "Réduire",
"agent.modeSwitch.debug": "Exportation de débogage",
"agent.modeSwitch.expand": "Développer",
"agent.modeSwitch.label": "Choisissez votre mode d'intégration",
"agent.modeSwitch.reset": "Réinitialiser le processus",
"agent.progress": "{{currentStep}}/{{totalSteps}}",
+1 -10
View File
@@ -256,16 +256,13 @@
"builtins.lobe-skills.apiName.runCommand": "Exécuter la commande",
"builtins.lobe-skills.apiName.searchSkill": "Rechercher des Compétences",
"builtins.lobe-skills.title": "Compétences",
"builtins.lobe-task.apiName.addTaskComment": "Ajouter un commentaire",
"builtins.lobe-task.apiName.createTask": "Créer une tâche",
"builtins.lobe-task.apiName.createTasks": "Créer des tâches",
"builtins.lobe-task.apiName.deleteTask": "Supprimer une tâche",
"builtins.lobe-task.apiName.deleteTaskComment": "Supprimer le commentaire",
"builtins.lobe-task.apiName.editTask": "Modifier une tâche",
"builtins.lobe-task.apiName.listTasks": "Lister les tâches",
"builtins.lobe-task.apiName.runTask": "Exécuter une tâche",
"builtins.lobe-task.apiName.runTasks": "Exécuter des tâches",
"builtins.lobe-task.apiName.updateTaskComment": "Mettre à jour le commentaire",
"builtins.lobe-task.apiName.updateTaskStatus": "Mettre à jour le statut",
"builtins.lobe-task.apiName.viewTask": "Voir une tâche",
"builtins.lobe-task.create.subtaskOf": "Sous-tâche de {{parent}}",
@@ -276,8 +273,6 @@
"builtins.lobe-task.edit.blocksOn": "bloque sur",
"builtins.lobe-task.edit.description": "description mise à jour",
"builtins.lobe-task.edit.instruction": "instruction mise à jour",
"builtins.lobe-task.edit.parent": "parent",
"builtins.lobe-task.edit.parentClear": "niveau supérieur",
"builtins.lobe-task.edit.priority": "priorité",
"builtins.lobe-task.edit.rename": "renommer",
"builtins.lobe-task.edit.unassign": "désassigner",
@@ -327,11 +322,6 @@
"builtins.lobe-web-onboarding.inspector.interests_one": "{{count}} intérêt",
"builtins.lobe-web-onboarding.inspector.interests_other": "{{count}} intérêts",
"builtins.lobe-web-onboarding.title": "Intégration utilisateur",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.delete": "Supprimer",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.deleteLines": "Supprimer les lignes",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.insertAt": "Insérer à la ligne",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.replace": "Remplacer",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.replaceLines": "Remplacer les lignes",
"confirm": "Confirmer",
"debug.arguments": "Arguments",
"debug.error": "Journal des Erreurs",
@@ -356,6 +346,7 @@
"detailModal.tabs.settings": "Paramètres",
"detailModal.title": "Détails de la compétence",
"dev.confirmDeleteDevPlugin": "Cette compétence locale sera supprimée définitivement. Continuer ?",
"dev.customParams.useProxy.label": "Installer via proxy (activer en cas derreurs CORS, puis réessayer)",
"dev.deleteSuccess": "Compétence supprimée",
"dev.manifest.identifier.desc": "Identifiant unique de la compétence",
"dev.manifest.identifier.label": "Identifiant",
-1
View File
@@ -33,7 +33,6 @@
"jina.description": "Fondée en 2020, Jina AI est une entreprise leader en IA de recherche. Sa pile technologique comprend des modèles vectoriels, des rerankers et de petits modèles linguistiques pour créer des applications de recherche générative et multimodale fiables et de haute qualité.",
"kimicodingplan.description": "Kimi Code de Moonshot AI offre un accès aux modèles Kimi, y compris K2.5, pour des tâches de codage.",
"lmstudio.description": "LM Studio est une application de bureau pour développer et expérimenter avec des LLMs sur votre ordinateur.",
"lobehub.description": "LobeHub Cloud utilise des API officielles pour accéder aux modèles d'IA et mesure l'utilisation avec des Crédits liés aux jetons des modèles.",
"longcat.description": "LongCat est une série de grands modèles d'IA générative développés indépendamment par Meituan. Elle est conçue pour améliorer la productivité interne de l'entreprise et permettre des applications innovantes grâce à une architecture informatique efficace et de puissantes capacités multimodales.",
"minimax.description": "Fondée en 2021, MiniMax développe une IA généraliste avec des modèles fondamentaux multimodaux, incluant des modèles texte MoE à un billion de paramètres, des modèles vocaux et visuels, ainsi que des applications comme Hailuo AI.",
"minimaxcodingplan.description": "Le plan de jetons MiniMax offre un accès aux modèles MiniMax, y compris M2.7, pour des tâches de codage via un abonnement à tarif fixe.",
-7
View File
@@ -30,16 +30,9 @@
"agentMarketplace.category.personalLife": "Vie Personnelle",
"agentMarketplace.category.productManagement": "Gestion de Produit",
"agentMarketplace.category.salesCustomer": "Ventes & Clientèle",
"agentMarketplace.inspector.moreCategories_one": "+{{count}}",
"agentMarketplace.inspector.moreCategories_other": "+{{count}}",
"agentMarketplace.inspector.pickCount_one": "{{count}} agent",
"agentMarketplace.inspector.pickCount_other": "{{count}} agents",
"agentMarketplace.picker.empty": "Aucun modèle disponible.",
"agentMarketplace.picker.failedToLoad": "Échec du chargement des modèles. Veuillez réessayer plus tard.",
"agentMarketplace.picker.summary": "{{filtered}} / {{total}} modèles disponibles.",
"agentMarketplace.render.alreadyInLibraryTag": "Déjà dans la bibliothèque",
"agentMarketplace.render.alreadyInLibrary_one": "{{count}} déjà dans la bibliothèque",
"agentMarketplace.render.alreadyInLibrary_other": "{{count}} déjà dans la bibliothèque",
"codeInterpreter-legacy.error": "Erreur d'exécution",
"codeInterpreter-legacy.executing": "Exécution en cours...",
"codeInterpreter-legacy.files": "Fichiers :",
+1 -1
View File
@@ -35,7 +35,7 @@
"authModal.title": "Sessione scaduta",
"betterAuth.captcha.continue": "Continua",
"betterAuth.captcha.description": "Completa la verifica di sicurezza qui sotto. Continueremo automaticamente la tua registrazione o accesso.",
"betterAuth.captcha.pendingDescription": "La verifica non è stata completata. Riprova la sfida.",
"betterAuth.captcha.pendingDescription": "Per favore, completa prima la verifica, poi continua.",
"betterAuth.captcha.title": "Verifica di sicurezza richiesta",
"betterAuth.errors.confirmPasswordRequired": "Conferma la tua password",
"betterAuth.errors.emailExists": "Questa email è già registrata. Effettua l'accesso",
-1
View File
@@ -27,7 +27,6 @@
"codes.RATE_LIMIT_EXCEEDED": "Troppe richieste, riprova più tardi",
"codes.SESSION_EXPIRED": "La sessione è scaduta, effettua nuovamente l'accesso",
"codes.SOCIAL_ACCOUNT_ALREADY_LINKED": "Questo account social è già collegato a un altro utente",
"codes.TEMPORARY_EMAIL_NOT_ALLOWED": "Gli indirizzi email temporanei non sono supportati. Si prega di utilizzare un indirizzo email regolare. Tentativi ripetuti potrebbero bloccare questa rete.",
"codes.UNEXPECTED_ERROR": "Si è verificato un errore imprevisto, riprova",
"codes.UNKNOWN": "Si è verificato un errore sconosciuto, riprova o contatta il supporto",
"codes.USER_ALREADY_EXISTS": "L'utente esiste già",
+4 -15
View File
@@ -673,14 +673,14 @@
"tokenTag.used": "Utilizzati",
"tool.intervention.approvalMode": "Modalità di Approvazione",
"tool.intervention.approve": "Approva",
"tool.intervention.approveAndRemember": "Approva e ricorda",
"tool.intervention.approveOnce": "Approva solo questa volta",
"tool.intervention.mode.allowList": "Lista consentiti",
"tool.intervention.mode.allowListDesc": "Esegui automaticamente solo gli strumenti approvati",
"tool.intervention.mode.autoRun": "Approvazione automatica",
"tool.intervention.mode.autoRunDesc": "Approva automaticamente tutte le esecuzioni degli strumenti",
"tool.intervention.mode.manual": "Manuale",
"tool.intervention.mode.manualDesc": "Richiede approvazione manuale per ogni invocazione",
"tool.intervention.onboarding.agentIdentity.editHint": "Puoi modificare il nome o l'avatar direttamente qui sotto.",
"tool.intervention.onboarding.agentIdentity.namePlaceholder": "Nome agente",
"tool.intervention.onboarding.agentIdentity.title": "Conferma aggiornamento identità dellagente",
"tool.intervention.onboarding.agentIdentity.titleAvatarOnly": "Aggiornerò il mio avatar",
"tool.intervention.onboarding.agentIdentity.titleNameOnly": "Aggiornerò il mio nome",
@@ -690,15 +690,14 @@
"tool.intervention.onboarding.userProfile.fullName": "Nome completo",
"tool.intervention.onboarding.userProfile.responseLanguage": "Lingua di risposta",
"tool.intervention.onboarding.userProfile.title": "Conferma l'aggiornamento del tuo profilo",
"tool.intervention.optionApprove": "Approva",
"tool.intervention.pending": "In sospeso",
"tool.intervention.reject": "Rifiuta",
"tool.intervention.rejectAndContinue": "Rifiuta e riprova",
"tool.intervention.rejectOnly": "Rifiuta",
"tool.intervention.rejectReasonPlaceholder": "Un motivo aiuta l'agente a comprendere i tuoi limiti e migliorare le azioni future",
"tool.intervention.rejectTitle": "Rifiuta questa chiamata Skill",
"tool.intervention.rejectedWithReason": "Questa chiamata Skill è stata rifiutata: {{reason}}",
"tool.intervention.rememberSimilar": "Non chiedere di nuovo per azioni simili",
"tool.intervention.scrollToIntervention": "Visualizza",
"tool.intervention.submit": "Invia",
"tool.intervention.toolAbort": "Hai annullato questa chiamata Skill",
"tool.intervention.toolRejected": "Questa chiamata Skill è stata rifiutata",
"tool.intervention.viewParameters": "Visualizza parametri ({{count}})",
@@ -810,9 +809,7 @@
"workflow.toolDisplayName.searchLocalFiles": "File cercati",
"workflow.toolDisplayName.searchSkill": "Competenze cercate",
"workflow.toolDisplayName.searchUserMemory": "Memoria utente consultata",
"workflow.toolDisplayName.showAgentMarketplace": "Team di agenti assemblato",
"workflow.toolDisplayName.solve": "Equazione risolta",
"workflow.toolDisplayName.submitAgentPick": "Agenti selezionati",
"workflow.toolDisplayName.updateAgent": "Agente aggiornato",
"workflow.toolDisplayName.updateDocument": "Ha aggiornato un documento",
"workflow.toolDisplayName.updateIdentityMemory": "Memoria aggiornata",
@@ -851,14 +848,6 @@
"workingPanel.resources.renameEmpty": "Title cannot be empty",
"workingPanel.resources.renameError": "Failed to rename document",
"workingPanel.resources.renameSuccess": "Document renamed",
"workingPanel.resources.tree.createError": "Creazione non riuscita",
"workingPanel.resources.tree.moveError": "Spostamento non riuscito",
"workingPanel.resources.tree.newDocument": "Nuovo documento",
"workingPanel.resources.tree.newFolder": "Nuova cartella",
"workingPanel.resources.tree.parentMissing": "Cartella principale non disponibile",
"workingPanel.resources.tree.rename": "Rinomina",
"workingPanel.resources.tree.untitledDocument": "Documento senza titolo",
"workingPanel.resources.tree.untitledFolder": "Cartella senza titolo",
"workingPanel.resources.updatedAt": "Aggiornato {{time}}",
"workingPanel.resources.viewMode.list": "Vista elenco",
"workingPanel.resources.viewMode.tree": "Vista ad albero",
-1
View File
@@ -114,7 +114,6 @@
"response.ProviderBizError": "Errore nella richiesta al servizio {{provider}}. Risolvi il problema o riprova utilizzando le informazioni seguenti.",
"response.ProviderContentModeration": "Controllo delle politiche sui contenuti non riuscito. Modifica il tuo prompt e riprova.",
"response.ProviderContentModerationWarning": "Violazioni ripetute delle politiche rilevate. Ulteriori abusi potrebbero limitare il tuo account.",
"response.ProviderImageContentModerationWarning": "Rilevati ripetuti rifiuti di sicurezza delle immagini. Promemoria simili potrebbero temporaneamente sospendere la generazione di immagini.",
"response.QuotaLimitReached": "Spiacenti, l'utilizzo dei token o il numero di richieste ha raggiunto il limite per questa chiave. Aumenta la quota o riprova più tardi.",
"response.QuotaLimitReachedCloud": "Il servizio del modello è attualmente sotto carico elevato. Per favore, riprova più tardi.",
"response.ServerAgentRuntimeError": "Spiacenti, il servizio Agent non è disponibile. Riprova più tardi o contattaci via email.",
-4
View File
@@ -84,9 +84,6 @@
"verify.confirm.fields.platformAccount": "Account {{platform}}",
"verify.confirm.fields.workspace": "Workspace",
"verify.confirm.noAgents": "Non hai ancora agenti. Creane uno in LobeHub, quindi torna per completare il collegamento.",
"verify.confirm.relink.description": "Questo account LobeHub è già collegato all'account Telegram {{account}}. Per collegare un altro account Telegram, scollega prima quello attuale in Impostazioni → Messenger.",
"verify.confirm.relink.manage": "Apri le impostazioni di Messenger",
"verify.confirm.relink.title": "Un altro account Telegram è già collegato",
"verify.confirm.title": "Conferma collegamento",
"verify.confirm.workspace": "Workspace: {{workspace}}",
"verify.error.alreadyLinkedToOther": "Questo account è già collegato a un altro account LobeHub. Accedi prima a quell'account.",
@@ -94,7 +91,6 @@
"verify.error.generic": "Qualcosa è andato storto. Riprova.",
"verify.error.missingToken": "Collegamento non valido. Apri questa pagina dal bot.",
"verify.error.title": "Impossibile confermare il collegamento",
"verify.error.unlinkBeforeRelink": "Questo account LobeHub è già collegato a un altro account Telegram. Scollegalo in Impostazioni → Messenger prima di collegarne uno nuovo.",
"verify.labRequired.description": "Messenger è attualmente una funzionalità Labs. Abilitala in Impostazioni → Avanzate → Labs e ricarica questa pagina.",
"verify.labRequired.openSettings": "Apri impostazioni Labs",
"verify.labRequired.title": "Abilita Messenger per continuare",
+9 -17
View File
@@ -106,7 +106,6 @@
"MiniMax-Hailuo-2.3.description": "Nuovo modello di generazione video con aggiornamenti completi nei movimenti del corpo, realismo fisico e aderenza alle istruzioni.",
"MiniMax-M1.description": "Nuovo modello di ragionamento proprietario con 80K chain-of-thought e 1M di input, con prestazioni comparabili ai migliori modelli globali.",
"MiniMax-M2-Stable.description": "Progettato per flussi di lavoro di codifica e agenti efficienti, con maggiore concorrenza per l'uso commerciale.",
"MiniMax-M2.1-Lightning.description": "Potenti capacità di programmazione multilingue con inferenza più veloce ed efficiente.",
"MiniMax-M2.1-highspeed.description": "Potenti capacità di programmazione multilingue, esperienza di programmazione completamente aggiornata. Più veloce ed efficiente.",
"MiniMax-M2.1.description": "MiniMax-M2.1 è un modello open-source di punta di MiniMax, progettato per affrontare compiti complessi del mondo reale. I suoi punti di forza principali sono le capacità di programmazione multilingue e la risoluzione di compiti complessi come agente.",
"MiniMax-M2.5-highspeed.description": "MiniMax M2.5 Highspeed: Stesse prestazioni di M2.5 con inferenza più veloce.",
@@ -320,7 +319,7 @@
"claude-3-haiku-20240307.description": "Claude 3 Haiku è il modello più veloce e compatto di Anthropic, progettato per risposte quasi istantanee con prestazioni rapide e accurate.",
"claude-3-opus-20240229.description": "Claude 3 Opus è il modello più potente di Anthropic per compiti altamente complessi, eccellendo in prestazioni, intelligenza, fluidità e comprensione.",
"claude-3-sonnet-20240229.description": "Claude 3 Sonnet bilancia intelligenza e velocità per carichi di lavoro aziendali, offrendo alta utilità a costi inferiori e distribuzione affidabile su larga scala.",
"claude-haiku-4-5-20251001.description": "Claude Haiku 4.5 è il modello Haiku più veloce e intelligente di Anthropic, con velocità fulminea e pensiero esteso.",
"claude-haiku-4-5-20251001.description": "Claude Haiku 4.5 è il modello Haiku più veloce e intelligente di Anthropic, con velocità fulminea e ragionamento esteso.",
"claude-haiku-4-5.description": "Claude Haiku 4.5 di Anthropic — Haiku di nuova generazione con ragionamento e visione migliorati.",
"claude-haiku-4.5.description": "Claude Haiku 4.5 è il modello Haiku più veloce e intelligente di Anthropic, con velocità fulminea e capacità di ragionamento estese.",
"claude-opus-4-1-20250805-thinking.description": "Claude Opus 4.1 Thinking è una variante avanzata in grado di mostrare il proprio processo di ragionamento.",
@@ -335,7 +334,7 @@
"claude-opus-4.6-fast.description": "Claude Opus 4.6 è il modello più intelligente di Anthropic per la creazione di agenti e la programmazione.",
"claude-opus-4.6.description": "Claude Opus 4.6 è il modello più intelligente di Anthropic per la creazione di agenti e la programmazione.",
"claude-sonnet-4-20250514-thinking.description": "Claude Sonnet 4 Thinking può produrre risposte quasi istantanee o riflessioni estese passo dopo passo con processo visibile.",
"claude-sonnet-4-20250514.description": "Claude Sonnet 4 è il modello più intelligente di Anthropic fino ad oggi, offrendo risposte quasi istantanee o pensiero esteso passo dopo passo con controllo dettagliato per gli utenti API.",
"claude-sonnet-4-20250514.description": "Claude Sonnet 4 può produrre risposte quasi istantanee o ragionamenti estesi passo dopo passo con un processo visibile.",
"claude-sonnet-4-5-20250929.description": "Claude Sonnet 4.5 è il modello più intelligente di Anthropic fino ad oggi.",
"claude-sonnet-4-5.description": "Claude Sonnet 4.5 di Anthropic — Sonnet migliorato con prestazioni di codifica avanzate.",
"claude-sonnet-4-6.description": "Claude Sonnet 4.6 di Anthropic — ultimo Sonnet con codifica superiore e utilizzo di strumenti.",
@@ -409,7 +408,7 @@
"deepseek-ai/deepseek-llm-67b-chat.description": "DeepSeek LLM Chat (67B) è un modello innovativo che offre una profonda comprensione linguistica e interazione.",
"deepseek-ai/deepseek-v3.1-terminus.description": "DeepSeek V3.1 è un modello di nuova generazione per il ragionamento, con capacità avanzate di ragionamento complesso e chain-of-thought per compiti di analisi approfondita.",
"deepseek-ai/deepseek-v3.2.description": "DeepSeek V3.2 è un modello di ragionamento di nuova generazione con capacità avanzate di ragionamento complesso e catena di pensiero.",
"deepseek-chat.description": "Alias di compatibilità per la modalità non pensante di DeepSeek V4 Flash. Programmato per la deprecazione — utilizzare invece DeepSeek V4 Flash.",
"deepseek-chat.description": "Un nuovo modello open-source che combina capacità generali e di codifica. Preserva il dialogo generale del modello di chat e la forte capacità di codifica del modello coder, con un migliore allineamento delle preferenze. DeepSeek-V2.5 migliora anche la scrittura e il seguire le istruzioni.",
"deepseek-coder-33B-instruct.description": "DeepSeek Coder 33B è un modello linguistico per il codice addestrato su 2 trilioni di token (87% codice, 13% testo in cinese/inglese). Introduce una finestra di contesto da 16K e compiti di completamento intermedio, offrendo completamento di codice a livello di progetto e riempimento di snippet.",
"deepseek-coder-v2.description": "DeepSeek Coder V2 è un modello MoE open-source per il codice che ottiene ottimi risultati nei compiti di programmazione, comparabile a GPT-4 Turbo.",
"deepseek-coder-v2:236b.description": "DeepSeek Coder V2 è un modello MoE open-source per il codice che ottiene ottimi risultati nei compiti di programmazione, comparabile a GPT-4 Turbo.",
@@ -431,7 +430,7 @@
"deepseek-r1-fast-online.description": "DeepSeek R1 versione completa veloce con ricerca web in tempo reale, che combina capacità su scala 671B e risposte rapide.",
"deepseek-r1-online.description": "DeepSeek R1 versione completa con 671 miliardi di parametri e ricerca web in tempo reale, che offre una comprensione e generazione più avanzate.",
"deepseek-r1.description": "DeepSeek-R1 utilizza dati cold-start prima dell'RL e ottiene prestazioni comparabili a OpenAI-o1 in matematica, programmazione e ragionamento.",
"deepseek-reasoner.description": "Alias di compatibilità per la modalità pensante di DeepSeek V4 Flash. Programmato per la deprecazione — utilizzare invece DeepSeek V4 Flash.",
"deepseek-reasoner.description": "Alias di compatibilità per la modalità di pensiero Flash di DeepSeek V4. Programmato per la deprecazione — utilizzare deepseek-v4-flash al suo posto.",
"deepseek-v2.description": "DeepSeek V2 è un modello MoE efficiente per un'elaborazione conveniente.",
"deepseek-v2:236b.description": "DeepSeek V2 236B è il modello DeepSeek focalizzato sul codice con forte capacità di generazione.",
"deepseek-v3-0324.description": "DeepSeek-V3-0324 è un modello MoE con 671 miliardi di parametri, con punti di forza nella programmazione, capacità tecnica, comprensione del contesto e gestione di testi lunghi.",
@@ -496,8 +495,6 @@
"doubao-seedream-4-0-250828.description": "Seedream 4.0 è un modello di generazione di immagini di ByteDance Seed, che supporta input di testo e immagini con generazione di immagini di alta qualità e altamente controllabile. Genera immagini da prompt testuali.",
"doubao-seedream-4-5-251128.description": "Seedream 4.5 è l'ultimo modello multimodale di ByteDance, che integra capacità di generazione da testo a immagine, immagine a immagine e generazione di immagini in batch, incorporando anche conoscenze di senso comune e capacità di ragionamento. Rispetto alla versione precedente 4.0, offre una qualità di generazione significativamente migliorata, con una maggiore coerenza nell'editing e nella fusione di più immagini. Offre un controllo più preciso sui dettagli visivi, producendo testi e volti piccoli in modo più naturale, e raggiunge una disposizione e una colorazione più armoniose, migliorando l'estetica complessiva.",
"doubao-seedream-5-0-260128.description": "Doubao-Seedream-5.0-lite è l'ultimo modello di generazione di immagini di ByteDance. Per la prima volta, integra capacità di recupero online, consentendo di incorporare informazioni web in tempo reale e migliorare la tempestività delle immagini generate. L'intelligenza del modello è stata inoltre aggiornata, consentendo un'interpretazione precisa di istruzioni complesse e contenuti visivi. Inoltre, offre una copertura globale della conoscenza migliorata, una maggiore coerenza di riferimento e una qualità di generazione superiore in scenari professionali, soddisfacendo meglio le esigenze di creazione visiva a livello aziendale.",
"dreamina-seedance-2-0-260128.description": "Seedance 2.0 di ByteDance è il modello di generazione video più potente, supportando la generazione di video multimodali di riferimento, editing video, estensione video, testo-a-video e immagine-a-video con audio sincronizzato.",
"dreamina-seedance-2-0-fast-260128.description": "Seedance 2.0 Fast di ByteDance offre le stesse capacità di Seedance 2.0 con velocità di generazione più rapide a un prezzo più competitivo.",
"emohaa.description": "Emohaa è un modello per la salute mentale con capacità di consulenza professionale per aiutare gli utenti a comprendere le problematiche emotive.",
"ernie-4.5-0.3b.description": "ERNIE 4.5 0.3B è un modello open-source leggero per implementazioni locali e personalizzate.",
"ernie-4.5-8k-preview.description": "ERNIE 4.5 8K Preview è un modello di anteprima con finestra contestuale da 8K per la valutazione di ERNIE 4.5.",
@@ -522,8 +519,7 @@
"ernie-x1-turbo-32k.description": "ERNIE X1 Turbo 32K è un modello di pensiero veloce con contesto da 32K per ragionamento complesso e chat multi-turno.",
"ernie-x1.1-preview.description": "ERNIE X1.1 Preview è unanteprima del modello di pensiero per valutazioni e test.",
"ernie-x1.1.description": "ERNIE X1.1 è un'anteprima del modello di pensiero per valutazione e test.",
"fal-ai/bytedance/seedream/v4.5.description": "Seedream 4.5, sviluppato dal team Seed di ByteDance, supporta l'editing e la composizione multi-immagine. Presenta una maggiore coerenza del soggetto, un'interpretazione precisa delle istruzioni, comprensione della logica spaziale, espressione estetica, layout di poster e design di loghi con rendering testo-immagine ad alta precisione.",
"fal-ai/bytedance/seedream/v4.description": "Seedream 4.0, sviluppato da ByteDance Seed, supporta input di testo e immagini per una generazione di immagini altamente controllabile e di alta qualità a partire da prompt.",
"fal-ai/bytedance/seedream/v4.description": "Seedream 4.0 è un modello di generazione di immagini di ByteDance Seed, che supporta input di testo e immagini con una generazione di immagini altamente controllabile e di alta qualità. Genera immagini da prompt testuali.",
"fal-ai/flux-kontext/dev.description": "FLUX.1 è un modello focalizzato sullediting di immagini, che supporta input di testo e immagini.",
"fal-ai/flux-pro/kontext.description": "FLUX.1 Kontext [pro] accetta testo e immagini di riferimento come input, consentendo modifiche locali mirate e trasformazioni complesse della scena globale.",
"fal-ai/flux/krea.description": "Flux Krea [dev] è un modello di generazione di immagini con una preferenza estetica per immagini più realistiche e naturali.",
@@ -531,8 +527,8 @@
"fal-ai/hunyuan-image/v3.description": "Un potente modello nativo multimodale per la generazione di immagini.",
"fal-ai/imagen4/preview.description": "Modello di generazione di immagini di alta qualità sviluppato da Google.",
"fal-ai/nano-banana.description": "Nano Banana è il modello multimodale nativo più recente, veloce ed efficiente di Google, che consente la generazione e lediting di immagini tramite conversazione.",
"fal-ai/qwen-image-edit.description": "Un modello professionale di editing immagini del team Qwen, che supporta modifiche semantiche e di aspetto, editing preciso di testo in cinese/inglese, trasferimento di stile, rotazione e altro.",
"fal-ai/qwen-image.description": "Un potente modello di generazione di immagini del team Qwen con una forte resa del testo cinese e stili visivi diversificati.",
"fal-ai/qwen-image-edit.description": "Un modello professionale di editing di immagini del team Qwen che supporta modifiche semantiche e di aspetto, modifica con precisione testi in cinese e inglese, e consente modifiche di alta qualità come trasferimento di stile e rotazione di oggetti.",
"fal-ai/qwen-image.description": "Un potente modello di generazione di immagini del team Qwen con un'impressionante resa del testo in cinese e stili visivi diversificati.",
"flux-1-schnell.description": "Modello testo-immagine da 12 miliardi di parametri di Black Forest Labs che utilizza la distillazione latente avversariale per generare immagini di alta qualità in 1-4 passaggi. Con licenza Apache-2.0 per uso personale, di ricerca e commerciale.",
"flux-dev.description": "Modello open-source per la ricerca e sviluppo nella generazione di immagini, ottimizzato in modo efficiente per la ricerca innovativa non commerciale.",
"flux-kontext-max.description": "Generazione ed editing di immagini contestuali allavanguardia, combinando testo e immagini per risultati precisi e coerenti.",
@@ -574,7 +570,7 @@
"gemini-3-pro-image-preview:image.description": "Gemini 3 Pro Image (Nano Banana Pro) è il modello di generazione di immagini di Google e supporta anche la chat multimodale.",
"gemini-3-pro-preview.description": "Gemini 3 Pro è il modello più potente di Google per agenti e codifica creativa, offrendo visuali più ricche e interazioni più profonde grazie a un ragionamento all'avanguardia.",
"gemini-3.1-flash-image-preview.description": "Gemini 3.1 Flash Image (Nano Banana 2) è il modello di generazione di immagini nativo più veloce di Google con supporto al pensiero, generazione e modifica di immagini conversazionali.",
"gemini-3.1-flash-image-preview:image.description": "Gemini 3.1 Flash Image (Nano Banana 2) offre qualità d'immagine a livello Pro a velocità Flash con supporto per la chat multimodale.",
"gemini-3.1-flash-image-preview:image.description": "Gemini 3.1 Flash Image (Nano Banana 2) è il modello di generazione di immagini nativo più veloce di Google con supporto al pensiero, generazione conversazionale di immagini ed editing.",
"gemini-3.1-flash-lite-preview.description": "Gemini 3.1 Flash-Lite Preview è il modello multimodale più economico di Google, ottimizzato per compiti agentici ad alto volume, traduzione e elaborazione dati.",
"gemini-3.1-pro-preview.description": "Gemini 3.1 Pro Preview migliora Gemini 3 Pro con capacità di ragionamento avanzate e aggiunge supporto per un livello di pensiero medio.",
"gemini-3.1-pro.description": "Gemini 3.1 Pro di Google — modello multimodale premium con finestra di contesto da 1M.",
@@ -740,11 +736,9 @@
"grok-4-fast-reasoning.description": "Siamo entusiasti di presentare Grok 4 Fast, il nostro ultimo progresso nei modelli di ragionamento a basso costo.",
"grok-4.20-0309-non-reasoning.description": "Una variante senza ragionamento per casi d'uso semplici.",
"grok-4.20-0309-reasoning.description": "Modello intelligente e velocissimo che ragiona prima di rispondere.",
"grok-4.20-beta-0309-non-reasoning.description": "Una variante non pensante per casi d'uso semplici.",
"grok-4.20-beta-0309-reasoning.description": "Modello intelligente e ultra veloce che ragiona prima di rispondere.",
"grok-4.20-multi-agent-0309.description": "Un team di 4 o 16 agenti, eccelle nei casi d'uso di ricerca, non supporta attualmente strumenti client-side. Supporta solo strumenti server-side xAI (es. X Search, strumenti di ricerca web) e strumenti MCP remoti.",
"grok-4.3.description": "Il modello linguistico di grandi dimensioni più orientato alla verità al mondo",
"grok-4.description": "Il nostro modello di punta più nuovo e potente, eccellente in NLP, matematica e ragionamento — un tuttofare ideale.",
"grok-4.description": "Ultimo modello di punta Grok con prestazioni ineguagliabili in linguaggio, matematica e ragionamento — un vero tuttofare. Attualmente punta a grok-4-0709; a causa di risorse limitate, il prezzo è temporaneamente superiore del 10% rispetto al prezzo ufficiale e si prevede un ritorno al prezzo ufficiale in seguito.",
"grok-code-fast-1.description": "Siamo entusiasti di lanciare grok-code-fast-1, un modello di ragionamento veloce ed economico che eccelle nella programmazione agentica.",
"grok-imagine-image-pro.description": "Genera immagini da prompt testuali, modifica immagini esistenti con linguaggio naturale o affina iterativamente le immagini attraverso conversazioni multi-turno.",
"grok-imagine-image.description": "Genera immagini da prompt testuali, modifica immagini esistenti con linguaggio naturale o affina iterativamente le immagini attraverso conversazioni multi-turno.",
@@ -1233,8 +1227,6 @@
"qwq.description": "QwQ è un modello di ragionamento della famiglia Qwen. Rispetto ai modelli standard ottimizzati per istruzioni, offre capacità di pensiero e ragionamento che migliorano significativamente le prestazioni nei compiti difficili. QwQ-32B è un modello di medie dimensioni che compete con i migliori modelli di ragionamento come DeepSeek-R1 e o1-mini.",
"qwq_32b.description": "Modello di ragionamento di medie dimensioni della famiglia Qwen. Rispetto ai modelli standard ottimizzati per istruzioni, le capacità di pensiero e ragionamento di QwQ migliorano significativamente le prestazioni nei compiti difficili.",
"r1-1776.description": "R1-1776 è una variante post-addestrata di DeepSeek R1 progettata per fornire informazioni fattuali non censurate e imparziali.",
"seedance-1-5-pro-251215.description": "Seedance 1.5 Pro di ByteDance supporta testo-a-video, immagine-a-video (primo fotogramma, primo+ultimo fotogramma) e generazione audio sincronizzata con i visual.",
"seedream-5-0-260128.description": "ByteDance-Seedream-5.0-lite di BytePlus offre generazione aumentata da recupero web per informazioni in tempo reale, interpretazione migliorata di prompt complessi e maggiore coerenza di riferimento per la creazione visiva professionale.",
"solar-mini-ja.description": "Solar Mini (Ja) estende Solar Mini con un focus sul giapponese, mantenendo prestazioni efficienti e solide in inglese e coreano.",
"solar-mini.description": "Solar Mini è un LLM compatto che supera GPT-3.5, con forte capacità multilingue in inglese e coreano, offrendo una soluzione efficiente e leggera.",
"solar-pro.description": "Solar Pro è un LLM ad alta intelligenza di Upstage, focalizzato sullesecuzione di istruzioni su una singola GPU, con punteggi IFEval superiori a 80. Attualmente supporta linglese; il rilascio completo è previsto per novembre 2024 con supporto linguistico ampliato e contesto più lungo.",
-2
View File
@@ -29,9 +29,7 @@
"agent.layout.switchMessage": "Non è giornata? Puoi passare a <modeLink><modeText>{{mode}}</modeText></modeLink> oppure a <skipLink><skipText>{{skip}}</skipText></skipLink>.",
"agent.modeSwitch.agent": "Conversazionale",
"agent.modeSwitch.classic": "Classico",
"agent.modeSwitch.collapse": "Comprimi",
"agent.modeSwitch.debug": "Esportazione Debug",
"agent.modeSwitch.expand": "Espandi",
"agent.modeSwitch.label": "Scegli la modalità di introduzione",
"agent.modeSwitch.reset": "Reimposta Flusso",
"agent.progress": "{{currentStep}}/{{totalSteps}}",
+1 -10
View File
@@ -256,16 +256,13 @@
"builtins.lobe-skills.apiName.runCommand": "Esegui Comando",
"builtins.lobe-skills.apiName.searchSkill": "Cerca Abilità",
"builtins.lobe-skills.title": "Abilità",
"builtins.lobe-task.apiName.addTaskComment": "Aggiungi commento",
"builtins.lobe-task.apiName.createTask": "Crea attività",
"builtins.lobe-task.apiName.createTasks": "Crea attività",
"builtins.lobe-task.apiName.deleteTask": "Elimina attività",
"builtins.lobe-task.apiName.deleteTaskComment": "Elimina commento",
"builtins.lobe-task.apiName.editTask": "Modifica attività",
"builtins.lobe-task.apiName.listTasks": "Elenca attività",
"builtins.lobe-task.apiName.runTask": "Esegui attività",
"builtins.lobe-task.apiName.runTasks": "Esegui attività",
"builtins.lobe-task.apiName.updateTaskComment": "Aggiorna commento",
"builtins.lobe-task.apiName.updateTaskStatus": "Aggiorna stato",
"builtins.lobe-task.apiName.viewTask": "Visualizza attività",
"builtins.lobe-task.create.subtaskOf": "Sottoattività di {{parent}}",
@@ -276,8 +273,6 @@
"builtins.lobe-task.edit.blocksOn": "blocca su",
"builtins.lobe-task.edit.description": "descrizione aggiornata",
"builtins.lobe-task.edit.instruction": "istruzione aggiornata",
"builtins.lobe-task.edit.parent": "genitore",
"builtins.lobe-task.edit.parentClear": "livello superiore",
"builtins.lobe-task.edit.priority": "priorità",
"builtins.lobe-task.edit.rename": "rinomina",
"builtins.lobe-task.edit.unassign": "rimuovi assegnazione",
@@ -327,11 +322,6 @@
"builtins.lobe-web-onboarding.inspector.interests_one": "{{count}} interesse",
"builtins.lobe-web-onboarding.inspector.interests_other": "{{count}} interessi",
"builtins.lobe-web-onboarding.title": "Onboarding Utente",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.delete": "Elimina",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.deleteLines": "Elimina righe",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.insertAt": "Inserisci alla linea",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.replace": "Sostituisci",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.replaceLines": "Sostituisci righe",
"confirm": "Conferma",
"debug.arguments": "Argomenti",
"debug.error": "Registro degli Errori",
@@ -356,6 +346,7 @@
"detailModal.tabs.settings": "Impostazioni",
"detailModal.title": "Dettagli Skill",
"dev.confirmDeleteDevPlugin": "Questa Skill locale verrà eliminata definitivamente. Continuare?",
"dev.customParams.useProxy.label": "Installa tramite proxy (attiva in caso di errori CORS, poi riprova)",
"dev.deleteSuccess": "Skill eliminata",
"dev.manifest.identifier.desc": "Identificatore univoco per la Skill",
"dev.manifest.identifier.label": "Identificatore",
-1
View File
@@ -33,7 +33,6 @@
"jina.description": "Fondata nel 2020, Jina AI è un'azienda leader nell'AI per la ricerca. Il suo stack include modelli vettoriali, reranker e piccoli modelli linguistici per costruire app di ricerca generativa e multimodale affidabili e di alta qualità.",
"kimicodingplan.description": "Kimi Code di Moonshot AI offre accesso ai modelli Kimi, inclusi K2.5, per attività di codifica.",
"lmstudio.description": "LM Studio è un'app desktop per sviluppare e sperimentare con LLM direttamente sul tuo computer.",
"lobehub.description": "LobeHub Cloud utilizza API ufficiali per accedere ai modelli di intelligenza artificiale e misura l'utilizzo con Crediti legati ai token dei modelli.",
"longcat.description": "LongCat è una serie di modelli AI generativi di grandi dimensioni sviluppati indipendentemente da Meituan. È progettato per migliorare la produttività interna dell'azienda e consentire applicazioni innovative attraverso un'architettura computazionale efficiente e potenti capacità multimodali.",
"minimax.description": "Fondata nel 2021, MiniMax sviluppa AI generali con modelli fondamentali multimodali, inclusi modelli testuali MoE da trilioni di parametri, modelli vocali e visivi, oltre ad app come Hailuo AI.",
"minimaxcodingplan.description": "Il piano di token MiniMax offre accesso ai modelli MiniMax, inclusi M2.7, per attività di codifica tramite un abbonamento a tariffa fissa.",
-7
View File
@@ -30,16 +30,9 @@
"agentMarketplace.category.personalLife": "Vita Personale",
"agentMarketplace.category.productManagement": "Gestione del Prodotto",
"agentMarketplace.category.salesCustomer": "Vendite & Clienti",
"agentMarketplace.inspector.moreCategories_one": "+{{count}}",
"agentMarketplace.inspector.moreCategories_other": "+{{count}}",
"agentMarketplace.inspector.pickCount_one": "{{count}} agente",
"agentMarketplace.inspector.pickCount_other": "{{count}} agenti",
"agentMarketplace.picker.empty": "Nessun modello disponibile.",
"agentMarketplace.picker.failedToLoad": "Caricamento dei modelli fallito. Per favore riprova più tardi.",
"agentMarketplace.picker.summary": "{{filtered}} / {{total}} modelli disponibili.",
"agentMarketplace.render.alreadyInLibraryTag": "Già nella libreria",
"agentMarketplace.render.alreadyInLibrary_one": "{{count}} già nella libreria",
"agentMarketplace.render.alreadyInLibrary_other": "{{count}} già nella libreria",
"codeInterpreter-legacy.error": "Errore di Esecuzione",
"codeInterpreter-legacy.executing": "Esecuzione in corso...",
"codeInterpreter-legacy.files": "File:",
+1 -1
View File
@@ -35,7 +35,7 @@
"authModal.title": "セッションの有効期限切れ",
"betterAuth.captcha.continue": "続行",
"betterAuth.captcha.description": "以下のセキュリティ確認を完了してください。登録またはサインインを自動的に続行します。",
"betterAuth.captcha.pendingDescription": "確認完了しませんでした。もう一度チャレンジをお試しください。",
"betterAuth.captcha.pendingDescription": "まず確認完了してから、続行してください。",
"betterAuth.captcha.title": "セキュリティ確認が必要です",
"betterAuth.errors.confirmPasswordRequired": "パスワードの確認を入力してください",
"betterAuth.errors.emailExists": "このメールアドレスは既に登録されています。ログインしてください。",
-1
View File
@@ -27,7 +27,6 @@
"codes.RATE_LIMIT_EXCEEDED": "リクエストが多すぎます。しばらくしてから再試行してください",
"codes.SESSION_EXPIRED": "セッションの有効期限が切れました。再ログインしてください",
"codes.SOCIAL_ACCOUNT_ALREADY_LINKED": "このソーシャルアカウントは他のユーザーにすでにリンクされています",
"codes.TEMPORARY_EMAIL_NOT_ALLOWED": "一時的なメールアドレスは使用できません。通常のメールアドレスをご利用ください。繰り返し試行すると、このネットワークがブロックされる可能性があります。",
"codes.UNEXPECTED_ERROR": "予期しないエラーが発生しました。再試行してください",
"codes.UNKNOWN": "不明なエラーが発生しました。再試行するかサポートにお問い合わせください",
"codes.USER_ALREADY_EXISTS": "ユーザーはすでに存在します",
+4 -15
View File
@@ -673,14 +673,14 @@
"tokenTag.used": "使用済み",
"tool.intervention.approvalMode": "承認モード",
"tool.intervention.approve": "承認",
"tool.intervention.approveAndRemember": "承認して記憶",
"tool.intervention.approveOnce": "今回のみ承認",
"tool.intervention.mode.allowList": "ホワイトリスト",
"tool.intervention.mode.allowListDesc": "承認されたスキルのみ自動実行",
"tool.intervention.mode.autoRun": "自動承認",
"tool.intervention.mode.autoRunDesc": "すべてのスキル呼び出しを自動承認",
"tool.intervention.mode.manual": "手動承認",
"tool.intervention.mode.manualDesc": "毎回の手動承認が必要",
"tool.intervention.onboarding.agentIdentity.editHint": "以下で名前やアバターを直接編集できます。",
"tool.intervention.onboarding.agentIdentity.namePlaceholder": "エージェント名",
"tool.intervention.onboarding.agentIdentity.title": "エージェントのアイデンティティ更新を確認",
"tool.intervention.onboarding.agentIdentity.titleAvatarOnly": "アバターを更新します",
"tool.intervention.onboarding.agentIdentity.titleNameOnly": "名前を更新します",
@@ -690,15 +690,14 @@
"tool.intervention.onboarding.userProfile.fullName": "氏名",
"tool.intervention.onboarding.userProfile.responseLanguage": "応答言語",
"tool.intervention.onboarding.userProfile.title": "プロフィール更新の確認",
"tool.intervention.optionApprove": "承認",
"tool.intervention.pending": "保留中",
"tool.intervention.reject": "拒否",
"tool.intervention.rejectAndContinue": "拒否して続行",
"tool.intervention.rejectOnly": "拒否のみ",
"tool.intervention.rejectReasonPlaceholder": "拒否理由を入力すると、アシスタントがあなたの境界を理解し、今後の行動を最適化するのに役立ちます",
"tool.intervention.rejectTitle": "今回のスキル呼び出しを拒否",
"tool.intervention.rejectedWithReason": "今回のスキル呼び出しは次の理由で拒否されました:{{reason}}",
"tool.intervention.rememberSimilar": "類似の操作について再度確認しない",
"tool.intervention.scrollToIntervention": "表示",
"tool.intervention.submit": "送信",
"tool.intervention.toolAbort": "あなたが今回のスキル呼び出しをキャンセルしました",
"tool.intervention.toolRejected": "今回のスキル呼び出しは拒否されました",
"tool.intervention.viewParameters": "パラメーターを表示 ({{count}})",
@@ -810,9 +809,7 @@
"workflow.toolDisplayName.searchLocalFiles": "検索済みファイル",
"workflow.toolDisplayName.searchSkill": "検索されたスキル",
"workflow.toolDisplayName.searchUserMemory": "メモリを検索しました",
"workflow.toolDisplayName.showAgentMarketplace": "編成されたエージェントチーム",
"workflow.toolDisplayName.solve": "方程式を解く",
"workflow.toolDisplayName.submitAgentPick": "選択されたエージェント",
"workflow.toolDisplayName.updateAgent": "エージェントを更新しました",
"workflow.toolDisplayName.updateDocument": "ドキュメントを更新しました",
"workflow.toolDisplayName.updateIdentityMemory": "メモリを更新しました",
@@ -851,14 +848,6 @@
"workingPanel.resources.renameEmpty": "Title cannot be empty",
"workingPanel.resources.renameError": "Failed to rename document",
"workingPanel.resources.renameSuccess": "Document renamed",
"workingPanel.resources.tree.createError": "作成に失敗しました",
"workingPanel.resources.tree.moveError": "移動に失敗しました",
"workingPanel.resources.tree.newDocument": "新しいドキュメント",
"workingPanel.resources.tree.newFolder": "新しいフォルダー",
"workingPanel.resources.tree.parentMissing": "親フォルダーが利用できません",
"workingPanel.resources.tree.rename": "名前を変更",
"workingPanel.resources.tree.untitledDocument": "無題のドキュメント",
"workingPanel.resources.tree.untitledFolder": "無題のフォルダー",
"workingPanel.resources.updatedAt": "{{time}} に更新",
"workingPanel.resources.viewMode.list": "リスト表示",
"workingPanel.resources.viewMode.tree": "ツリー表示",
-1
View File
@@ -114,7 +114,6 @@
"response.ProviderBizError": "モデルプロバイダーでエラーが返されました。以下の情報に基づいてトラブルシューティングを行うか、時間を置いて再試行してください",
"response.ProviderContentModeration": "コンテンツポリシーの確認に失敗しました。プロンプトを修正して、もう一度お試しください。",
"response.ProviderContentModerationWarning": "ポリシー違反が繰り返し検出されました。これ以上の不適切な利用は、アカウント制限につながる可能性があります。",
"response.ProviderImageContentModerationWarning": "画像の安全性に関する拒否が繰り返し検出されました。類似のプロンプトは一時的に画像生成を停止する可能性があります。",
"response.QuotaLimitReached": "Token 使用量またはリクエスト回数がクォータ上限に達しました。クォータを増やすか、時間を置いて再試行してください",
"response.QuotaLimitReachedCloud": "モデルサービスが現在高負荷状態です。しばらくしてから再試行してください。",
"response.ServerAgentRuntimeError": "アシスタント実行サービスが一時的に利用できません。時間を置いて再試行するか、メールでサポートにお問い合わせください",
-4
View File
@@ -84,9 +84,6 @@
"verify.confirm.fields.platformAccount": "{{platform}} アカウント",
"verify.confirm.fields.workspace": "ワークスペース",
"verify.confirm.noAgents": "まだエージェントがありません。LobeHub で作成してから戻ってリンクを完了してください。",
"verify.confirm.relink.description": "このLobeHubアカウントはすでにTelegramアカウント{{account}}にリンクされています。別のTelegramアカウントをリンクするには、まず設定 → メッセンジャーで現在のアカウントのリンクを解除してください。",
"verify.confirm.relink.manage": "メッセンジャー設定を開く",
"verify.confirm.relink.title": "別のTelegramアカウントがすでにリンクされています",
"verify.confirm.title": "リンクを確認",
"verify.confirm.workspace": "ワークスペース: {{workspace}}",
"verify.error.alreadyLinkedToOther": "このアカウントは別の LobeHub アカウントにすでにリンクされています。最初にそのアカウントにサインインしてください。",
@@ -94,7 +91,6 @@
"verify.error.generic": "問題が発生しました。もう一度お試しください。",
"verify.error.missingToken": "無効なリンクです。このページをボットから開いてください。",
"verify.error.title": "リンクを確認できません",
"verify.error.unlinkBeforeRelink": "このLobeHubアカウントはすでに別のTelegramアカウントにリンクされています。新しいアカウントをリンクする前に、設定 → メッセンジャーでリンクを解除してください。",
"verify.labRequired.description": "メッセンジャーは現在 Labs 機能です。設定 → 詳細 → Labs で有効にし、このページを再読み込みしてください。",
"verify.labRequired.openSettings": "Labs 設定を開く",
"verify.labRequired.title": "メッセンジャーを有効にして続行",
+13 -21
View File
@@ -106,7 +106,6 @@
"MiniMax-Hailuo-2.3.description": "身体動作、物理的リアリズム、指示追従性において全面的にアップグレードされた新しいビデオ生成モデル。",
"MiniMax-M1.description": "80Kの思考連鎖と1Mの入力を備えた新しい社内推論モデルで、世界トップクラスのモデルに匹敵する性能を発揮します。",
"MiniMax-M2-Stable.description": "効率的なコーディングとエージェントワークフローのために設計され、商用利用における高い同時実行性を実現します。",
"MiniMax-M2.1-Lightning.description": "強力な多言語プログラミング機能を備え、より高速かつ効率的な推論を実現。",
"MiniMax-M2.1-highspeed.description": "強力な多言語プログラミング機能を備え、プログラミング体験を包括的に向上。より高速かつ効率的です。",
"MiniMax-M2.1.description": "MiniMax-M2.1は、MiniMaxが開発したフラッグシップのオープンソース大規模モデルで、複雑な現実世界のタスク解決に特化しています。多言語プログラミング能力とエージェントとしての高度なタスク処理能力が主な強みです。",
"MiniMax-M2.5-highspeed.description": "MiniMax M2.5 Highspeed: M2.5と同等の性能で推論速度が向上。",
@@ -320,13 +319,13 @@
"claude-3-haiku-20240307.description": "Claude 3 Haikuは、Anthropicの最速かつ最小のモデルで、即時応答と高速かつ正確な性能を実現するよう設計されています。",
"claude-3-opus-20240229.description": "Claude 3 Opusは、Anthropicの最も強力なモデルで、非常に複雑なタスクにおいて卓越した性能、知性、流暢さ、理解力を発揮します。",
"claude-3-sonnet-20240229.description": "Claude 3 Sonnetは、知性と速度のバランスを取り、エンタープライズ向けのワークロードにおいて高い実用性とコスト効率、信頼性のある大規模展開を実現します。",
"claude-haiku-4-5-20251001.description": "Claude Haiku 4.5は、Anthropicの最速かつ最も知的なHaikuモデルで、驚異的な速度と高度な思考能力を備えています。",
"claude-haiku-4-5-20251001.description": "Claude Haiku 4.5は、Anthropicの最速かつ最も賢いHaikuモデルで、驚異的なスピードと高度な推論能力を備えています。",
"claude-haiku-4-5.description": "Claude Haiku 4.5 by Anthropic — 次世代Haikuモデルで、推論能力とビジョンが強化されています。",
"claude-haiku-4.5.description": "Claude Haiku 4.5は、Anthropicの最速かつ最も賢いHaikuモデルで、驚異的なスピードと高度な推論能力を備えています。",
"claude-opus-4-1-20250805-thinking.description": "Claude Opus 4.1 Thinkingは、推論プロセスを可視化できる高度なバリアントです。",
"claude-opus-4-1-20250805.description": "Claude Opus 4.1は、Anthropicの最新かつ最も高性能なモデルで、非常に複雑なタスクにおいて卓越したパフォーマンス、知性、流暢さ、理解力を発揮します。",
"claude-opus-4-1-20250805.description": "Claude Opus 4.1は、Anthropicの最新かつ最も高なモデルで、非常に複雑なタスクにおいて卓越した性能、知性、流暢さ、理解力を発揮します。",
"claude-opus-4-1.description": "Claude Opus 4.1 by Anthropic — 深い分析能力を備えたプレミアム推論モデル。",
"claude-opus-4-20250514.description": "Claude Opus 4は、Anthropicの最も強力なモデルで、非常に複雑なタスクにおいて卓越したパフォーマンス、知性、流暢さ、理解力を発揮します。",
"claude-opus-4-20250514.description": "Claude Opus 4は、Anthropicの最も強力なモデルで、非常に複雑なタスクにおいて卓越した性能、知性、流暢さ、理解力を発揮します。",
"claude-opus-4-5-20251101.description": "Claude Opus 4.5は、Anthropicのフラッグシップモデルで、卓越した知性とスケーラブルな性能を兼ね備え、最高品質の応答と推論が求められる複雑なタスクに最適です。",
"claude-opus-4-5.description": "Claude Opus 4.5 by Anthropic — 最高レベルの推論とコーディング能力を備えたフラッグシップモデル。",
"claude-opus-4-6.description": "Claude Opus 4.6 by Anthropic — 1Mコンテキストウィンドウを備えたフラッグシップモデルで、高度な推論能力を提供します。",
@@ -335,8 +334,8 @@
"claude-opus-4.6-fast.description": "Claude Opus 4.6は、エージェント構築やコーディングにおいてAnthropicの最も知的なモデルです。",
"claude-opus-4.6.description": "Claude Opus 4.6は、エージェント構築やコーディングにおいてAnthropicの最も知的なモデルです。",
"claude-sonnet-4-20250514-thinking.description": "Claude Sonnet 4 Thinkingは、即時応答または段階的な思考プロセスを可視化しながら出力できます。",
"claude-sonnet-4-20250514.description": "Claude Sonnet 4は、Anthropicのこれまでで最も知的なモデルで、APIユーザー向けに即時応答や詳細なステップバイステップの思考を提供します。",
"claude-sonnet-4-5-20250929.description": "Claude Sonnet 4.5は、Anthropicのこれまでで最も知的なモデルです。",
"claude-sonnet-4-20250514.description": "Claude Sonnet 4は、瞬時の応答や、プロセスを可視化した段階的な思考を提供することができます。",
"claude-sonnet-4-5-20250929.description": "Claude Sonnet 4.5は、これまでで最も知的なAnthropicモデルです。",
"claude-sonnet-4-5.description": "Claude Sonnet 4.5 by Anthropic — コーディング性能が向上した改良版Sonnet。",
"claude-sonnet-4-6.description": "Claude Sonnet 4.6 by Anthropic — 最新のSonnetモデルで、優れたコーディングとツール使用能力を備えています。",
"claude-sonnet-4.5.description": "Claude Sonnet 4.5は、これまでで最も知的なAnthropicのモデルです。",
@@ -409,7 +408,7 @@
"deepseek-ai/deepseek-llm-67b-chat.description": "DeepSeek LLM Chat67B)は、深い言語理解と対話能力を提供する革新的なモデルです。",
"deepseek-ai/deepseek-v3.1-terminus.description": "DeepSeek V3.1 は次世代の推論モデルで、複雑な推論と連想思考に優れ、深い分析タスクに対応します。",
"deepseek-ai/deepseek-v3.2.description": "DeepSeek V3.2は次世代推論モデルで、複雑な推論と連鎖的思考能力が強化されています。",
"deepseek-chat.description": "DeepSeek V4 Flash非思考モードの互換性エイリアス。廃止予定—代わりにDeepSeek V4 Flashを使用してください。",
"deepseek-chat.description": "一般的な対話能力とコーディング能力を組み合わせた新しいオープンソースモデルです。チャットモデルの一般的な対話能力と、コーダーモデルの強力なコーディング能力を保持し、より良い嗜好調整を実現しています。DeepSeek-V2.5は、文章作成や指示の追従能力も向上しています。",
"deepseek-coder-33B-instruct.description": "DeepSeek Coder 33B は 2T トークン(コード 87%、中英テキスト 13%)で学習されたコード言語モデルです。16K のコンテキストウィンドウと Fill-in-the-Middle タスクを導入し、プロジェクトレベルのコード補完とスニペット補完を提供します。",
"deepseek-coder-v2.description": "DeepSeek Coder V2 はオープンソースの MoE コードモデルで、コーディングタスクにおいて GPT-4 Turbo に匹敵する性能を発揮します。",
"deepseek-coder-v2:236b.description": "DeepSeek Coder V2 はオープンソースの MoE コードモデルで、コーディングタスクにおいて GPT-4 Turbo に匹敵する性能を発揮します。",
@@ -431,7 +430,7 @@
"deepseek-r1-fast-online.description": "DeepSeek R1 高速フルバージョンは、リアルタイムのウェブ検索を搭載し、671Bスケールの能力と高速応答を両立します。",
"deepseek-r1-online.description": "DeepSeek R1 フルバージョンは、671Bパラメータとリアルタイムのウェブ検索を備え、より強力な理解と生成を提供します。",
"deepseek-r1.description": "DeepSeek-R1は、強化学習前にコールドスタートデータを使用し、数学、コーディング、推論においてOpenAI-o1と同等の性能を発揮します。",
"deepseek-reasoner.description": "DeepSeek V4 Flash思考モードの互換性エイリアス。廃止予定代わりにDeepSeek V4 Flashを使用してください。",
"deepseek-reasoner.description": "DeepSeek V4 Flash思考モードの互換性エイリアスです。廃止予定のため、代わりにdeepseek-v4-flashを使用してください。",
"deepseek-v2.description": "DeepSeek V2は、コスト効率の高い処理を実現する効率的なMoEモデルです。",
"deepseek-v2:236b.description": "DeepSeek V2 236Bは、コード生成に特化したDeepSeekのモデルで、強力なコード生成能力を持ちます。",
"deepseek-v3-0324.description": "DeepSeek-V3-0324は、671BパラメータのMoEモデルで、プログラミングや技術的能力、文脈理解、長文処理において優れた性能を発揮します。",
@@ -496,8 +495,6 @@
"doubao-seedream-4-0-250828.description": "Seedream 4.0 は ByteDance Seed による画像生成モデルで、テキストと画像入力に対応し、高品質かつ制御性の高い画像生成を実現します。テキストプロンプトから画像を生成します。",
"doubao-seedream-4-5-251128.description": "Seedream 4.5はByteDanceの最新マルチモーダル画像モデルで、テキストから画像生成、画像間変換、バッチ画像生成機能を統合し、常識と推論能力を組み込んでいます。前バージョン4.0と比較して、生成品質が大幅に向上し、編集の一貫性や複数画像の融合が改善されています。視覚的な詳細の制御がより正確になり、小さなテキストや顔を自然に生成し、レイアウトや色彩の調和が向上し、全体的な美観が強化されています。",
"doubao-seedream-5-0-260128.description": "Doubao-Seedream-5.0-liteはByteDanceの最新画像生成モデルです。初めてオンライン検索機能を統合し、リアルタイムのウェブ情報を取り入れることで生成画像のタイムリー性を向上させています。モデルの知能もアップグレードされ、複雑な指示や視覚コンテンツを正確に解釈できるようになりました。また、専門的なシナリオでのグローバルな知識カバレッジ、一貫性、生成品質が向上し、企業レベルの視覚制作ニーズにより適合しています。",
"dreamina-seedance-2-0-260128.description": "ByteDanceのSeedance 2.0は、マルチモーダル参照ビデオ生成、ビデオ編集、ビデオ拡張、テキストからビデオ、画像からビデオへの同期音声付き生成をサポートする最も強力なビデオ生成モデルです。",
"dreamina-seedance-2-0-fast-260128.description": "ByteDanceのSeedance 2.0 Fastは、Seedance 2.0と同じ機能を提供しながら、より高速な生成速度と競争力のある価格を実現しています。",
"emohaa.description": "Emohaa は、専門的なカウンセリング能力を備えたメンタルヘルスモデルで、ユーザーが感情的な問題を理解するのを支援します。",
"ernie-4.5-0.3b.description": "ERNIE 4.5 0.3B は、ローカルおよびカスタマイズ展開に適した軽量なオープンソースモデルです。",
"ernie-4.5-8k-preview.description": "ERNIE 4.5 8K Preview は、ERNIE 4.5 の評価用に設計された 8K コンテキストプレビューモデルです。",
@@ -522,8 +519,7 @@
"ernie-x1-turbo-32k.description": "ERNIE X1 Turbo 32K は、複雑な推論やマルチターン対話に対応した 32K コンテキストの高速思考モデルです。",
"ernie-x1.1-preview.description": "ERNIE X1.1 Preview は、評価およびテスト用の思考モデルプレビューです。",
"ernie-x1.1.description": "ERNIE X1.1は評価とテスト用の思考モデルプレビューです。",
"fal-ai/bytedance/seedream/v4.5.description": "ByteDance Seedチームが開発したSeedream 4.5は、マルチイメージ編集と構成をサポートします。被写体の一貫性向上、正確な指示の追従、空間的論理の理解、美的表現、ポスターレイアウト、ロゴデザイン、高精度なテキスト画像レンダリングを特徴としています。",
"fal-ai/bytedance/seedream/v4.description": "ByteDance Seedが開発したSeedream 4.0は、プロンプトからの高品質で制御可能な画像生成をサポートするテキストおよび画像入力対応モデルです。",
"fal-ai/bytedance/seedream/v4.description": "Seedream 4.0は、ByteDance Seedによる画像生成モデルで、テキストと画像入力をサポートし、高度に制御可能で高品質な画像生成を実現します。テキストプロンプトから画像を生成します。",
"fal-ai/flux-kontext/dev.description": "FLUX.1 モデルは画像編集に特化しており、テキストと画像の入力に対応しています。",
"fal-ai/flux-pro/kontext.description": "FLUX.1 Kontext [pro] は、テキストと参照画像を入力として受け取り、局所的な編集や複雑なシーン全体の変換を可能にします。",
"fal-ai/flux/krea.description": "Flux Krea [dev] は、よりリアルで自然な画像を生成する美的バイアスを持つ画像生成モデルです。",
@@ -531,8 +527,8 @@
"fal-ai/hunyuan-image/v3.description": "強力なネイティブマルチモーダル画像生成モデルです。",
"fal-ai/imagen4/preview.description": "Google による高品質な画像生成モデルです。",
"fal-ai/nano-banana.description": "Nano Banana は Google による最新・最速・最も効率的なネイティブマルチモーダルモデルで、会話を通じた画像生成と編集が可能です。",
"fal-ai/qwen-image-edit.description": "Qwenチームによるプロフェッショナルな画像編集モデルで、意味的および外観的編集、正確な中国語/英語のテキスト編集、スタイル転送、回転などをサポートします。",
"fal-ai/qwen-image.description": "Qwenチームによる強力な画像生成モデルで、中国語テキストレンダリング能力が高く、多様なビジュアルスタイルを提供します。",
"fal-ai/qwen-image-edit.description": "Qwenチームによるプロフェッショナルな画像編集モデルで、意味的および外観的編集をサポートし、中国語英語のテキストを正確に編集できます。スタイル変換やオブジェクトの回転など、高品質な編集が可能です。",
"fal-ai/qwen-image.description": "Qwenチームによる強力な画像生成モデルで、中国語テキストレンダリング多様なビジュアルスタイルに優れています。",
"flux-1-schnell.description": "Black Forest Labs による 120 億パラメータのテキストから画像への変換モデルで、潜在敵対的拡散蒸留を用いて 1~4 ステップで高品質な画像を生成します。クローズドな代替モデルに匹敵し、Apache-2.0 ライセンスのもと、個人・研究・商用利用が可能です。",
"flux-dev.description": "非商用の研究開発向けに効率化されたオープンソース画像生成モデルです。",
"flux-kontext-max.description": "最先端のコンテキスト画像生成・編集モデルで、テキストと画像を組み合わせて精密かつ一貫性のある結果を生成します。",
@@ -571,10 +567,10 @@
"gemini-3-flash-preview.description": "Gemini 3 Flash は、最先端の知能と優れた検索基盤を融合し、スピードに特化した最もスマートなモデルです。",
"gemini-3-flash.description": "Gemini 3 Flash by Google — 超高速モデルでマルチモーダル入力をサポートします。",
"gemini-3-pro-image-preview.description": "Gemini 3 Pro ImageNano Banana Pro)は、Googleの画像生成モデルで、マルチモーダル対話もサポートします。",
"gemini-3-pro-image-preview:image.description": "Gemini 3 Pro ImageNano Banana Pro)は、Googleの画像生成モデルで、マルチモーダルチャットもサポートします。",
"gemini-3-pro-image-preview:image.description": "Gemini 3 Pro ImageNano Banana Pro)は、Googleの画像生成モデルで、マルチモーダルチャットもサポートしています。",
"gemini-3-pro-preview.description": "Gemini 3 Pro は、Google による最も強力なエージェントおよびバイブコーディングモデルで、最先端の推論に加え、より豊かなビジュアルと深い対話を実現します。",
"gemini-3.1-flash-image-preview.description": "Gemini 3.1 Flash ImageNano Banana 2)は、Googleの最速のネイティブ画像生成モデルで、思考サポート、対話型画像生成および編集を提供します。",
"gemini-3.1-flash-image-preview:image.description": "Gemini 3.1 Flash ImageNano Banana 2)は、プロレベルの画像品質をフラッシュ速度で提供し、マルチモーダルチャットをサポートします。",
"gemini-3.1-flash-image-preview:image.description": "Gemini 3.1 Flash ImageNano Banana 2)は、Googleの最速のネイティブ画像生成モデルで、思考サポート、会話型画像生成、編集を提供します。",
"gemini-3.1-flash-lite-preview.description": "Gemini 3.1 Flash-Lite PreviewはGoogleの最もコスト効率の高いマルチモーダルモデルで、大量のエージェントタスク、翻訳、データ処理に最適化されています。",
"gemini-3.1-pro-preview.description": "Gemini 3.1 Pro Previewは、Gemini 3 Proの推論能力を強化し、中程度の思考レベルサポートを追加しています。",
"gemini-3.1-pro.description": "Gemini 3.1 Pro by Google — 1Mコンテキストウィンドウを備えたプレミアムマルチモーダルモデル。",
@@ -740,11 +736,9 @@
"grok-4-fast-reasoning.description": "Grok 4 Fast をリリースしました。コスト効率の高い推論モデルにおける最新の進展です。",
"grok-4.20-0309-non-reasoning.description": "単純なユースケース向けの非推論バリアント。",
"grok-4.20-0309-reasoning.description": "応答前に推論する知的で超高速なモデル。",
"grok-4.20-beta-0309-non-reasoning.description": "シンプルなユースケース向けの非思考型バリアント",
"grok-4.20-beta-0309-reasoning.description": "応答前に推論を行う、知的で非常に高速なモデル",
"grok-4.20-multi-agent-0309.description": "4または16のエージェントチーム。研究ユースケースに優れています。現在、クライアントサイドツールはサポートしていません。xAIサーバーサイドツール(例:X Search、Web Searchツール)およびリモートMCPツールのみをサポートします。",
"grok-4.3.description": "世界で最も真実を追求する大規模言語モデル",
"grok-4.description": "NLP、数学、推論において卓越した性能を発揮する、最新かつ最強のフラッグシップモデル。万能型として理想的です。",
"grok-4.description": "最新のGrokフラッグシップモデルで、言語、数学、推論において比類のない性能を発揮する真のオールラウンダーです。現在はgrok-4-0709を指しており、リソースの制限により一時的に公式価格より10%高く設定されていますが、後に公式価格に戻る予定です。",
"grok-code-fast-1.description": "grok-code-fast-1 をリリースできることを嬉しく思います。このモデルは、高速かつコスト効率に優れた推論モデルで、エージェント型コーディングにおいて卓越した性能を発揮します。",
"grok-imagine-image-pro.description": "テキストプロンプトから画像を生成し、自然言語で既存の画像を編集したり、マルチターン会話を通じて画像を反復的に改良します。",
"grok-imagine-image.description": "テキストプロンプトから画像を生成し、自然言語で既存の画像を編集したり、マルチターン会話を通じて画像を反復的に改良します。",
@@ -1233,8 +1227,6 @@
"qwq.description": "QwQは、Qwenファミリーの推論モデルです。標準的な指示調整モデルと比較して、思考と推論能力に優れ、特に難解な問題において下流性能を大幅に向上させます。QwQ-32Bは、DeepSeek-R1やo1-miniと競合する中規模の推論モデルです。",
"qwq_32b.description": "Qwenファミリーの中規模推論モデル。標準的な指示調整モデルと比較して、QwQの思考と推論能力は、特に難解な問題において下流性能を大幅に向上させます。",
"r1-1776.description": "R1-1776は、DeepSeek R1のポストトレーニングバリアントで、検閲のない偏りのない事実情報を提供するよう設計されています。",
"seedance-1-5-pro-251215.description": "ByteDanceのSeedance 1.5 Proは、テキストからビデオ、画像からビデオ(最初のフレーム、最初+最後のフレーム)、および視覚と同期した音声生成をサポートします。",
"seedream-5-0-260128.description": "BytePlusのByteDance-Seedream-5.0-liteは、リアルタイム情報のためのウェブ検索強化生成、複雑なプロンプト解釈の向上、プロフェッショナルなビジュアル作成のための参照一貫性の向上を特徴としています。",
"solar-mini-ja.description": "Solar Mini (Ja)は、Solar Miniを日本語に特化させたモデルで、英語と韓国語でも効率的かつ高性能な動作を維持します。",
"solar-mini.description": "Solar Miniは、GPT-3.5を上回る性能を持つコンパクトなLLMで、英語と韓国語に対応した多言語機能を備え、効率的な小型ソリューションを提供します。",
"solar-pro.description": "Solar Proは、Upstageが提供する高知能LLMで、単一GPU上での指示追従に特化し、IFEvalスコア80以上を記録しています。現在は英語に対応しており、2024年11月の正式リリースでは対応言語とコンテキスト長が拡張される予定です。",
-2
View File
@@ -29,9 +29,7 @@
"agent.layout.switchMessage": "今日は気分が乗らないですか?<modeLink><modeText>{{mode}}</modeText></modeLink>か<skipLink><skipText>{{skip}}</skipText></skipLink>に切り替えられます。",
"agent.modeSwitch.agent": "会話モード",
"agent.modeSwitch.classic": "クラシック",
"agent.modeSwitch.collapse": "折りたたむ",
"agent.modeSwitch.debug": "デバッグエクスポート",
"agent.modeSwitch.expand": "展開する",
"agent.modeSwitch.label": "オンボーディングモードを選択",
"agent.modeSwitch.reset": "フローをリセット",
"agent.progress": "{{currentStep}}/{{totalSteps}}",
+1 -10
View File
@@ -256,16 +256,13 @@
"builtins.lobe-skills.apiName.runCommand": "コマンドを実行",
"builtins.lobe-skills.apiName.searchSkill": "スキルを検索",
"builtins.lobe-skills.title": "スキル",
"builtins.lobe-task.apiName.addTaskComment": "コメントを追加",
"builtins.lobe-task.apiName.createTask": "タスクを作成",
"builtins.lobe-task.apiName.createTasks": "タスクを作成",
"builtins.lobe-task.apiName.deleteTask": "タスクを削除",
"builtins.lobe-task.apiName.deleteTaskComment": "コメントを削除",
"builtins.lobe-task.apiName.editTask": "タスクを編集",
"builtins.lobe-task.apiName.listTasks": "タスクを一覧表示",
"builtins.lobe-task.apiName.runTask": "タスクを実行",
"builtins.lobe-task.apiName.runTasks": "タスクを実行",
"builtins.lobe-task.apiName.updateTaskComment": "コメントを更新",
"builtins.lobe-task.apiName.updateTaskStatus": "ステータスを更新",
"builtins.lobe-task.apiName.viewTask": "タスクを表示",
"builtins.lobe-task.create.subtaskOf": "{{parent}} のサブタスク",
@@ -276,8 +273,6 @@
"builtins.lobe-task.edit.blocksOn": "ブロック中",
"builtins.lobe-task.edit.description": "説明が更新されました",
"builtins.lobe-task.edit.instruction": "指示が更新されました",
"builtins.lobe-task.edit.parent": "親",
"builtins.lobe-task.edit.parentClear": "最上位",
"builtins.lobe-task.edit.priority": "優先度",
"builtins.lobe-task.edit.rename": "名前を変更",
"builtins.lobe-task.edit.unassign": "割り当て解除",
@@ -327,11 +322,6 @@
"builtins.lobe-web-onboarding.inspector.interests_one": "{{count}} 興味",
"builtins.lobe-web-onboarding.inspector.interests_other": "{{count}} 興味",
"builtins.lobe-web-onboarding.title": "ユーザーオンボーディング",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.delete": "削除",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.deleteLines": "行を削除",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.insertAt": "行に挿入",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.replace": "置き換え",
"builtins.lobe-web-onboarding.updateDocument.hunkMode.replaceLines": "行を置き換え",
"confirm": "確定",
"debug.arguments": "呼び出しパラメータ",
"debug.error": "エラーログ",
@@ -356,6 +346,7 @@
"detailModal.tabs.settings": "設定",
"detailModal.title": "スキル詳細",
"dev.confirmDeleteDevPlugin": "このローカルスキルを削除すると復元できません。本当に削除しますか?",
"dev.customParams.useProxy.label": "プロキシ経由でインストール(クロスオリジンエラーが発生した場合はこのオプションを有効にして再インストールをお試しください)",
"dev.deleteSuccess": "スキルが正常に削除されました",
"dev.manifest.identifier.desc": "スキルの一意識別子",
"dev.manifest.identifier.label": "識別子",
-1
View File
@@ -33,7 +33,6 @@
"jina.description": "Jina AIは2020年に設立された検索AIのリーディングカンパニーで、ベクトルモデル、リランカー、小型言語モデルを含む検索スタックにより、高品質な生成・マルチモーダル検索アプリを構築できます。",
"kimicodingplan.description": "Moonshot AIのKimi Codeは、K2.5を含むKimiモデルへのアクセスを提供します。",
"lmstudio.description": "LM Studioは、ローカルPC上でLLMの開発と実験ができるデスクトップアプリです。",
"lobehub.description": "LobeHub Cloudは公式APIを使用してAIモデルにアクセスし、モデルトークンに紐づいたクレジットで使用量を測定します。",
"longcat.description": "LongCatは、Meituanが独自に開発した生成AIの大型モデルシリーズです。効率的な計算アーキテクチャと強力なマルチモーダル機能を通じて、企業内部の生産性を向上させ、革新的なアプリケーションを可能にすることを目的としています。",
"minimax.description": "MiniMaxは2021年に設立され、マルチモーダル基盤モデルを用いた汎用AIを開発しています。兆単位パラメータのMoEテキストモデル、音声モデル、ビジョンモデル、Hailuo AIなどのアプリを提供します。",
"minimaxcodingplan.description": "MiniMaxトークンプランは、固定料金のサブスクリプションを通じてM2.7を含むMiniMaxモデルへのアクセスを提供します。",
-7
View File
@@ -30,16 +30,9 @@
"agentMarketplace.category.personalLife": "個人生活",
"agentMarketplace.category.productManagement": "プロダクトマネジメント",
"agentMarketplace.category.salesCustomer": "営業と顧客",
"agentMarketplace.inspector.moreCategories_one": "+{{count}}",
"agentMarketplace.inspector.moreCategories_other": "+{{count}}",
"agentMarketplace.inspector.pickCount_one": "{{count}} エージェント",
"agentMarketplace.inspector.pickCount_other": "{{count}} エージェント",
"agentMarketplace.picker.empty": "テンプレートがありません。",
"agentMarketplace.picker.failedToLoad": "テンプレートの読み込みに失敗しました。後でもう一度お試しください。",
"agentMarketplace.picker.summary": "{{filtered}} / {{total}} テンプレートが利用可能です。",
"agentMarketplace.render.alreadyInLibraryTag": "すでにライブラリにあります",
"agentMarketplace.render.alreadyInLibrary_one": "{{count}} 件がすでにライブラリにあります",
"agentMarketplace.render.alreadyInLibrary_other": "{{count}} 件がすでにライブラリにあります",
"codeInterpreter-legacy.error": "実行エラー",
"codeInterpreter-legacy.executing": "実行中...",
"codeInterpreter-legacy.files": "ファイル:",
+1 -1
View File
@@ -35,7 +35,7 @@
"authModal.title": "세션 만료",
"betterAuth.captcha.continue": "계속하기",
"betterAuth.captcha.description": "아래의 보안 인증을 완료하세요. 회원가입 또는 로그인을 자동으로 계속 진행합니다.",
"betterAuth.captcha.pendingDescription": "인증 완료되지 않았습니다. 챌린지를 다시 시도하세요.",
"betterAuth.captcha.pendingDescription": "먼저 인증 완료한 후 계속 진행하세요.",
"betterAuth.captcha.title": "보안 인증 필요",
"betterAuth.errors.confirmPasswordRequired": "비밀번호 확인이 필요합니다",
"betterAuth.errors.emailExists": "이 이메일은 이미 등록되어 있습니다. 바로 로그인해 주세요.",
-1
View File
@@ -27,7 +27,6 @@
"codes.RATE_LIMIT_EXCEEDED": "요청이 너무 많습니다. 잠시 후 다시 시도해 주세요",
"codes.SESSION_EXPIRED": "세션이 만료되었습니다. 다시 로그인해 주세요",
"codes.SOCIAL_ACCOUNT_ALREADY_LINKED": "해당 소셜 계정은 이미 다른 사용자와 연결되어 있습니다",
"codes.TEMPORARY_EMAIL_NOT_ALLOWED": "임시 이메일 주소는 지원되지 않습니다. 일반 이메일 주소를 사용해 주세요. 반복적인 시도는 이 네트워크를 차단할 수 있습니다.",
"codes.UNEXPECTED_ERROR": "알 수 없는 오류가 발생했습니다. 다시 시도해 주세요",
"codes.UNKNOWN": "알 수 없는 오류가 발생했습니다. 다시 시도하거나 지원팀에 문의해 주세요",
"codes.USER_ALREADY_EXISTS": "이미 존재하는 사용자입니다",
+4 -15
View File
@@ -673,14 +673,14 @@
"tokenTag.used": "사용됨",
"tool.intervention.approvalMode": "승인 모드",
"tool.intervention.approve": "승인",
"tool.intervention.approveAndRemember": "승인 및 기억",
"tool.intervention.approveOnce": "이번만 승인",
"tool.intervention.mode.allowList": "허용 목록",
"tool.intervention.mode.allowListDesc": "승인된 기능만 자동 실행",
"tool.intervention.mode.autoRun": "자동 승인",
"tool.intervention.mode.autoRunDesc": "모든 기능 호출 자동 승인",
"tool.intervention.mode.manual": "수동 승인",
"tool.intervention.mode.manualDesc": "매번 수동 승인 필요",
"tool.intervention.onboarding.agentIdentity.editHint": "아래에서 이름이나 아바타를 직접 수정할 수 있습니다.",
"tool.intervention.onboarding.agentIdentity.namePlaceholder": "에이전트 이름",
"tool.intervention.onboarding.agentIdentity.title": "에이전트 프로필 업데이트 확인",
"tool.intervention.onboarding.agentIdentity.titleAvatarOnly": "아바타를 업데이트하겠습니다",
"tool.intervention.onboarding.agentIdentity.titleNameOnly": "이름을 업데이트하겠습니다",
@@ -690,15 +690,14 @@
"tool.intervention.onboarding.userProfile.fullName": "전체 이름",
"tool.intervention.onboarding.userProfile.responseLanguage": "응답 언어",
"tool.intervention.onboarding.userProfile.title": "프로필 업데이트 확인",
"tool.intervention.optionApprove": "승인",
"tool.intervention.pending": "대기 중",
"tool.intervention.reject": "거부",
"tool.intervention.rejectAndContinue": "거부 후 계속",
"tool.intervention.rejectOnly": "거부만",
"tool.intervention.rejectReasonPlaceholder": "거부 사유를 입력하면 도우미가 당신의 경계를 이해하고 향후 행동을 최적화하는 데 도움이 됩니다",
"tool.intervention.rejectTitle": "이번 기능 호출 거부",
"tool.intervention.rejectedWithReason": "이번 기능 호출이 다음 사유로 거부됨: {{reason}}",
"tool.intervention.rememberSimilar": "유사한 작업에 대해 다시 묻지 않기",
"tool.intervention.scrollToIntervention": "보기",
"tool.intervention.submit": "제출",
"tool.intervention.toolAbort": "당신이 이번 기능 호출을 취소했습니다",
"tool.intervention.toolRejected": "이번 기능 호출이 거부되었습니다",
"tool.intervention.viewParameters": "매개변수 보기 ({{count}})",
@@ -810,9 +809,7 @@
"workflow.toolDisplayName.searchLocalFiles": "검색된 파일",
"workflow.toolDisplayName.searchSkill": "검색된 기술",
"workflow.toolDisplayName.searchUserMemory": "메모리 검색",
"workflow.toolDisplayName.showAgentMarketplace": "조립된 에이전트 팀",
"workflow.toolDisplayName.solve": "방정식 풀이 완료",
"workflow.toolDisplayName.submitAgentPick": "선택된 에이전트",
"workflow.toolDisplayName.updateAgent": "에이전트를 업데이트했습니다",
"workflow.toolDisplayName.updateDocument": "문서를 업데이트했습니다",
"workflow.toolDisplayName.updateIdentityMemory": "업데이트된 메모리",
@@ -851,14 +848,6 @@
"workingPanel.resources.renameEmpty": "Title cannot be empty",
"workingPanel.resources.renameError": "Failed to rename document",
"workingPanel.resources.renameSuccess": "Document renamed",
"workingPanel.resources.tree.createError": "생성 실패",
"workingPanel.resources.tree.moveError": "이동 실패",
"workingPanel.resources.tree.newDocument": "새 문서",
"workingPanel.resources.tree.newFolder": "새 폴더",
"workingPanel.resources.tree.parentMissing": "상위 폴더를 사용할 수 없습니다",
"workingPanel.resources.tree.rename": "이름 변경",
"workingPanel.resources.tree.untitledDocument": "제목 없는 문서",
"workingPanel.resources.tree.untitledFolder": "제목 없는 폴더",
"workingPanel.resources.updatedAt": "{{time}}에 업데이트됨",
"workingPanel.resources.viewMode.list": "목록 보기",
"workingPanel.resources.viewMode.tree": "트리 보기",
-1
View File
@@ -114,7 +114,6 @@
"response.ProviderBizError": "모델 제공자에서 오류가 반환되었습니다. 다음 정보를 기반으로 문제를 해결하거나 잠시 후 다시 시도하세요",
"response.ProviderContentModeration": "콘텐츠 정책 확인에 실패했습니다. 프롬프트를 수정한 후 다시 시도하세요.",
"response.ProviderContentModerationWarning": "정책 위반이 반복적으로 감지되었습니다. 지속적인 오용은 계정 사용이 제한될 수 있습니다.",
"response.ProviderImageContentModerationWarning": "반복적인 이미지 안전 거부가 감지되었습니다. 유사한 프롬프트는 이미지 생성이 일시적으로 중단될 수 있습니다.",
"response.QuotaLimitReached": "토큰 사용량 또는 요청 횟수가 할당량 상한에 도달했습니다. 할당량을 늘리거나 잠시 후 다시 시도하세요",
"response.QuotaLimitReachedCloud": "모델 서비스가 현재 과부하 상태입니다. 나중에 다시 시도하세요.",
"response.ServerAgentRuntimeError": "도우미 실행 서비스를 일시적으로 사용할 수 없습니다. 잠시 후 다시 시도하거나 이메일로 지원팀에 문의하세요",
-4
View File
@@ -84,9 +84,6 @@
"verify.confirm.fields.platformAccount": "{{platform}} 계정",
"verify.confirm.fields.workspace": "워크스페이스",
"verify.confirm.noAgents": "아직 에이전트가 없습니다. LobeHub에서 하나를 생성한 후 다시 와서 연결을 완료하세요.",
"verify.confirm.relink.description": "이 LobeHub 계정은 이미 Telegram 계정 {{account}}에 연결되어 있습니다. 다른 Telegram 계정을 연결하려면 먼저 설정 → 메신저에서 현재 계정을 연결 해제하세요.",
"verify.confirm.relink.manage": "메신저 설정 열기",
"verify.confirm.relink.title": "다른 Telegram 계정이 이미 연결되어 있습니다",
"verify.confirm.title": "연결 확인",
"verify.confirm.workspace": "워크스페이스: {{workspace}}",
"verify.error.alreadyLinkedToOther": "이 계정은 이미 다른 LobeHub 계정에 연결되어 있습니다. 먼저 해당 계정에 로그인하세요.",
@@ -94,7 +91,6 @@
"verify.error.generic": "문제가 발생했습니다. 다시 시도하세요.",
"verify.error.missingToken": "잘못된 링크입니다. 봇에서 이 페이지를 여세요.",
"verify.error.title": "링크를 확인할 수 없음",
"verify.error.unlinkBeforeRelink": "이 LobeHub 계정은 이미 다른 Telegram 계정에 연결되어 있습니다. 새 계정을 연결하기 전에 설정 → 메신저에서 연결을 해제하세요.",
"verify.labRequired.description": "메신저는 현재 실험실 기능입니다. 설정 → 고급 → 실험실에서 활성화하고 이 페이지를 다시 로드하세요.",
"verify.labRequired.openSettings": "실험실 설정 열기",
"verify.labRequired.title": "메신저를 활성화하여 계속 진행",

Some files were not shown because too many files have changed in this diff Show More