@lobehub/lobehub 2.0.0-next.117 → 2.0.0-next.119
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/{docker.yml → pr-build-docker.yml} +30 -43
- package/.github/workflows/release-docker.yml +133 -0
- package/CHANGELOG.md +50 -0
- package/changelog/v1.json +18 -0
- package/locales/ar/models.json +10 -1
- package/locales/ar/setting.json +1 -1
- package/locales/bg-BG/models.json +10 -1
- package/locales/bg-BG/setting.json +1 -1
- package/locales/de-DE/models.json +10 -1
- package/locales/de-DE/setting.json +1 -1
- package/locales/en-US/models.json +10 -1
- package/locales/en-US/setting.json +1 -1
- package/locales/es-ES/models.json +10 -1
- package/locales/es-ES/setting.json +1 -1
- package/locales/fa-IR/models.json +10 -1
- package/locales/fa-IR/setting.json +1 -1
- package/locales/fr-FR/models.json +10 -1
- package/locales/fr-FR/setting.json +1 -1
- package/locales/it-IT/models.json +10 -1
- package/locales/it-IT/setting.json +1 -1
- package/locales/ja-JP/models.json +10 -1
- package/locales/ja-JP/setting.json +1 -1
- package/locales/ko-KR/models.json +10 -1
- package/locales/ko-KR/setting.json +1 -1
- package/locales/nl-NL/models.json +10 -1
- package/locales/nl-NL/setting.json +1 -1
- package/locales/pl-PL/models.json +10 -1
- package/locales/pl-PL/setting.json +1 -1
- package/locales/pt-BR/models.json +10 -1
- package/locales/pt-BR/setting.json +1 -1
- package/locales/ru-RU/models.json +10 -1
- package/locales/ru-RU/setting.json +1 -1
- package/locales/tr-TR/models.json +10 -1
- package/locales/tr-TR/setting.json +1 -1
- package/locales/vi-VN/models.json +10 -1
- package/locales/vi-VN/setting.json +1 -1
- package/locales/zh-CN/models.json +10 -1
- package/locales/zh-TW/models.json +10 -1
- package/locales/zh-TW/setting.json +1 -1
- package/package.json +1 -1
- package/packages/fetch-sse/src/__tests__/headers.test.ts +367 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/Capabilities/Plugins.tsx +11 -6
- package/src/libs/mcp/__tests__/__snapshots__/index.test.ts.snap +5 -0
- package/src/server/services/discover/index.ts +42 -2
- package/src/server/services/mcp/contentProcessor.ts +7 -7
- package/src/server/services/mcp/deps/MCPSystemDepsCheckService.ts +3 -3
- package/src/server/services/mcp/index.ts +11 -11
- /package/.github/workflows/{desktop-pr-build.yml → pr-build-desktop.yml} +0 -0
|
@@ -1,19 +1,18 @@
|
|
|
1
|
-
name:
|
|
2
|
-
permissions:
|
|
3
|
-
contents: read
|
|
4
|
-
pull-requests: write
|
|
1
|
+
name: Docker PR Build
|
|
5
2
|
|
|
6
3
|
on:
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
types: [published]
|
|
10
|
-
pull_request_target:
|
|
11
|
-
types: [synchronize, labeled, unlabeled]
|
|
4
|
+
pull_request:
|
|
5
|
+
types: [synchronize, labeled, unlabeled] # PR 更新或标签变化时触发
|
|
12
6
|
|
|
7
|
+
# 确保同一 PR 同一时间只运行一个相同的 workflow,取消正在进行的旧的运行
|
|
13
8
|
concurrency:
|
|
14
|
-
group:
|
|
15
|
-
|
|
16
|
-
|
|
9
|
+
group: pr-${{ github.event.pull_request.number }}-${{ github.workflow }}
|
|
10
|
+
cancel-in-progress: true
|
|
11
|
+
|
|
12
|
+
# Add default permissions
|
|
13
|
+
permissions:
|
|
14
|
+
contents: read
|
|
15
|
+
pull-requests: write
|
|
17
16
|
|
|
18
17
|
env:
|
|
19
18
|
REGISTRY_IMAGE: lobehub/lobehub
|
|
@@ -21,13 +20,9 @@ env:
|
|
|
21
20
|
|
|
22
21
|
jobs:
|
|
23
22
|
build:
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
github.event_name == 'workflow_dispatch' ||
|
|
28
|
-
(github.event_name == 'pull_request_target' &&
|
|
29
|
-
contains(github.event.pull_request.labels.*.name, 'trigger:build-docker'))
|
|
30
|
-
|
|
23
|
+
name: Build ${{ matrix.platform }} Docker Image
|
|
24
|
+
# 添加 PR label 触发条件,只有添加了 trigger:build-docker 标签的 PR 才会触发构建
|
|
25
|
+
if: contains(github.event.pull_request.labels.*.name, 'trigger:build-docker')
|
|
31
26
|
strategy:
|
|
32
27
|
matrix:
|
|
33
28
|
include:
|
|
@@ -36,14 +31,13 @@ jobs:
|
|
|
36
31
|
- platform: linux/arm64
|
|
37
32
|
os: ubuntu-24.04-arm
|
|
38
33
|
runs-on: ${{ matrix.os }}
|
|
39
|
-
name: Build ${{ matrix.platform }} Image
|
|
40
34
|
steps:
|
|
41
35
|
- name: Prepare
|
|
42
36
|
run: |
|
|
43
37
|
platform=${{ matrix.platform }}
|
|
44
38
|
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
|
|
45
39
|
|
|
46
|
-
- name: Checkout
|
|
40
|
+
- name: Checkout PR branch
|
|
47
41
|
uses: actions/checkout@v5
|
|
48
42
|
with:
|
|
49
43
|
fetch-depth: 0
|
|
@@ -51,15 +45,17 @@ jobs:
|
|
|
51
45
|
- name: Set up Docker Buildx
|
|
52
46
|
uses: docker/setup-buildx-action@v3
|
|
53
47
|
|
|
54
|
-
# 为 PR 生成特殊的 tag
|
|
48
|
+
# 为 PR 生成特殊的 tag,使用 PR 的实际 commit SHA
|
|
55
49
|
- name: Generate PR metadata
|
|
56
|
-
if: github.event_name == 'pull_request_target'
|
|
57
50
|
id: pr_meta
|
|
58
51
|
env:
|
|
59
52
|
BRANCH_NAME: ${{ github.head_ref }}
|
|
60
53
|
run: |
|
|
61
54
|
sanitized_branch=$(echo "${BRANCH_NAME}" | sed -E 's/[^a-zA-Z0-9_.-]+/-/g')
|
|
62
|
-
|
|
55
|
+
commit_sha=$(git rev-parse --short HEAD)
|
|
56
|
+
echo "pr_tag=${sanitized_branch}-${commit_sha}" >> $GITHUB_OUTPUT
|
|
57
|
+
echo "commit_sha=${commit_sha}" >> $GITHUB_OUTPUT
|
|
58
|
+
echo "📦 Docker Tag: ${sanitized_branch}-${commit_sha}"
|
|
63
59
|
|
|
64
60
|
- name: Docker meta
|
|
65
61
|
id: meta
|
|
@@ -67,11 +63,7 @@ jobs:
|
|
|
67
63
|
with:
|
|
68
64
|
images: ${{ env.REGISTRY_IMAGE }}
|
|
69
65
|
tags: |
|
|
70
|
-
|
|
71
|
-
type=raw,value=${{ env.PR_TAG_PREFIX }}${{ steps.pr_meta.outputs.pr_tag }},enable=${{ github.event_name == 'pull_request_target' }}
|
|
72
|
-
# release 构建使用版本号
|
|
73
|
-
type=semver,pattern={{version}},enable=${{ github.event_name != 'pull_request_target' }}
|
|
74
|
-
type=raw,value=latest,enable=${{ github.event_name != 'pull_request_target' }}
|
|
66
|
+
type=raw,value=${{ env.PR_TAG_PREFIX }}${{ steps.pr_meta.outputs.pr_tag }}
|
|
75
67
|
|
|
76
68
|
- name: Docker login
|
|
77
69
|
uses: docker/login-action@v3
|
|
@@ -79,11 +71,6 @@ jobs:
|
|
|
79
71
|
username: ${{ secrets.DOCKER_REGISTRY_USER }}
|
|
80
72
|
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
|
|
81
73
|
|
|
82
|
-
- name: Get commit SHA
|
|
83
|
-
if: github.ref == 'refs/heads/main'
|
|
84
|
-
id: vars
|
|
85
|
-
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
|
|
86
|
-
|
|
87
74
|
- name: Build and export
|
|
88
75
|
id: build
|
|
89
76
|
uses: docker/build-push-action@v6
|
|
@@ -93,7 +80,7 @@ jobs:
|
|
|
93
80
|
file: ./Dockerfile
|
|
94
81
|
labels: ${{ steps.meta.outputs.labels }}
|
|
95
82
|
build-args: |
|
|
96
|
-
SHA=${{ steps.
|
|
83
|
+
SHA=${{ steps.pr_meta.outputs.commit_sha }}
|
|
97
84
|
outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true
|
|
98
85
|
|
|
99
86
|
- name: Export digest
|
|
@@ -112,11 +99,13 @@ jobs:
|
|
|
112
99
|
retention-days: 1
|
|
113
100
|
|
|
114
101
|
merge:
|
|
115
|
-
name: Merge
|
|
102
|
+
name: Merge and Publish
|
|
116
103
|
needs: build
|
|
117
104
|
runs-on: ubuntu-latest
|
|
105
|
+
# 只为非 fork 的 PR 发布(fork 的 PR 没有写权限)
|
|
106
|
+
if: github.event.pull_request.head.repo.full_name == github.repository
|
|
118
107
|
steps:
|
|
119
|
-
- name: Checkout
|
|
108
|
+
- name: Checkout PR branch
|
|
120
109
|
uses: actions/checkout@v5
|
|
121
110
|
with:
|
|
122
111
|
fetch-depth: 0
|
|
@@ -133,13 +122,14 @@ jobs:
|
|
|
133
122
|
|
|
134
123
|
# 为 merge job 添加 PR metadata 生成
|
|
135
124
|
- name: Generate PR metadata
|
|
136
|
-
if: github.event_name == 'pull_request_target'
|
|
137
125
|
id: pr_meta
|
|
138
126
|
env:
|
|
139
127
|
BRANCH_NAME: ${{ github.head_ref }}
|
|
140
128
|
run: |
|
|
141
129
|
sanitized_branch=$(echo "${BRANCH_NAME}" | sed -E 's/[^a-zA-Z0-9_.-]+/-/g')
|
|
142
|
-
|
|
130
|
+
commit_sha=$(git rev-parse --short HEAD)
|
|
131
|
+
echo "pr_tag=${sanitized_branch}-${commit_sha}" >> $GITHUB_OUTPUT
|
|
132
|
+
echo "commit_sha=${commit_sha}" >> $GITHUB_OUTPUT
|
|
143
133
|
|
|
144
134
|
- name: Docker meta
|
|
145
135
|
id: meta
|
|
@@ -147,9 +137,7 @@ jobs:
|
|
|
147
137
|
with:
|
|
148
138
|
images: ${{ env.REGISTRY_IMAGE }}
|
|
149
139
|
tags: |
|
|
150
|
-
type=raw,value=${{ env.PR_TAG_PREFIX }}${{ steps.pr_meta.outputs.pr_tag }}
|
|
151
|
-
type=semver,pattern={{version}},enable=${{ github.event_name != 'pull_request_target' }}
|
|
152
|
-
type=raw,value=latest,enable=${{ github.event_name != 'pull_request_target' }}
|
|
140
|
+
type=raw,value=${{ env.PR_TAG_PREFIX }}${{ steps.pr_meta.outputs.pr_tag }}
|
|
153
141
|
|
|
154
142
|
- name: Docker login
|
|
155
143
|
uses: docker/login-action@v3
|
|
@@ -168,7 +156,6 @@ jobs:
|
|
|
168
156
|
docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:${{ steps.meta.outputs.version }}
|
|
169
157
|
|
|
170
158
|
- name: Comment on PR with Docker build info
|
|
171
|
-
if: github.event_name == 'pull_request_target'
|
|
172
159
|
uses: actions/github-script@v8
|
|
173
160
|
with:
|
|
174
161
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
name: Publish Docker Image
|
|
2
|
+
permissions:
|
|
3
|
+
contents: read
|
|
4
|
+
|
|
5
|
+
on:
|
|
6
|
+
workflow_dispatch:
|
|
7
|
+
release:
|
|
8
|
+
types: [published]
|
|
9
|
+
|
|
10
|
+
concurrency:
|
|
11
|
+
group: ${{ github.ref }}-${{ github.workflow }}
|
|
12
|
+
cancel-in-progress: false
|
|
13
|
+
|
|
14
|
+
env:
|
|
15
|
+
REGISTRY_IMAGE: lobehub/lobehub
|
|
16
|
+
|
|
17
|
+
jobs:
|
|
18
|
+
build:
|
|
19
|
+
|
|
20
|
+
strategy:
|
|
21
|
+
matrix:
|
|
22
|
+
include:
|
|
23
|
+
- platform: linux/amd64
|
|
24
|
+
os: ubuntu-latest
|
|
25
|
+
- platform: linux/arm64
|
|
26
|
+
os: ubuntu-24.04-arm
|
|
27
|
+
runs-on: ${{ matrix.os }}
|
|
28
|
+
name: Build ${{ matrix.platform }} Image
|
|
29
|
+
steps:
|
|
30
|
+
- name: Prepare
|
|
31
|
+
run: |
|
|
32
|
+
platform=${{ matrix.platform }}
|
|
33
|
+
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
|
|
34
|
+
|
|
35
|
+
- name: Checkout base
|
|
36
|
+
uses: actions/checkout@v5
|
|
37
|
+
with:
|
|
38
|
+
fetch-depth: 0
|
|
39
|
+
|
|
40
|
+
- name: Set up Docker Buildx
|
|
41
|
+
uses: docker/setup-buildx-action@v3
|
|
42
|
+
|
|
43
|
+
- name: Docker meta
|
|
44
|
+
id: meta
|
|
45
|
+
uses: docker/metadata-action@v5
|
|
46
|
+
with:
|
|
47
|
+
images: ${{ env.REGISTRY_IMAGE }}
|
|
48
|
+
tags: |
|
|
49
|
+
type=semver,pattern={{version}}
|
|
50
|
+
type=raw,value=latest
|
|
51
|
+
|
|
52
|
+
- name: Docker login
|
|
53
|
+
uses: docker/login-action@v3
|
|
54
|
+
with:
|
|
55
|
+
username: ${{ secrets.DOCKER_REGISTRY_USER }}
|
|
56
|
+
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
|
|
57
|
+
|
|
58
|
+
- name: Get commit SHA
|
|
59
|
+
if: github.ref == 'refs/heads/main'
|
|
60
|
+
id: vars
|
|
61
|
+
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
|
|
62
|
+
|
|
63
|
+
- name: Build and export
|
|
64
|
+
id: build
|
|
65
|
+
uses: docker/build-push-action@v6
|
|
66
|
+
with:
|
|
67
|
+
platforms: ${{ matrix.platform }}
|
|
68
|
+
context: .
|
|
69
|
+
file: ./Dockerfile
|
|
70
|
+
labels: ${{ steps.meta.outputs.labels }}
|
|
71
|
+
build-args: |
|
|
72
|
+
SHA=${{ steps.vars.outputs.sha_short }}
|
|
73
|
+
outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true
|
|
74
|
+
|
|
75
|
+
- name: Export digest
|
|
76
|
+
run: |
|
|
77
|
+
rm -rf /tmp/digests
|
|
78
|
+
mkdir -p /tmp/digests
|
|
79
|
+
digest="${{ steps.build.outputs.digest }}"
|
|
80
|
+
touch "/tmp/digests/${digest#sha256:}"
|
|
81
|
+
|
|
82
|
+
- name: Upload artifact
|
|
83
|
+
uses: actions/upload-artifact@v5
|
|
84
|
+
with:
|
|
85
|
+
name: digest-${{ env.PLATFORM_PAIR }}
|
|
86
|
+
path: /tmp/digests/*
|
|
87
|
+
if-no-files-found: error
|
|
88
|
+
retention-days: 1
|
|
89
|
+
|
|
90
|
+
merge:
|
|
91
|
+
name: Merge
|
|
92
|
+
needs: build
|
|
93
|
+
runs-on: ubuntu-latest
|
|
94
|
+
steps:
|
|
95
|
+
- name: Checkout base
|
|
96
|
+
uses: actions/checkout@v5
|
|
97
|
+
with:
|
|
98
|
+
fetch-depth: 0
|
|
99
|
+
|
|
100
|
+
- name: Download digests
|
|
101
|
+
uses: actions/download-artifact@v6
|
|
102
|
+
with:
|
|
103
|
+
path: /tmp/digests
|
|
104
|
+
pattern: digest-*
|
|
105
|
+
merge-multiple: true
|
|
106
|
+
|
|
107
|
+
- name: Set up Docker Buildx
|
|
108
|
+
uses: docker/setup-buildx-action@v3
|
|
109
|
+
|
|
110
|
+
- name: Docker meta
|
|
111
|
+
id: meta
|
|
112
|
+
uses: docker/metadata-action@v5
|
|
113
|
+
with:
|
|
114
|
+
images: ${{ env.REGISTRY_IMAGE }}
|
|
115
|
+
tags: |
|
|
116
|
+
type=semver,pattern={{version}}
|
|
117
|
+
type=raw,value=latest
|
|
118
|
+
|
|
119
|
+
- name: Docker login
|
|
120
|
+
uses: docker/login-action@v3
|
|
121
|
+
with:
|
|
122
|
+
username: ${{ secrets.DOCKER_REGISTRY_USER }}
|
|
123
|
+
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
|
|
124
|
+
|
|
125
|
+
- name: Create manifest list and push
|
|
126
|
+
working-directory: /tmp/digests
|
|
127
|
+
run: |
|
|
128
|
+
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
|
|
129
|
+
$(printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ' *)
|
|
130
|
+
|
|
131
|
+
- name: Inspect image
|
|
132
|
+
run: |
|
|
133
|
+
docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:${{ steps.meta.outputs.version }}
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,56 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
## [Version 2.0.0-next.119](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.118...v2.0.0-next.119)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2025-11-26**</sup>
|
|
8
|
+
|
|
9
|
+
#### 💄 Styles
|
|
10
|
+
|
|
11
|
+
- **misc**: Update i18n.
|
|
12
|
+
|
|
13
|
+
<br/>
|
|
14
|
+
|
|
15
|
+
<details>
|
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
17
|
+
|
|
18
|
+
#### Styles
|
|
19
|
+
|
|
20
|
+
- **misc**: Update i18n, closes [#10405](https://github.com/lobehub/lobe-chat/issues/10405) ([fb8f977](https://github.com/lobehub/lobe-chat/commit/fb8f977))
|
|
21
|
+
|
|
22
|
+
</details>
|
|
23
|
+
|
|
24
|
+
<div align="right">
|
|
25
|
+
|
|
26
|
+
[](#readme-top)
|
|
27
|
+
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
## [Version 2.0.0-next.118](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.117...v2.0.0-next.118)
|
|
31
|
+
|
|
32
|
+
<sup>Released on **2025-11-26**</sup>
|
|
33
|
+
|
|
34
|
+
#### 🐛 Bug Fixes
|
|
35
|
+
|
|
36
|
+
- **misc**: Showing compatibility with both new and old versions of Plugins.
|
|
37
|
+
|
|
38
|
+
<br/>
|
|
39
|
+
|
|
40
|
+
<details>
|
|
41
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
42
|
+
|
|
43
|
+
#### What's fixed
|
|
44
|
+
|
|
45
|
+
- **misc**: Showing compatibility with both new and old versions of Plugins, closes [#10418](https://github.com/lobehub/lobe-chat/issues/10418) ([64af7b1](https://github.com/lobehub/lobe-chat/commit/64af7b1))
|
|
46
|
+
|
|
47
|
+
</details>
|
|
48
|
+
|
|
49
|
+
<div align="right">
|
|
50
|
+
|
|
51
|
+
[](#readme-top)
|
|
52
|
+
|
|
53
|
+
</div>
|
|
54
|
+
|
|
5
55
|
## [Version 2.0.0-next.117](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.116...v2.0.0-next.117)
|
|
6
56
|
|
|
7
57
|
<sup>Released on **2025-11-25**</sup>
|
package/changelog/v1.json
CHANGED
|
@@ -1,4 +1,22 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"children": {
|
|
4
|
+
"improvements": [
|
|
5
|
+
"Update i18n."
|
|
6
|
+
]
|
|
7
|
+
},
|
|
8
|
+
"date": "2025-11-26",
|
|
9
|
+
"version": "2.0.0-next.119"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"children": {
|
|
13
|
+
"fixes": [
|
|
14
|
+
"Showing compatibility with both new and old versions of Plugins."
|
|
15
|
+
]
|
|
16
|
+
},
|
|
17
|
+
"date": "2025-11-26",
|
|
18
|
+
"version": "2.0.0-next.118"
|
|
19
|
+
},
|
|
2
20
|
{
|
|
3
21
|
"children": {
|
|
4
22
|
"features": [
|
package/locales/ar/models.json
CHANGED
|
@@ -737,6 +737,9 @@
|
|
|
737
737
|
"anthropic/claude-opus-4.1": {
|
|
738
738
|
"description": "Opus 4.1 هو نموذج متقدم من Anthropic، محسن للبرمجة، الاستدلال المعقد، والمهام المستمرة."
|
|
739
739
|
},
|
|
740
|
+
"anthropic/claude-opus-4.5": {
|
|
741
|
+
"description": "Claude Opus 4.5 هو النموذج الرائد من Anthropic، يجمع بين الذكاء الفائق والأداء القابل للتوسع، مما يجعله مناسبًا للمهام المعقدة التي تتطلب أعلى مستويات الجودة في الاستجابة والقدرة على الاستدلال."
|
|
742
|
+
},
|
|
740
743
|
"anthropic/claude-sonnet-4": {
|
|
741
744
|
"description": "Claude Sonnet 4 هو إصدار الاستدلال الهجين من Anthropic، يجمع بين قدرات التفكير وغير التفكير."
|
|
742
745
|
},
|
|
@@ -827,6 +830,9 @@
|
|
|
827
830
|
"claude-opus-4-20250514": {
|
|
828
831
|
"description": "Claude Opus 4 هو أقوى نموذج من Anthropic لمعالجة المهام المعقدة للغاية. إنه يتفوق في الأداء والذكاء والسلاسة والفهم."
|
|
829
832
|
},
|
|
833
|
+
"claude-opus-4-5-20251101": {
|
|
834
|
+
"description": "Claude Opus 4.5 هو النموذج الرائد من Anthropic، يجمع بين الذكاء الفائق والأداء القابل للتوسع، مما يجعله مناسبًا للمهام المعقدة التي تتطلب أعلى مستويات الجودة في الاستجابة والقدرة على الاستدلال."
|
|
835
|
+
},
|
|
830
836
|
"claude-sonnet-4-20250514": {
|
|
831
837
|
"description": "كلود سونيت 4 يمكنه إنتاج استجابات شبه فورية أو تفكير تدريجي مطول، حيث يمكن للمستخدم رؤية هذه العمليات بوضوح."
|
|
832
838
|
},
|
|
@@ -1670,6 +1676,9 @@
|
|
|
1670
1676
|
"glm-zero-preview": {
|
|
1671
1677
|
"description": "يمتلك GLM-Zero-Preview قدرة قوية على الاستدلال المعقد، ويظهر أداءً ممتازًا في مجالات الاستدلال المنطقي، والرياضيات، والبرمجة."
|
|
1672
1678
|
},
|
|
1679
|
+
"global.anthropic.claude-opus-4-5-20251101-v1:0": {
|
|
1680
|
+
"description": "Claude Opus 4.5 هو النموذج الرائد من Anthropic، يجمع بين الذكاء الفائق والأداء القابل للتوسع، مما يجعله مناسبًا للمهام المعقدة التي تتطلب أعلى مستويات الجودة في الاستجابة والقدرة على الاستدلال."
|
|
1681
|
+
},
|
|
1673
1682
|
"google/gemini-2.0-flash": {
|
|
1674
1683
|
"description": "Gemini 2.0 Flash هو نموذج استدلال عالي الأداء من Google، مناسب للمهام متعددة الوسائط الممتدة."
|
|
1675
1684
|
},
|
|
@@ -2184,7 +2193,7 @@
|
|
|
2184
2193
|
"description": "Kimi K2 Instruct، نموذج الاستدلال الرسمي من Kimi، يدعم السياق الطويل، البرمجة، الأسئلة والأجوبة، وغيرها من السيناريوهات."
|
|
2185
2194
|
},
|
|
2186
2195
|
"kimi-k2-thinking": {
|
|
2187
|
-
"description": "نموذج
|
|
2196
|
+
"description": "نموذج kimi-k2-thinking من تطوير Moonshot AI، يتمتع بقدرات عامة في التفكير والاستدلال، ويتقن الاستدلال العميق ويمكنه استخدام الأدوات عبر خطوات متعددة لحل مختلف المشكلات المعقدة."
|
|
2188
2197
|
},
|
|
2189
2198
|
"kimi-k2-thinking-turbo": {
|
|
2190
2199
|
"description": "الإصدار السريع من نموذج التفكير طويل المدى K2، يدعم سياق 256k، بارع في الاستدلال العميق، وسرعة إخراج تصل إلى 60-100 رمز في الثانية."
|
package/locales/ar/setting.json
CHANGED
|
@@ -737,6 +737,9 @@
|
|
|
737
737
|
"anthropic/claude-opus-4.1": {
|
|
738
738
|
"description": "Opus 4.1 е висок клас модел на Anthropic, оптимизиран за програмиране, сложни логически задачи и продължителни процеси."
|
|
739
739
|
},
|
|
740
|
+
"anthropic/claude-opus-4.5": {
|
|
741
|
+
"description": "Claude Opus 4.5 е водещият модел на Anthropic, който съчетава изключителен интелект и мащабируема производителност, подходящ за сложни задачи, изискващи най-високо качество на отговорите и способност за разсъждение."
|
|
742
|
+
},
|
|
740
743
|
"anthropic/claude-sonnet-4": {
|
|
741
744
|
"description": "Claude Sonnet 4 е хибриден модел за разсъждение от Anthropic, предлагащ комбинирани възможности за мисловни и немисловни задачи."
|
|
742
745
|
},
|
|
@@ -827,6 +830,9 @@
|
|
|
827
830
|
"claude-opus-4-20250514": {
|
|
828
831
|
"description": "Claude Opus 4 е най-мощният модел на Anthropic, предназначен за обработка на изключително сложни задачи. Той се отличава с изключителна производителност, интелигентност, плавност и разбиране."
|
|
829
832
|
},
|
|
833
|
+
"claude-opus-4-5-20251101": {
|
|
834
|
+
"description": "Claude Opus 4.5 е водещият модел на Anthropic, който съчетава изключителен интелект и мащабируема производителност, подходящ за сложни задачи, изискващи най-високо качество на отговорите и способност за разсъждение."
|
|
835
|
+
},
|
|
830
836
|
"claude-sonnet-4-20250514": {
|
|
831
837
|
"description": "Claude Sonnet 4 може да генерира почти мигновени отговори или удължено стъпково мислене, като потребителите могат ясно да проследят тези процеси."
|
|
832
838
|
},
|
|
@@ -1670,6 +1676,9 @@
|
|
|
1670
1676
|
"glm-zero-preview": {
|
|
1671
1677
|
"description": "GLM-Zero-Preview притежава мощни способности за сложни разсъждения, показвайки отлични резултати в логическото разсъждение, математиката и програмирането."
|
|
1672
1678
|
},
|
|
1679
|
+
"global.anthropic.claude-opus-4-5-20251101-v1:0": {
|
|
1680
|
+
"description": "Claude Opus 4.5 е водещият модел на Anthropic, който съчетава изключителен интелект и мащабируема производителност, подходящ за сложни задачи, изискващи най-високо качество на отговорите и способност за разсъждение."
|
|
1681
|
+
},
|
|
1673
1682
|
"google/gemini-2.0-flash": {
|
|
1674
1683
|
"description": "Gemini 2.0 Flash е високопроизводителен модел за разсъждение от Google, подходящ за разширени мултимодални задачи."
|
|
1675
1684
|
},
|
|
@@ -2184,7 +2193,7 @@
|
|
|
2184
2193
|
"description": "Kimi K2 Instruct, официален модел за извеждане от Kimi, поддържащ дълъг контекст, програмиране, въпроси и отговори и други сценарии."
|
|
2185
2194
|
},
|
|
2186
2195
|
"kimi-k2-thinking": {
|
|
2187
|
-
"description": "
|
|
2196
|
+
"description": "Моделът kimi-k2-thinking, предоставен от Moonshot AI, е мисловен модел с универсални агентни и логически способности. Той е отличен в дълбокото разсъждение и може да използва инструменти на няколко стъпки, за да помага при решаването на различни сложни проблеми."
|
|
2188
2197
|
},
|
|
2189
2198
|
"kimi-k2-thinking-turbo": {
|
|
2190
2199
|
"description": "Ускорена версия на модела K2 за дълбоко разсъждение, поддържа 256k контекст и предлага скорост на изход от 60–100 токена в секунда при запазване на дълбоките логически способности."
|
|
@@ -737,6 +737,9 @@
|
|
|
737
737
|
"anthropic/claude-opus-4.1": {
|
|
738
738
|
"description": "Opus 4.1 ist ein High-End-Modell von Anthropic, optimiert für Programmierung, komplexe Schlussfolgerungen und dauerhafte Aufgaben."
|
|
739
739
|
},
|
|
740
|
+
"anthropic/claude-opus-4.5": {
|
|
741
|
+
"description": "Claude Opus 4.5 ist das Flaggschiffmodell von Anthropic. Es vereint herausragende Intelligenz mit skalierbarer Leistung und eignet sich ideal für komplexe Aufgaben, die höchste Qualität bei Antworten und ausgeprägte Fähigkeiten im logischen Denken erfordern."
|
|
742
|
+
},
|
|
740
743
|
"anthropic/claude-sonnet-4": {
|
|
741
744
|
"description": "Claude Sonnet 4 ist eine hybride Schlussfolgerungsversion von Anthropic, die sowohl kognitive als auch nicht-kognitive Fähigkeiten kombiniert."
|
|
742
745
|
},
|
|
@@ -827,6 +830,9 @@
|
|
|
827
830
|
"claude-opus-4-20250514": {
|
|
828
831
|
"description": "Claude Opus 4 ist das leistungsstärkste Modell von Anthropic zur Bewältigung hochkomplexer Aufgaben. Es zeichnet sich durch hervorragende Leistung, Intelligenz, Flüssigkeit und Verständnis aus."
|
|
829
832
|
},
|
|
833
|
+
"claude-opus-4-5-20251101": {
|
|
834
|
+
"description": "Claude Opus 4.5 ist das Flaggschiffmodell von Anthropic. Es vereint herausragende Intelligenz mit skalierbarer Leistung und eignet sich ideal für komplexe Aufgaben, die höchste Qualität bei Antworten und ausgeprägte Fähigkeiten im logischen Denken erfordern."
|
|
835
|
+
},
|
|
830
836
|
"claude-sonnet-4-20250514": {
|
|
831
837
|
"description": "Claude Sonnet 4 kann nahezu sofortige Antworten oder verlängerte schrittweise Überlegungen erzeugen, die für den Nutzer klar nachvollziehbar sind."
|
|
832
838
|
},
|
|
@@ -1670,6 +1676,9 @@
|
|
|
1670
1676
|
"glm-zero-preview": {
|
|
1671
1677
|
"description": "GLM-Zero-Preview verfügt über starke Fähigkeiten zur komplexen Schlussfolgerung und zeigt hervorragende Leistungen in den Bereichen logisches Denken, Mathematik und Programmierung."
|
|
1672
1678
|
},
|
|
1679
|
+
"global.anthropic.claude-opus-4-5-20251101-v1:0": {
|
|
1680
|
+
"description": "Claude Opus 4.5 ist das Flaggschiffmodell von Anthropic. Es vereint herausragende Intelligenz mit skalierbarer Leistung und eignet sich ideal für komplexe Aufgaben, die höchste Qualität bei Antworten und ausgeprägte Fähigkeiten im logischen Denken erfordern."
|
|
1681
|
+
},
|
|
1673
1682
|
"google/gemini-2.0-flash": {
|
|
1674
1683
|
"description": "Gemini 2.0 Flash ist ein leistungsstarkes Schlussfolgerungsmodell von Google, geeignet für erweiterte multimodale Aufgaben."
|
|
1675
1684
|
},
|
|
@@ -2184,7 +2193,7 @@
|
|
|
2184
2193
|
"description": "Kimi K2 Instruct, das offizielle Inferenzmodell von Kimi mit Unterstützung für Langkontext, Code, QA und mehr."
|
|
2185
2194
|
},
|
|
2186
2195
|
"kimi-k2-thinking": {
|
|
2187
|
-
"description": "
|
|
2196
|
+
"description": "Das Modell kimi-k2-thinking von Moonshot AI ist ein vielseitiges Denkmodell mit agentischen Fähigkeiten und ausgeprägtem logischen Denkvermögen. Es zeichnet sich durch tiefgehende Schlussfolgerungen aus und kann durch mehrstufige Werkzeugnutzung bei der Lösung verschiedenster Probleme unterstützen."
|
|
2188
2197
|
},
|
|
2189
2198
|
"kimi-k2-thinking-turbo": {
|
|
2190
2199
|
"description": "Turbo-Version des K2 Langzeit-Denkmodells mit 256k Kontext, spezialisiert auf tiefgreifende Schlussfolgerung und einer Ausgabegeschwindigkeit von 60–100 Tokens pro Sekunde."
|
|
@@ -737,6 +737,9 @@
|
|
|
737
737
|
"anthropic/claude-opus-4.1": {
|
|
738
738
|
"description": "Opus 4.1 is a premium model from Anthropic, optimized for programming, complex reasoning, and sustained tasks."
|
|
739
739
|
},
|
|
740
|
+
"anthropic/claude-opus-4.5": {
|
|
741
|
+
"description": "Claude Opus 4.5 is Anthropic's flagship model, combining exceptional intelligence with scalable performance. It's ideal for complex tasks that demand top-tier responses and advanced reasoning capabilities."
|
|
742
|
+
},
|
|
740
743
|
"anthropic/claude-sonnet-4": {
|
|
741
744
|
"description": "Claude Sonnet 4 is Anthropic’s hybrid reasoning model, offering a blend of cognitive and non-cognitive capabilities."
|
|
742
745
|
},
|
|
@@ -827,6 +830,9 @@
|
|
|
827
830
|
"claude-opus-4-20250514": {
|
|
828
831
|
"description": "Claude Opus 4 is Anthropic's most powerful model for handling highly complex tasks. It excels in performance, intelligence, fluency, and comprehension."
|
|
829
832
|
},
|
|
833
|
+
"claude-opus-4-5-20251101": {
|
|
834
|
+
"description": "Claude Opus 4.5 is Anthropic's flagship model, combining exceptional intelligence with scalable performance. It's ideal for complex tasks that demand top-tier responses and advanced reasoning capabilities."
|
|
835
|
+
},
|
|
830
836
|
"claude-sonnet-4-20250514": {
|
|
831
837
|
"description": "Claude Sonnet 4 can generate near-instant responses or extended step-by-step reasoning, allowing users to clearly observe these processes."
|
|
832
838
|
},
|
|
@@ -1670,6 +1676,9 @@
|
|
|
1670
1676
|
"glm-zero-preview": {
|
|
1671
1677
|
"description": "GLM-Zero-Preview possesses strong complex reasoning abilities, excelling in logical reasoning, mathematics, programming, and other fields."
|
|
1672
1678
|
},
|
|
1679
|
+
"global.anthropic.claude-opus-4-5-20251101-v1:0": {
|
|
1680
|
+
"description": "Claude Opus 4.5 is Anthropic's flagship model, combining exceptional intelligence with scalable performance. It's ideal for complex tasks that demand top-tier responses and advanced reasoning capabilities."
|
|
1681
|
+
},
|
|
1673
1682
|
"google/gemini-2.0-flash": {
|
|
1674
1683
|
"description": "Gemini 2.0 Flash is Google’s high-performance reasoning model, suitable for extended multimodal tasks."
|
|
1675
1684
|
},
|
|
@@ -2184,7 +2193,7 @@
|
|
|
2184
2193
|
"description": "Kimi K2 Instruct, the official Kimi inference model supporting long context, code, Q&A, and more."
|
|
2185
2194
|
},
|
|
2186
2195
|
"kimi-k2-thinking": {
|
|
2187
|
-
"description": "
|
|
2196
|
+
"description": "The kimi-k2-thinking model, developed by Moonshot AI, is a general-purpose agentic and reasoning model. It excels at deep reasoning and can utilize multi-step tool use to help solve a wide range of complex problems."
|
|
2188
2197
|
},
|
|
2189
2198
|
"kimi-k2-thinking-turbo": {
|
|
2190
2199
|
"description": "The high-speed version of the K2 Long Thinking Model supports 256k context and deep reasoning, with output speeds of 60–100 tokens per second."
|
|
@@ -737,6 +737,9 @@
|
|
|
737
737
|
"anthropic/claude-opus-4.1": {
|
|
738
738
|
"description": "Opus 4.1 es un modelo avanzado de Anthropic, optimizado para programación, razonamiento complejo y tareas continuas."
|
|
739
739
|
},
|
|
740
|
+
"anthropic/claude-opus-4.5": {
|
|
741
|
+
"description": "Claude Opus 4.5 es el modelo insignia de Anthropic, que combina una inteligencia excepcional con un rendimiento escalable, ideal para tareas complejas que requieren respuestas de la más alta calidad y una gran capacidad de razonamiento."
|
|
742
|
+
},
|
|
740
743
|
"anthropic/claude-sonnet-4": {
|
|
741
744
|
"description": "Claude Sonnet 4 es una versión de razonamiento híbrido de Anthropic, que combina capacidades de pensamiento y no pensamiento."
|
|
742
745
|
},
|
|
@@ -827,6 +830,9 @@
|
|
|
827
830
|
"claude-opus-4-20250514": {
|
|
828
831
|
"description": "Claude Opus 4 es el modelo más potente de Anthropic para manejar tareas altamente complejas. Se destaca en rendimiento, inteligencia, fluidez y comprensión."
|
|
829
832
|
},
|
|
833
|
+
"claude-opus-4-5-20251101": {
|
|
834
|
+
"description": "Claude Opus 4.5 es el modelo insignia de Anthropic, que combina una inteligencia excepcional con un rendimiento escalable, ideal para tareas complejas que requieren respuestas de la más alta calidad y una gran capacidad de razonamiento."
|
|
835
|
+
},
|
|
830
836
|
"claude-sonnet-4-20250514": {
|
|
831
837
|
"description": "Claude Sonnet 4 puede generar respuestas casi instantáneas o un pensamiento prolongado paso a paso, permitiendo a los usuarios ver claramente estos procesos."
|
|
832
838
|
},
|
|
@@ -1670,6 +1676,9 @@
|
|
|
1670
1676
|
"glm-zero-preview": {
|
|
1671
1677
|
"description": "GLM-Zero-Preview posee una poderosa capacidad de razonamiento complejo, destacándose en áreas como razonamiento lógico, matemáticas y programación."
|
|
1672
1678
|
},
|
|
1679
|
+
"global.anthropic.claude-opus-4-5-20251101-v1:0": {
|
|
1680
|
+
"description": "Claude Opus 4.5 es el modelo insignia de Anthropic, que combina una inteligencia excepcional con un rendimiento escalable, ideal para tareas complejas que requieren respuestas de la más alta calidad y una gran capacidad de razonamiento."
|
|
1681
|
+
},
|
|
1673
1682
|
"google/gemini-2.0-flash": {
|
|
1674
1683
|
"description": "Gemini 2.0 Flash es un modelo de razonamiento de alto rendimiento de Google, adecuado para tareas multimodales extendidas."
|
|
1675
1684
|
},
|
|
@@ -2184,7 +2193,7 @@
|
|
|
2184
2193
|
"description": "Kimi K2 Instruct, modelo de inferencia oficial de Kimi, compatible con contexto largo, código, preguntas y respuestas, entre otros escenarios."
|
|
2185
2194
|
},
|
|
2186
2195
|
"kimi-k2-thinking": {
|
|
2187
|
-
"description": "
|
|
2196
|
+
"description": "El modelo kimi-k2-thinking, proporcionado por Moonshot AI, es un modelo de pensamiento con capacidades generales de agente y razonamiento. Se destaca en el razonamiento profundo y puede utilizar herramientas en múltiples pasos para ayudar a resolver diversos problemas complejos."
|
|
2188
2197
|
},
|
|
2189
2198
|
"kimi-k2-thinking-turbo": {
|
|
2190
2199
|
"description": "Versión rápida del modelo de pensamiento K2, compatible con contexto de 256k, especializado en razonamiento profundo, con velocidad de salida de 60-100 tokens por segundo."
|