@lobehub/chat 1.66.6 → 1.67.1
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/.env.example +3 -3
- package/CHANGELOG.md +42 -0
- package/Dockerfile +3 -9
- package/Dockerfile.database +11 -11
- package/Dockerfile.pglite +3 -9
- package/README.md +17 -20
- package/README.zh-CN.md +6 -6
- package/changelog/v1.json +14 -0
- package/locales/ar/models.json +9 -3
- package/locales/ar/plugin.json +12 -0
- package/locales/bg-BG/models.json +9 -3
- package/locales/bg-BG/plugin.json +12 -0
- package/locales/de-DE/models.json +9 -3
- package/locales/de-DE/plugin.json +12 -0
- package/locales/en-US/models.json +9 -3
- package/locales/en-US/plugin.json +12 -0
- package/locales/es-ES/models.json +9 -3
- package/locales/es-ES/plugin.json +12 -0
- package/locales/fa-IR/models.json +9 -3
- package/locales/fa-IR/plugin.json +12 -0
- package/locales/fr-FR/models.json +9 -3
- package/locales/fr-FR/plugin.json +12 -0
- package/locales/it-IT/models.json +9 -3
- package/locales/it-IT/plugin.json +12 -0
- package/locales/ja-JP/models.json +9 -3
- package/locales/ja-JP/plugin.json +12 -0
- package/locales/ko-KR/models.json +9 -3
- package/locales/ko-KR/plugin.json +12 -0
- package/locales/nl-NL/models.json +9 -3
- package/locales/nl-NL/plugin.json +12 -0
- package/locales/pl-PL/models.json +9 -3
- package/locales/pl-PL/plugin.json +12 -0
- package/locales/pt-BR/models.json +9 -3
- package/locales/pt-BR/plugin.json +12 -0
- package/locales/ru-RU/models.json +9 -3
- package/locales/ru-RU/plugin.json +12 -0
- package/locales/tr-TR/models.json +9 -3
- package/locales/tr-TR/plugin.json +12 -0
- package/locales/vi-VN/models.json +9 -3
- package/locales/vi-VN/plugin.json +12 -0
- package/locales/zh-CN/models.json +9 -3
- package/locales/zh-CN/plugin.json +12 -0
- package/locales/zh-TW/models.json +9 -3
- package/locales/zh-TW/plugin.json +12 -0
- package/next.config.ts +3 -0
- package/package.json +5 -1
- package/packages/web-crawler/README.md +34 -0
- package/packages/web-crawler/package.json +13 -0
- package/packages/web-crawler/src/crawImpl/browserless.ts +62 -0
- package/packages/web-crawler/src/crawImpl/index.ts +11 -0
- package/packages/web-crawler/src/crawImpl/jina.ts +37 -0
- package/packages/web-crawler/src/crawImpl/naive.ts +84 -0
- package/packages/web-crawler/src/crawler.ts +66 -0
- package/packages/web-crawler/src/index.ts +2 -0
- package/packages/web-crawler/src/type.ts +42 -0
- package/packages/web-crawler/src/urlRules.ts +34 -0
- package/packages/web-crawler/src/utils/__snapshots__/htmlToMarkdown.test.ts.snap +638 -0
- package/packages/web-crawler/src/utils/appUrlRules.test.ts +26 -0
- package/packages/web-crawler/src/utils/appUrlRules.ts +40 -0
- package/packages/web-crawler/src/utils/errorType.ts +12 -0
- package/packages/web-crawler/src/utils/html/terms.html +1222 -0
- package/packages/web-crawler/src/utils/html/yingchao.html +1001 -0
- package/packages/web-crawler/src/utils/htmlToMarkdown.test.ts +35 -0
- package/packages/web-crawler/src/utils/htmlToMarkdown.ts +45 -0
- package/packages/web-crawler/tsconfig.json +20 -0
- package/pnpm-workspace.yaml +3 -0
- package/src/features/Conversation/Messages/Assistant/Tool/Render/CustomRender.tsx +4 -35
- package/src/features/Conversation/Messages/Assistant/Tool/Render/index.tsx +1 -1
- package/src/features/PluginsUI/Render/BuiltinType/index.tsx +3 -0
- package/src/features/PluginsUI/Render/index.tsx +1 -0
- package/src/features/Portal/Plugins/Body/ToolRender.tsx +1 -0
- package/src/locales/default/plugin.ts +12 -0
- package/src/server/routers/tools/search.ts +23 -0
- package/src/services/search.ts +8 -0
- package/src/store/chat/slices/builtinTool/actions/searXNG.ts +50 -0
- package/src/store/chat/slices/builtinTool/initialState.ts +1 -0
- package/src/tools/web-browsing/Portal/PageContent/index.tsx +190 -0
- package/src/tools/web-browsing/Portal/PageContents/index.tsx +23 -0
- package/src/tools/web-browsing/Portal/{ResultList → Search/ResultList}/SearchItem/Video.tsx +1 -1
- package/src/tools/web-browsing/Portal/Search/index.tsx +69 -0
- package/src/tools/web-browsing/Portal/index.tsx +28 -64
- package/src/tools/web-browsing/Render/PageContent/Loading.tsx +57 -0
- package/src/tools/web-browsing/Render/PageContent/Result.tsx +142 -0
- package/src/tools/web-browsing/Render/PageContent/index.tsx +41 -0
- package/src/tools/web-browsing/Render/{SearchQuery → Search/SearchQuery}/SearchView.tsx +1 -1
- package/src/tools/web-browsing/Render/{SearchQuery → Search/SearchQuery}/index.tsx +1 -1
- package/src/tools/web-browsing/Render/{SearchResult → Search/SearchResult}/ShowMore.tsx +1 -1
- package/src/tools/web-browsing/Render/Search/index.tsx +62 -0
- package/src/tools/web-browsing/Render/index.tsx +35 -44
- package/src/tools/web-browsing/index.ts +43 -47
- package/src/tools/web-browsing/systemRole.ts +109 -0
- package/src/types/tool/builtin.ts +2 -0
- package/src/types/tool/crawler.ts +19 -0
- package/src/types/tool/search.ts +1 -0
- /package/src/tools/web-browsing/Portal/{Footer.tsx → Search/Footer.tsx} +0 -0
- /package/src/tools/web-browsing/Portal/{ResultList → Search/ResultList}/SearchItem/CategoryAvatar.tsx +0 -0
- /package/src/tools/web-browsing/Portal/{ResultList → Search/ResultList}/SearchItem/TitleExtra.tsx +0 -0
- /package/src/tools/web-browsing/Portal/{ResultList → Search/ResultList}/SearchItem/index.tsx +0 -0
- /package/src/tools/web-browsing/Portal/{ResultList → Search/ResultList}/index.tsx +0 -0
- /package/src/tools/web-browsing/Render/{ConfigForm → Search/ConfigForm}/Form.tsx +0 -0
- /package/src/tools/web-browsing/Render/{ConfigForm → Search/ConfigForm}/SearchXNGIcon.tsx +0 -0
- /package/src/tools/web-browsing/Render/{ConfigForm → Search/ConfigForm}/index.tsx +0 -0
- /package/src/tools/web-browsing/Render/{ConfigForm → Search/ConfigForm}/style.tsx +0 -0
- /package/src/tools/web-browsing/Render/{SearchResult → Search/SearchResult}/SearchResultItem.tsx +0 -0
- /package/src/tools/web-browsing/Render/{SearchResult → Search/SearchResult}/index.tsx +0 -0
package/.env.example
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
|
8
8
|
########################################
|
9
|
-
|
9
|
+
########## AI Provider Service #########
|
10
10
|
########################################
|
11
11
|
|
12
12
|
### OpenAI ###
|
@@ -33,7 +33,7 @@ OPENAI_API_KEY=sk-xxxxxxxxx
|
|
33
33
|
# AZURE_ENDPOINT=https://docs-test-001.openai.azure.com
|
34
34
|
|
35
35
|
# Azure's API version, follows the YYYY-MM-DD format
|
36
|
-
# AZURE_API_VERSION=2024-
|
36
|
+
# AZURE_API_VERSION=2024-10-21
|
37
37
|
|
38
38
|
|
39
39
|
### Anthropic Service ####
|
@@ -214,7 +214,7 @@ OPENAI_API_KEY=sk-xxxxxxxxx
|
|
214
214
|
# DATABASE_URL=postgres://username:password@host:port/database
|
215
215
|
|
216
216
|
# use `openssl rand -base64 32` to generate a key for the encryption of the database
|
217
|
-
# we use this key to encrypt the user api key
|
217
|
+
# we use this key to encrypt the user api key and proxy url
|
218
218
|
#KEY_VAULTS_SECRET=xxxxx/xxxxxxxxxxxxxx=
|
219
219
|
|
220
220
|
# Specify the Embedding model and Reranker model(unImplemented)
|
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,48 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
### [Version 1.67.1](https://github.com/lobehub/lobe-chat/compare/v1.67.0...v1.67.1)
|
6
|
+
|
7
|
+
<sup>Released on **2025-03-02**</sup>
|
8
|
+
|
9
|
+
<br/>
|
10
|
+
|
11
|
+
<details>
|
12
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
13
|
+
|
14
|
+
</details>
|
15
|
+
|
16
|
+
<div align="right">
|
17
|
+
|
18
|
+
[](#readme-top)
|
19
|
+
|
20
|
+
</div>
|
21
|
+
|
22
|
+
## [Version 1.67.0](https://github.com/lobehub/lobe-chat/compare/v1.66.6...v1.67.0)
|
23
|
+
|
24
|
+
<sup>Released on **2025-03-02**</sup>
|
25
|
+
|
26
|
+
#### ✨ Features
|
27
|
+
|
28
|
+
- **misc**: Support web page crawl in the search.
|
29
|
+
|
30
|
+
<br/>
|
31
|
+
|
32
|
+
<details>
|
33
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
34
|
+
|
35
|
+
#### What's improved
|
36
|
+
|
37
|
+
- **misc**: Support web page crawl in the search, closes [#6582](https://github.com/lobehub/lobe-chat/issues/6582) ([5e02602](https://github.com/lobehub/lobe-chat/commit/5e02602))
|
38
|
+
|
39
|
+
</details>
|
40
|
+
|
41
|
+
<div align="right">
|
42
|
+
|
43
|
+
[](#readme-top)
|
44
|
+
|
45
|
+
</div>
|
46
|
+
|
5
47
|
### [Version 1.66.6](https://github.com/lobehub/lobe-chat/compare/v1.66.5...v1.66.6)
|
6
48
|
|
7
49
|
<sup>Released on **2025-03-02**</sup>
|
package/Dockerfile
CHANGED
@@ -67,8 +67,9 @@ ENV NODE_OPTIONS="--max-old-space-size=8192"
|
|
67
67
|
|
68
68
|
WORKDIR /app
|
69
69
|
|
70
|
-
COPY package.json ./
|
70
|
+
COPY package.json pnpm-workspace.yaml ./
|
71
71
|
COPY .npmrc ./
|
72
|
+
COPY packages ./packages
|
72
73
|
|
73
74
|
RUN \
|
74
75
|
# If you want to build docker in China, build with --build-arg USE_CN_MIRROR=true
|
@@ -86,10 +87,7 @@ RUN \
|
|
86
87
|
# Use pnpm for corepack
|
87
88
|
&& corepack use $(sed -n 's/.*"packageManager": "\(.*\)".*/\1/p' package.json) \
|
88
89
|
# Install the dependencies
|
89
|
-
&& pnpm i
|
90
|
-
# Add sharp dependencies
|
91
|
-
&& mkdir -p /deps \
|
92
|
-
&& pnpm add sharp --prefix /deps
|
90
|
+
&& pnpm i
|
93
91
|
|
94
92
|
COPY . .
|
95
93
|
|
@@ -101,13 +99,9 @@ FROM busybox:latest AS app
|
|
101
99
|
|
102
100
|
COPY --from=base /distroless/ /
|
103
101
|
|
104
|
-
COPY --from=builder /app/public /app/public
|
105
|
-
|
106
102
|
# Automatically leverage output traces to reduce image size
|
107
103
|
# https://nextjs.org/docs/advanced-features/output-file-tracing
|
108
104
|
COPY --from=builder /app/.next/standalone /app/
|
109
|
-
COPY --from=builder /app/.next/static /app/.next/static
|
110
|
-
COPY --from=builder /deps/node_modules/.pnpm /app/node_modules/.pnpm
|
111
105
|
|
112
106
|
# Copy server launcher
|
113
107
|
COPY --from=builder /app/scripts/serverLauncher/startServer.js /app/startServer.js
|
package/Dockerfile.database
CHANGED
@@ -76,8 +76,9 @@ ENV NODE_OPTIONS="--max-old-space-size=8192"
|
|
76
76
|
|
77
77
|
WORKDIR /app
|
78
78
|
|
79
|
-
COPY package.json ./
|
79
|
+
COPY package.json pnpm-workspace.yaml ./
|
80
80
|
COPY .npmrc ./
|
81
|
+
COPY packages ./packages
|
81
82
|
|
82
83
|
RUN \
|
83
84
|
# If you want to build docker in China, build with --build-arg USE_CN_MIRROR=true
|
@@ -96,9 +97,11 @@ RUN \
|
|
96
97
|
&& corepack use $(sed -n 's/.*"packageManager": "\(.*\)".*/\1/p' package.json) \
|
97
98
|
# Install the dependencies
|
98
99
|
&& pnpm i \
|
99
|
-
# Add
|
100
|
+
# Add db migration dependencies
|
100
101
|
&& mkdir -p /deps \
|
101
|
-
&&
|
102
|
+
&& cd /deps \
|
103
|
+
&& pnpm init \
|
104
|
+
&& pnpm add pg drizzle-orm
|
102
105
|
|
103
106
|
COPY . .
|
104
107
|
|
@@ -110,23 +113,20 @@ FROM busybox:latest AS app
|
|
110
113
|
|
111
114
|
COPY --from=base /distroless/ /
|
112
115
|
|
113
|
-
COPY --from=builder /app/public /app/public
|
114
|
-
|
115
116
|
# Automatically leverage output traces to reduce image size
|
116
117
|
# https://nextjs.org/docs/advanced-features/output-file-tracing
|
117
118
|
COPY --from=builder /app/.next/standalone /app/
|
118
|
-
COPY --from=builder /app/.next/static /app/.next/static
|
119
|
-
|
120
|
-
# copy dependencies
|
121
|
-
COPY --from=builder /deps/node_modules/.pnpm /app/node_modules/.pnpm
|
122
|
-
COPY --from=builder /deps/node_modules/pg /app/node_modules/pg
|
123
|
-
COPY --from=builder /deps/node_modules/drizzle-orm /app/node_modules/drizzle-orm
|
124
119
|
|
125
120
|
# Copy database migrations
|
126
121
|
COPY --from=builder /app/src/database/migrations /app/migrations
|
127
122
|
COPY --from=builder /app/scripts/migrateServerDB/docker.cjs /app/docker.cjs
|
128
123
|
COPY --from=builder /app/scripts/migrateServerDB/errorHint.js /app/errorHint.js
|
129
124
|
|
125
|
+
# copy dependencies
|
126
|
+
COPY --from=builder /deps/node_modules/.pnpm /app/node_modules/.pnpm
|
127
|
+
COPY --from=builder /deps/node_modules/pg /app/node_modules/pg
|
128
|
+
COPY --from=builder /deps/node_modules/drizzle-orm /app/node_modules/drizzle-orm
|
129
|
+
|
130
130
|
# Copy server launcher
|
131
131
|
COPY --from=builder /app/scripts/serverLauncher/startServer.js /app/startServer.js
|
132
132
|
|
package/Dockerfile.pglite
CHANGED
@@ -68,8 +68,9 @@ ENV NODE_OPTIONS="--max-old-space-size=8192"
|
|
68
68
|
|
69
69
|
WORKDIR /app
|
70
70
|
|
71
|
-
COPY package.json ./
|
71
|
+
COPY package.json pnpm-workspace.yaml ./
|
72
72
|
COPY .npmrc ./
|
73
|
+
COPY packages ./packages
|
73
74
|
|
74
75
|
RUN \
|
75
76
|
# If you want to build docker in China, build with --build-arg USE_CN_MIRROR=true
|
@@ -87,10 +88,7 @@ RUN \
|
|
87
88
|
# Use pnpm for corepack
|
88
89
|
&& corepack use $(sed -n 's/.*"packageManager": "\(.*\)".*/\1/p' package.json) \
|
89
90
|
# Install the dependencies
|
90
|
-
&& pnpm i
|
91
|
-
# Add sharp dependencies
|
92
|
-
&& mkdir -p /deps \
|
93
|
-
&& pnpm add sharp --prefix /deps
|
91
|
+
&& pnpm i
|
94
92
|
|
95
93
|
COPY . .
|
96
94
|
|
@@ -102,13 +100,9 @@ FROM busybox:latest AS app
|
|
102
100
|
|
103
101
|
COPY --from=base /distroless/ /
|
104
102
|
|
105
|
-
COPY --from=builder /app/public /app/public
|
106
|
-
|
107
103
|
# Automatically leverage output traces to reduce image size
|
108
104
|
# https://nextjs.org/docs/advanced-features/output-file-tracing
|
109
105
|
COPY --from=builder /app/.next/standalone /app/
|
110
|
-
COPY --from=builder /app/.next/static /app/.next/static
|
111
|
-
COPY --from=builder /deps/node_modules/.pnpm /app/node_modules/.pnpm
|
112
106
|
|
113
107
|
# Copy server launcher
|
114
108
|
COPY --from=builder /app/scripts/serverLauncher/startServer.js /app/startServer.js
|
package/README.md
CHANGED
@@ -560,25 +560,22 @@ If you have deployed your own project following the one-click deployment steps i
|
|
560
560
|
|
561
561
|
We provide a Docker image for deploying the LobeChat service on your own private device. Use the following command to start the LobeChat service:
|
562
562
|
|
563
|
+
1. create a folder to for storage files
|
564
|
+
|
563
565
|
```fish
|
564
|
-
$
|
565
|
-
-e OPENAI_API_KEY=sk-xxxx \
|
566
|
-
-e ACCESS_CODE=lobe66 \
|
567
|
-
--name lobe-chat \
|
568
|
-
lobehub/lobe-chat
|
566
|
+
$ mkdir lobe-chat-db && cd lobe-chat-db
|
569
567
|
```
|
570
568
|
|
571
|
-
|
572
|
-
|
573
|
-
|
569
|
+
2. init the LobeChat infrastructure
|
570
|
+
|
571
|
+
```fish
|
572
|
+
bash <(curl -fsSL https://lobe.li/setup.sh) -l zh_CN
|
573
|
+
```
|
574
|
+
|
575
|
+
3. Start the LobeChat service
|
574
576
|
|
575
577
|
```fish
|
576
|
-
|
577
|
-
-e OPENAI_API_KEY=sk-xxxx \
|
578
|
-
-e OPENAI_PROXY_URL=https://api-proxy.com/v1 \
|
579
|
-
-e ACCESS_CODE=lobe66 \
|
580
|
-
--name lobe-chat \
|
581
|
-
lobehub/lobe-chat
|
578
|
+
docker compose up -d
|
582
579
|
```
|
583
580
|
|
584
581
|
> \[!NOTE]
|
@@ -793,12 +790,12 @@ This project is [Apache 2.0](./LICENSE) licensed.
|
|
793
790
|
[discord-link]: https://discord.gg/AYFPHvv2jT
|
794
791
|
[discord-shield]: https://img.shields.io/discord/1127171173982154893?color=5865F2&label=discord&labelColor=black&logo=discord&logoColor=white&style=flat-square
|
795
792
|
[discord-shield-badge]: https://img.shields.io/discord/1127171173982154893?color=5865F2&label=discord&labelColor=black&logo=discord&logoColor=white&style=for-the-badge
|
796
|
-
[docker-pulls-link]: https://hub.docker.com/r/lobehub/lobe-chat
|
797
|
-
[docker-pulls-shield]: https://img.shields.io/docker/pulls/lobehub/lobe-chat?color=45cc11&labelColor=black&style=flat-square
|
798
|
-
[docker-release-link]: https://hub.docker.com/r/lobehub/lobe-chat
|
799
|
-
[docker-release-shield]: https://img.shields.io/docker/v/lobehub/lobe-chat?color=369eff&label=docker&labelColor=black&logo=docker&logoColor=white&style=flat-square&sort=semver
|
800
|
-
[docker-size-link]: https://hub.docker.com/r/lobehub/lobe-chat
|
801
|
-
[docker-size-shield]: https://img.shields.io/docker/image-size/lobehub/lobe-chat?color=369eff&labelColor=black&style=flat-square
|
793
|
+
[docker-pulls-link]: https://hub.docker.com/r/lobehub/lobe-chat-database
|
794
|
+
[docker-pulls-shield]: https://img.shields.io/docker/pulls/lobehub/lobe-chat?color=45cc11&labelColor=black&style=flat-square&sort=semver
|
795
|
+
[docker-release-link]: https://hub.docker.com/r/lobehub/lobe-chat-database
|
796
|
+
[docker-release-shield]: https://img.shields.io/docker/v/lobehub/lobe-chat-database?color=369eff&label=docker&labelColor=black&logo=docker&logoColor=white&style=flat-square&sort=semver
|
797
|
+
[docker-size-link]: https://hub.docker.com/r/lobehub/lobe-chat-database
|
798
|
+
[docker-size-shield]: https://img.shields.io/docker/image-size/lobehub/lobe-chat-database?color=369eff&labelColor=black&style=flat-square&sort=semver
|
802
799
|
[docs]: https://lobehub.com/docs/usage/start
|
803
800
|
[docs-dev-guide]: https://github.com/lobehub/lobe-chat/wiki/index
|
804
801
|
[docs-docker]: https://lobehub.com/docs/self-hosting/platform/docker
|
package/README.zh-CN.md
CHANGED
@@ -813,12 +813,12 @@ This project is [Apache 2.0](./LICENSE) licensed.
|
|
813
813
|
[discord-link]: https://discord.gg/AYFPHvv2jT
|
814
814
|
[discord-shield]: https://img.shields.io/discord/1127171173982154893?color=5865F2&label=discord&labelColor=black&logo=discord&logoColor=white&style=flat-square
|
815
815
|
[discord-shield-badge]: https://img.shields.io/discord/1127171173982154893?color=5865F2&label=discord&labelColor=black&logo=discord&logoColor=white&style=for-the-badge
|
816
|
-
[docker-pulls-link]: https://hub.docker.com/r/lobehub/lobe-chat
|
817
|
-
[docker-pulls-shield]: https://img.shields.io/docker/pulls/lobehub/lobe-chat?color=45cc11&labelColor=black&style=flat-square
|
818
|
-
[docker-release-link]: https://hub.docker.com/r/lobehub/lobe-chat
|
819
|
-
[docker-release-shield]: https://img.shields.io/docker/v/lobehub/lobe-chat?color=369eff&label=docker&labelColor=black&logo=docker&logoColor=white&style=flat-square
|
820
|
-
[docker-size-link]: https://hub.docker.com/r/lobehub/lobe-chat
|
821
|
-
[docker-size-shield]: https://img.shields.io/docker/image-size/lobehub/lobe-chat?color=369eff&labelColor=black&style=flat-square
|
816
|
+
[docker-pulls-link]: https://hub.docker.com/r/lobehub/lobe-chat-database
|
817
|
+
[docker-pulls-shield]: https://img.shields.io/docker/pulls/lobehub/lobe-chat?color=45cc11&labelColor=black&style=flat-square&sort=semver
|
818
|
+
[docker-release-link]: https://hub.docker.com/r/lobehub/lobe-chat-database
|
819
|
+
[docker-release-shield]: https://img.shields.io/docker/v/lobehub/lobe-chat-database?color=369eff&label=docker&labelColor=black&logo=docker&logoColor=white&style=flat-square&sort=semver
|
820
|
+
[docker-size-link]: https://hub.docker.com/r/lobehub/lobe-chat-database
|
821
|
+
[docker-size-shield]: https://img.shields.io/docker/image-size/lobehub/lobe-chat-database?color=369eff&labelColor=black&style=flat-square&sort=semver
|
822
822
|
[docs]: https://lobehub.com/zh/docs/usage/start
|
823
823
|
[docs-dev-guide]: https://github.com/lobehub/lobe-chat/wiki/index
|
824
824
|
[docs-docker]: https://lobehub.com/docs/self-hosting/platform/docker
|
package/changelog/v1.json
CHANGED
@@ -1,4 +1,18 @@
|
|
1
1
|
[
|
2
|
+
{
|
3
|
+
"children": {},
|
4
|
+
"date": "2025-03-02",
|
5
|
+
"version": "1.67.1"
|
6
|
+
},
|
7
|
+
{
|
8
|
+
"children": {
|
9
|
+
"features": [
|
10
|
+
"Support web page crawl in the search."
|
11
|
+
]
|
12
|
+
},
|
13
|
+
"date": "2025-03-02",
|
14
|
+
"version": "1.67.0"
|
15
|
+
},
|
2
16
|
{
|
3
17
|
"children": {
|
4
18
|
"improvements": [
|
package/locales/ar/models.json
CHANGED
@@ -467,9 +467,6 @@
|
|
467
467
|
"anthropic.claude-3-5-sonnet-20241022-v2:0": {
|
468
468
|
"description": "لقد رفع كلود 3.5 سونيت معايير الصناعة، حيث تفوق أداؤه على نماذج المنافسين ونموذج كلود 3 أوبس، وأظهر أداءً ممتازًا في تقييمات واسعة، مع الحفاظ على سرعة وتكلفة نماذجنا المتوسطة."
|
469
469
|
},
|
470
|
-
"anthropic.claude-3-7-sonnet-20250219-v1:0": {
|
471
|
-
"description": "Claude 3.7 Sonnet هو أحدث نموذج من Anthropic، يتميز بأداء ممتاز في تقييمات واسعة، ويتفوق على نماذج المنافسين ونموذج Claude 3.5 Sonnet، مع الحفاظ على سرعة وتكلفة نماذجنا المتوسطة."
|
472
|
-
},
|
473
470
|
"anthropic.claude-3-haiku-20240307-v1:0": {
|
474
471
|
"description": "Claude 3 Haiku هو أسرع وأصغر نموذج من Anthropic، يوفر سرعة استجابة شبه فورية. يمكنه بسرعة الإجابة على الاستفسارات والطلبات البسيطة. سيتمكن العملاء من بناء تجربة ذكاء اصطناعي سلسة تحاكي التفاعل البشري. يمكن لـ Claude 3 Haiku معالجة الصور وإرجاع إخراج نصي، مع نافذة سياقية تبلغ 200K."
|
475
472
|
},
|
@@ -800,6 +797,9 @@
|
|
800
797
|
"gemini-2.0-flash-001": {
|
801
798
|
"description": "Gemini 2.0 Flash يقدم ميزات وتحسينات من الجيل التالي، بما في ذلك سرعة فائقة، واستخدام أدوات أصلية، وتوليد متعدد الوسائط، ونافذة سياق تصل إلى 1M توكن."
|
802
799
|
},
|
800
|
+
"gemini-2.0-flash-lite-001": {
|
801
|
+
"description": "نموذج جمنّي 2.0 فلاش هو نسخة معدلة، تم تحسينها لتحقيق الكفاءة من حيث التكلفة والحد من التأخير."
|
802
|
+
},
|
803
803
|
"gemini-2.0-flash-lite-preview-02-05": {
|
804
804
|
"description": "نموذج Gemini 2.0 Flash، تم تحسينه لأهداف التكلفة المنخفضة والكمون المنخفض."
|
805
805
|
},
|
@@ -1484,6 +1484,9 @@
|
|
1484
1484
|
"qwen-max-latest": {
|
1485
1485
|
"description": "نموذج لغة ضخم من Qwen بمستوى تريليونات، يدعم إدخال لغات مختلفة مثل الصينية والإنجليزية، وهو النموذج API وراء إصدار Qwen 2.5."
|
1486
1486
|
},
|
1487
|
+
"qwen-omni-turbo-latest": {
|
1488
|
+
"description": "تدعم نماذج كيوين-أومني إدخال بيانات متعددة الأنماط، بما في ذلك الفيديو والصوت والصور والنصوص، وتخرج الصوت والنص."
|
1489
|
+
},
|
1487
1490
|
"qwen-plus": {
|
1488
1491
|
"description": "نموذج لغة ضخم من توغي، نسخة معززة، يدعم إدخال لغات مختلفة مثل الصينية والإنجليزية."
|
1489
1492
|
},
|
@@ -1676,6 +1679,9 @@
|
|
1676
1679
|
"us.anthropic.claude-3-5-sonnet-20241022-v2:0": {
|
1677
1680
|
"description": "Claude 3.5 Sonnet يرفع المعايير الصناعية، حيث يتفوق على نماذج المنافسين وClaude 3 Opus، ويظهر أداءً ممتازًا في تقييمات واسعة، مع سرعة وتكلفة تتناسب مع نماذجنا المتوسطة."
|
1678
1681
|
},
|
1682
|
+
"us.anthropic.claude-3-7-sonnet-20250219-v1:0": {
|
1683
|
+
"description": "كلود 3.7 سونيت هو أسرع نموذج من الجيل التالي من أنثروبيك. مقارنةً بكلود 3 هايكو، تم تحسين كلود 3.7 سونيت في جميع المهارات، وتجاوز العديد من اختبارات الذكاء لأكبر نموذج من الجيل السابق، كلود 3 أوبس."
|
1684
|
+
},
|
1679
1685
|
"whisper-1": {
|
1680
1686
|
"description": "نموذج التعرف على الصوت العام، يدعم التعرف على الصوت متعدد اللغات، والترجمة الصوتية، والتعرف على اللغات."
|
1681
1687
|
},
|
package/locales/ar/plugin.json
CHANGED
@@ -140,6 +140,18 @@
|
|
140
140
|
"close": "حذف",
|
141
141
|
"confirm": "تم تكوينه وإعادة المحاولة"
|
142
142
|
},
|
143
|
+
"crawPages": {
|
144
|
+
"crawling": "جاري التعرف على الروابط",
|
145
|
+
"detail": {
|
146
|
+
"preview": "معاينة",
|
147
|
+
"raw": "النص الأصلي",
|
148
|
+
"tooLong": "محتوى النص طويل جداً، سيتم الاحتفاظ بـ 10000 حرف فقط من سياق المحادثة، ولن يتم احتساب الأجزاء الزائدة في سياق المحادثة"
|
149
|
+
},
|
150
|
+
"meta": {
|
151
|
+
"crawler": "وضع الزحف",
|
152
|
+
"words": "عدد الأحرف"
|
153
|
+
}
|
154
|
+
},
|
143
155
|
"searchxng": {
|
144
156
|
"baseURL": "الرجاء الإدخال",
|
145
157
|
"description": "الرجاء إدخال عنوان URL لـ SearchXNG لبدء البحث عبر الإنترنت",
|
@@ -467,9 +467,6 @@
|
|
467
467
|
"anthropic.claude-3-5-sonnet-20241022-v2:0": {
|
468
468
|
"description": "Claude 3.5 Sonnet повишава индустриалните стандарти, с производителност, надминаваща конкурентните модели и Claude 3 Opus, показвайки отлични резултати в широки оценки, като същевременно предлага скорост и разходи, характерни за нашите модели от среден клас."
|
469
469
|
},
|
470
|
-
"anthropic.claude-3-7-sonnet-20250219-v1:0": {
|
471
|
-
"description": "Claude 3.7 Sonnet повишава индустриалните стандарти, с производителност, надвишаваща конкурентните модели и Claude 3 Opus, с отлични резултати в широки оценки, като същевременно предлага скорост и разходи, характерни за нашите модели от среден клас."
|
472
|
-
},
|
473
470
|
"anthropic.claude-3-haiku-20240307-v1:0": {
|
474
471
|
"description": "Claude 3 Haiku е най-бързият и компактен модел на Anthropic, предлагащ почти мигновена скорост на отговор. Той може бързо да отговаря на прости запитвания и заявки. Клиентите ще могат да изградят безпроблемно AI изживяване, имитиращо човешко взаимодействие. Claude 3 Haiku може да обработва изображения и да връща текстови изходи, с контекстуален прозорец от 200K."
|
475
472
|
},
|
@@ -800,6 +797,9 @@
|
|
800
797
|
"gemini-2.0-flash-001": {
|
801
798
|
"description": "Gemini 2.0 Flash предлага следващо поколение функции и подобрения, включително изключителна скорост, нативна употреба на инструменти, многомодално генериране и контекстен прозорец от 1M токена."
|
802
799
|
},
|
800
|
+
"gemini-2.0-flash-lite-001": {
|
801
|
+
"description": "Gemini 2.0 Flash е вариант на модела, оптимизиран за икономичност и ниска латентност."
|
802
|
+
},
|
803
803
|
"gemini-2.0-flash-lite-preview-02-05": {
|
804
804
|
"description": "Модел на Gemini 2.0 Flash, оптимизиран за икономичност и ниска латентност."
|
805
805
|
},
|
@@ -1484,6 +1484,9 @@
|
|
1484
1484
|
"qwen-max-latest": {
|
1485
1485
|
"description": "Qwen Max е езиков модел с мащаб от стотици милиарди параметри, който поддържа вход на различни езици, включително китайски и английски. В момента е основният API модел зад версията на продукта Qwen 2.5."
|
1486
1486
|
},
|
1487
|
+
"qwen-omni-turbo-latest": {
|
1488
|
+
"description": "Моделите от серията Qwen-Omni поддържат входни данни от множество модалности, включително видео, аудио, изображения и текст, и генерират аудио и текст."
|
1489
|
+
},
|
1487
1490
|
"qwen-plus": {
|
1488
1491
|
"description": "通义千问(Qwen) е подобрена версия на мащабен езиков модел, който поддържа вход на различни езици, включително китайски и английски."
|
1489
1492
|
},
|
@@ -1676,6 +1679,9 @@
|
|
1676
1679
|
"us.anthropic.claude-3-5-sonnet-20241022-v2:0": {
|
1677
1680
|
"description": "Claude 3.5 Sonnet повишава индустриалните стандарти, с производителност, надминаваща конкурентните модели и Claude 3 Opus, показвайки отлични резултати в широк спектър от оценки, като същевременно предлага скорост и разходи, сравними с нашите модели от средно ниво."
|
1678
1681
|
},
|
1682
|
+
"us.anthropic.claude-3-7-sonnet-20250219-v1:0": {
|
1683
|
+
"description": "Claude 3.7 сонет е най-бързият модел от следващото поколение на Anthropic. В сравнение с Claude 3 Haiku, Claude 3.7 Сонет е подобрен във всички умения и надминава най-големия модел от предишното поколение Claude 3 Opus в много интелектуални тестове."
|
1684
|
+
},
|
1679
1685
|
"whisper-1": {
|
1680
1686
|
"description": "Универсален модел за разпознаване на реч, поддържащ многоезично разпознаване на реч, превод на реч и разпознаване на езици."
|
1681
1687
|
},
|
@@ -140,6 +140,18 @@
|
|
140
140
|
"close": "Изтриване",
|
141
141
|
"confirm": "Конфигурацията е завършена и опитайте отново"
|
142
142
|
},
|
143
|
+
"crawPages": {
|
144
|
+
"crawling": "Разпознаване на връзки",
|
145
|
+
"detail": {
|
146
|
+
"preview": "Преглед",
|
147
|
+
"raw": "Оригинален текст",
|
148
|
+
"tooLong": "Съдържанието на текста е твърде дълго, контекстът на разговора запазва само първите 10000 символа, а останалата част не се включва в контекста на разговора"
|
149
|
+
},
|
150
|
+
"meta": {
|
151
|
+
"crawler": "Режим на улавяне",
|
152
|
+
"words": "Брой символи"
|
153
|
+
}
|
154
|
+
},
|
143
155
|
"searchxng": {
|
144
156
|
"baseURL": "Моля, въведете",
|
145
157
|
"description": "Моля, въведете URL адреса на SearchXNG, за да започнете търсене в мрежата",
|
@@ -467,9 +467,6 @@
|
|
467
467
|
"anthropic.claude-3-5-sonnet-20241022-v2:0": {
|
468
468
|
"description": "Claude 3.5 Sonnet setzt neue Maßstäbe in der Branche, übertrifft die Modelle der Konkurrenz und Claude 3 Opus, und zeigt in umfassenden Bewertungen hervorragende Leistungen, während es die Geschwindigkeit und Kosten unserer mittelgroßen Modelle beibehält."
|
469
469
|
},
|
470
|
-
"anthropic.claude-3-7-sonnet-20250219-v1:0": {
|
471
|
-
"description": "Claude 3.7 Sonnet hebt den Branchenstandard an, übertrifft die Modelle der Konkurrenz und Claude 3 Opus, und zeigt in umfassenden Bewertungen hervorragende Leistungen, während es die Geschwindigkeit und Kosten unserer mittelgroßen Modelle beibehält."
|
472
|
-
},
|
473
470
|
"anthropic.claude-3-haiku-20240307-v1:0": {
|
474
471
|
"description": "Claude 3 Haiku ist das schnellste und kompakteste Modell von Anthropic und bietet nahezu sofortige Reaktionsgeschwindigkeiten. Es kann schnell einfache Anfragen und Anforderungen beantworten. Kunden werden in der Lage sein, nahtlose AI-Erlebnisse zu schaffen, die menschliche Interaktionen nachahmen. Claude 3 Haiku kann Bilder verarbeiten und Textausgaben zurückgeben, mit einem Kontextfenster von 200K."
|
475
472
|
},
|
@@ -800,6 +797,9 @@
|
|
800
797
|
"gemini-2.0-flash-001": {
|
801
798
|
"description": "Gemini 2.0 Flash bietet nächste Generation Funktionen und Verbesserungen, einschließlich außergewöhnlicher Geschwindigkeit, nativer Werkzeugnutzung, multimodaler Generierung und einem Kontextfenster von 1M Tokens."
|
802
799
|
},
|
800
|
+
"gemini-2.0-flash-lite-001": {
|
801
|
+
"description": "Gemini 2.0 Flash ist eine Modellvariante, die auf Kosteneffizienz und niedrige Latenz optimiert ist."
|
802
|
+
},
|
803
803
|
"gemini-2.0-flash-lite-preview-02-05": {
|
804
804
|
"description": "Ein Gemini 2.0 Flash Modell, das auf Kosteneffizienz und niedrige Latenz optimiert wurde."
|
805
805
|
},
|
@@ -1484,6 +1484,9 @@
|
|
1484
1484
|
"qwen-max-latest": {
|
1485
1485
|
"description": "Der Tongyi Qianwen ist ein Sprachmodell mit einem Umfang von mehreren Billionen, das Eingaben in verschiedenen Sprachen wie Chinesisch und Englisch unterstützt und die API-Modelle hinter der aktuellen Version 2.5 von Tongyi Qianwen darstellt."
|
1486
1486
|
},
|
1487
|
+
"qwen-omni-turbo-latest": {
|
1488
|
+
"description": "Die Qwen-Omni-Serie unterstützt die Eingabe von Daten in verschiedenen Modalitäten, einschließlich Video, Audio, Bilder und Text, und gibt Audio und Text aus."
|
1489
|
+
},
|
1487
1490
|
"qwen-plus": {
|
1488
1491
|
"description": "Qwen Plus ist die verbesserte Version des großangelegten Sprachmodells, das Eingaben in verschiedenen Sprachen wie Chinesisch und Englisch unterstützt."
|
1489
1492
|
},
|
@@ -1676,6 +1679,9 @@
|
|
1676
1679
|
"us.anthropic.claude-3-5-sonnet-20241022-v2:0": {
|
1677
1680
|
"description": "Claude 3.5 Sonnet hebt den Branchenstandard an, übertrifft die Konkurrenzmodelle und Claude 3 Opus und zeigt in umfangreichen Bewertungen hervorragende Leistungen, während es die Geschwindigkeit und Kosten unserer mittelgroßen Modelle beibehält."
|
1678
1681
|
},
|
1682
|
+
"us.anthropic.claude-3-7-sonnet-20250219-v1:0": {
|
1683
|
+
"description": "Claude 3.7 Sonett ist das schnellste nächste Modell von Anthropic. Im Vergleich zu Claude 3 Haiku hat Claude 3.7 Sonett in allen Fähigkeiten Verbesserungen erfahren und übertrifft in vielen intellektuellen Benchmark-Tests das größte Modell der vorherigen Generation, Claude 3 Opus."
|
1684
|
+
},
|
1679
1685
|
"whisper-1": {
|
1680
1686
|
"description": "Allgemeines Spracherkennungsmodell, unterstützt mehrsprachige Spracherkennung, Sprachübersetzung und Spracherkennung."
|
1681
1687
|
},
|
@@ -140,6 +140,18 @@
|
|
140
140
|
"close": "Löschen",
|
141
141
|
"confirm": "Konfiguration abgeschlossen und erneut versucht"
|
142
142
|
},
|
143
|
+
"crawPages": {
|
144
|
+
"crawling": "Linkerkennung läuft",
|
145
|
+
"detail": {
|
146
|
+
"preview": "Vorschau",
|
147
|
+
"raw": "Ursprünglicher Text",
|
148
|
+
"tooLong": "Der Textinhalt ist zu lang, der Gesprächskontext behält nur die ersten 10000 Zeichen, der übersteigende Teil wird nicht in den Gesprächskontext einbezogen"
|
149
|
+
},
|
150
|
+
"meta": {
|
151
|
+
"crawler": "Crawler-Modus",
|
152
|
+
"words": "Zeichenanzahl"
|
153
|
+
}
|
154
|
+
},
|
143
155
|
"searchxng": {
|
144
156
|
"baseURL": "Bitte eingeben",
|
145
157
|
"description": "Geben Sie die URL von SearchXNG ein, um mit der Online-Suche zu beginnen",
|
@@ -467,9 +467,6 @@
|
|
467
467
|
"anthropic.claude-3-5-sonnet-20241022-v2:0": {
|
468
468
|
"description": "Claude 3.5 Sonnet raises the industry standard, outperforming competing models and Claude 3 Opus, excelling in extensive evaluations while maintaining the speed and cost of our mid-tier models."
|
469
469
|
},
|
470
|
-
"anthropic.claude-3-7-sonnet-20250219-v1:0": {
|
471
|
-
"description": "Claude 3.7 Sonnet is Anthropic's latest model, offering a balance of speed and performance. It excels in a wide range of tasks, including programming, data science, visual processing, and agent tasks."
|
472
|
-
},
|
473
470
|
"anthropic.claude-3-haiku-20240307-v1:0": {
|
474
471
|
"description": "Claude 3 Haiku is Anthropic's fastest and most compact model, providing near-instantaneous response times. It can quickly answer simple queries and requests. Customers will be able to build seamless AI experiences that mimic human interaction. Claude 3 Haiku can process images and return text output, with a context window of 200K."
|
475
472
|
},
|
@@ -800,6 +797,9 @@
|
|
800
797
|
"gemini-2.0-flash-001": {
|
801
798
|
"description": "Gemini 2.0 Flash offers next-generation features and improvements, including exceptional speed, native tool usage, multimodal generation, and a 1M token context window."
|
802
799
|
},
|
800
|
+
"gemini-2.0-flash-lite-001": {
|
801
|
+
"description": "Gemini 2.0 Flash is a variant of the model optimized for cost-effectiveness and low latency."
|
802
|
+
},
|
803
803
|
"gemini-2.0-flash-lite-preview-02-05": {
|
804
804
|
"description": "A Gemini 2.0 Flash model optimized for cost-effectiveness and low latency."
|
805
805
|
},
|
@@ -1484,6 +1484,9 @@
|
|
1484
1484
|
"qwen-max-latest": {
|
1485
1485
|
"description": "Tongyi Qianwen Max is a large-scale language model with hundreds of billions of parameters, supporting input in various languages, including Chinese and English. It is the API model behind the current Tongyi Qianwen 2.5 product version."
|
1486
1486
|
},
|
1487
|
+
"qwen-omni-turbo-latest": {
|
1488
|
+
"description": "The Qwen-Omni series of models supports input of various modalities, including video, audio, images, and text, and outputs both audio and text."
|
1489
|
+
},
|
1487
1490
|
"qwen-plus": {
|
1488
1491
|
"description": "Qwen Plus is an enhanced large-scale language model supporting input in various languages including Chinese and English."
|
1489
1492
|
},
|
@@ -1676,6 +1679,9 @@
|
|
1676
1679
|
"us.anthropic.claude-3-5-sonnet-20241022-v2:0": {
|
1677
1680
|
"description": "Claude 3.5 Sonnet raises the industry standard, outperforming competitor models and Claude 3 Opus, excelling in a wide range of evaluations while maintaining the speed and cost of our mid-tier models."
|
1678
1681
|
},
|
1682
|
+
"us.anthropic.claude-3-7-sonnet-20250219-v1:0": {
|
1683
|
+
"description": "Claude 3.7 Sonnet is Anthropic's fastest next-generation model. Compared to Claude 3 Haiku, Claude 3.7 Sonnet shows improvements across various skills and surpasses the previous generation's largest model, Claude 3 Opus, in many intelligence benchmark tests."
|
1684
|
+
},
|
1679
1685
|
"whisper-1": {
|
1680
1686
|
"description": "A universal speech recognition model that supports multilingual speech recognition, speech translation, and language identification."
|
1681
1687
|
},
|
@@ -140,6 +140,18 @@
|
|
140
140
|
"close": "Delete",
|
141
141
|
"confirm": "Configuration completed, please retry"
|
142
142
|
},
|
143
|
+
"crawPages": {
|
144
|
+
"crawling": "Identifying links",
|
145
|
+
"detail": {
|
146
|
+
"preview": "Preview",
|
147
|
+
"raw": "Raw text",
|
148
|
+
"tooLong": "Text content is too long; only the first 10000 characters of the conversation context will be retained, and any excess will not be included in the conversation context."
|
149
|
+
},
|
150
|
+
"meta": {
|
151
|
+
"crawler": "Crawling Mode",
|
152
|
+
"words": "Character count"
|
153
|
+
}
|
154
|
+
},
|
143
155
|
"searchxng": {
|
144
156
|
"baseURL": "Please enter",
|
145
157
|
"description": "Enter the URL for SearchXNG to start online searching",
|
@@ -467,9 +467,6 @@
|
|
467
467
|
"anthropic.claude-3-5-sonnet-20241022-v2:0": {
|
468
468
|
"description": "Claude 3.5 Sonnet ha elevado los estándares de la industria, superando el rendimiento de modelos competidores y de Claude 3 Opus, destacándose en evaluaciones amplias, mientras mantiene la velocidad y el costo de nuestros modelos de nivel medio."
|
469
469
|
},
|
470
|
-
"anthropic.claude-3-7-sonnet-20250219-v1:0": {
|
471
|
-
"description": "Claude 3.7 Sonnet es el modelo de IA más potente de Anthropic, con un rendimiento de vanguardia en tareas altamente complejas. Puede manejar indicaciones abiertas y escenarios no vistos, con una fluidez y comprensión humana excepcionales. Claude 3.7 Sonnet muestra la vanguardia de las posibilidades de la IA generativa. Claude 3.7 Sonnet puede manejar imágenes y devolver salidas de texto, con una ventana de contexto de 200K."
|
472
|
-
},
|
473
470
|
"anthropic.claude-3-haiku-20240307-v1:0": {
|
474
471
|
"description": "Claude 3 Haiku es el modelo más rápido y compacto de Anthropic, ofreciendo una velocidad de respuesta casi instantánea. Puede responder rápidamente a consultas y solicitudes simples. Los clientes podrán construir experiencias de IA sin costuras que imiten la interacción humana. Claude 3 Haiku puede manejar imágenes y devolver salidas de texto, con una ventana de contexto de 200K."
|
475
472
|
},
|
@@ -800,6 +797,9 @@
|
|
800
797
|
"gemini-2.0-flash-001": {
|
801
798
|
"description": "Gemini 2.0 Flash ofrece funciones y mejoras de próxima generación, incluyendo velocidad excepcional, uso de herramientas nativas, generación multimodal y una ventana de contexto de 1M tokens."
|
802
799
|
},
|
800
|
+
"gemini-2.0-flash-lite-001": {
|
801
|
+
"description": "Variante del modelo Gemini 2.0 Flash, optimizada para objetivos como la rentabilidad y la baja latencia."
|
802
|
+
},
|
803
803
|
"gemini-2.0-flash-lite-preview-02-05": {
|
804
804
|
"description": "Un modelo Gemini 2.0 Flash optimizado para objetivos de costo-efectividad y baja latencia."
|
805
805
|
},
|
@@ -1484,6 +1484,9 @@
|
|
1484
1484
|
"qwen-max-latest": {
|
1485
1485
|
"description": "El modelo de lenguaje a gran escala Tongyi Qwen de nivel de cientos de miles de millones, que admite entradas en diferentes idiomas como chino e inglés, es el modelo API detrás de la versión del producto Tongyi Qwen 2.5."
|
1486
1486
|
},
|
1487
|
+
"qwen-omni-turbo-latest": {
|
1488
|
+
"description": "La serie de modelos Qwen-Omni admite la entrada de datos en múltiples modalidades, incluyendo video, audio, imágenes y texto, y produce audio y texto como salida."
|
1489
|
+
},
|
1487
1490
|
"qwen-plus": {
|
1488
1491
|
"description": "La versión mejorada del modelo de lenguaje a gran escala Qwen admite entradas en diferentes idiomas como chino e inglés."
|
1489
1492
|
},
|
@@ -1676,6 +1679,9 @@
|
|
1676
1679
|
"us.anthropic.claude-3-5-sonnet-20241022-v2:0": {
|
1677
1680
|
"description": "Claude 3.5 Sonnet eleva el estándar de la industria, superando a modelos competidores y a Claude 3 Opus, destacándose en evaluaciones amplias, mientras mantiene la velocidad y costo de nuestros modelos de nivel medio."
|
1678
1681
|
},
|
1682
|
+
"us.anthropic.claude-3-7-sonnet-20250219-v1:0": {
|
1683
|
+
"description": "Claude 3.7 sonnet es el modelo de próxima generación más rápido de Anthropic. En comparación con Claude 3 Haiku, Claude 3.7 Sonnet ha mejorado en todas las habilidades y ha superado al modelo más grande de la generación anterior, Claude 3 Opus, en muchas pruebas de referencia de inteligencia."
|
1684
|
+
},
|
1679
1685
|
"whisper-1": {
|
1680
1686
|
"description": "Modelo de reconocimiento de voz general, que admite reconocimiento de voz multilingüe, traducción de voz y reconocimiento de idiomas."
|
1681
1687
|
},
|
@@ -140,6 +140,18 @@
|
|
140
140
|
"close": "Eliminar",
|
141
141
|
"confirm": "Configuración completada, intente de nuevo"
|
142
142
|
},
|
143
|
+
"crawPages": {
|
144
|
+
"crawling": "Reconocimiento de enlaces",
|
145
|
+
"detail": {
|
146
|
+
"preview": "Vista previa",
|
147
|
+
"raw": "Texto original",
|
148
|
+
"tooLong": "El contenido del texto es demasiado largo, el contexto de la conversación solo retiene los primeros 10000 caracteres, el exceso no se contabiliza en el contexto de la conversación"
|
149
|
+
},
|
150
|
+
"meta": {
|
151
|
+
"crawler": "Modo de rastreo",
|
152
|
+
"words": "Número de caracteres"
|
153
|
+
}
|
154
|
+
},
|
143
155
|
"searchxng": {
|
144
156
|
"baseURL": "Introduzca",
|
145
157
|
"description": "Introduzca la URL de SearchXNG para comenzar la búsqueda en línea",
|