@lobehub/chat 1.52.16 → 1.52.17
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-database.yml +138 -23
- package/.github/workflows/docker.yml +139 -23
- package/.github/workflows/lighthouse.yml +4 -12
- package/CHANGELOG.md +17 -0
- package/README.ja-JP.md +8 -8
- package/README.md +8 -8
- package/README.zh-CN.md +8 -8
- package/changelog/v1.json +5 -0
- package/package.json +1 -1
@@ -4,43 +4,158 @@ on:
|
|
4
4
|
workflow_dispatch:
|
5
5
|
release:
|
6
6
|
types: [published]
|
7
|
+
pull_request:
|
8
|
+
types: [synchronize, labeled, unlabeled]
|
9
|
+
|
10
|
+
concurrency:
|
11
|
+
group: ${{ github.ref }}-${{ github.workflow }}
|
12
|
+
cancel-in-progress: true
|
13
|
+
|
14
|
+
env:
|
15
|
+
REGISTRY_IMAGE: lobehub/lobe-chat-database
|
16
|
+
PR_TAG_PREFIX: pr-
|
7
17
|
|
8
18
|
jobs:
|
9
|
-
|
10
|
-
|
11
|
-
|
19
|
+
build:
|
20
|
+
# 添加 PR label 触发条件
|
21
|
+
if: |
|
22
|
+
(github.event_name == 'pull_request' &&
|
23
|
+
contains(github.event.pull_request.labels.*.name, 'Build Docker')) ||
|
24
|
+
github.event_name != 'pull_request'
|
25
|
+
|
26
|
+
strategy:
|
27
|
+
matrix:
|
28
|
+
include:
|
29
|
+
- platform: linux/amd64
|
30
|
+
os: ubuntu-latest
|
31
|
+
- platform: linux/arm64
|
32
|
+
os: ubuntu-24.04-arm
|
33
|
+
runs-on: ${{ matrix.os }}
|
34
|
+
name: Build ${{ matrix.platform }} Image
|
12
35
|
steps:
|
13
|
-
- name:
|
36
|
+
- name: Prepare
|
37
|
+
run: |
|
38
|
+
platform=${{ matrix.platform }}
|
39
|
+
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
|
40
|
+
|
41
|
+
- name: Checkout base
|
14
42
|
uses: actions/checkout@v4
|
15
|
-
- name: Log in to Docker Hub
|
16
|
-
uses: docker/login-action@v3
|
17
43
|
with:
|
18
|
-
|
19
|
-
|
44
|
+
fetch-depth: 0
|
45
|
+
|
46
|
+
- name: Set up Docker Buildx
|
47
|
+
uses: docker/setup-buildx-action@v3
|
20
48
|
|
21
|
-
|
49
|
+
# 为 PR 生成特殊的 tag
|
50
|
+
- name: Generate PR metadata
|
51
|
+
if: github.event_name == 'pull_request'
|
52
|
+
id: pr_meta
|
53
|
+
run: |
|
54
|
+
branch_name="${{ github.head_ref }}"
|
55
|
+
sanitized_branch=$(echo "${branch_name}" | sed -E 's/[^a-zA-Z0-9_.-]+/-/g')
|
56
|
+
echo "pr_tag=${sanitized_branch}-$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
|
57
|
+
|
58
|
+
- name: Docker meta
|
22
59
|
id: meta
|
23
60
|
uses: docker/metadata-action@v5
|
24
61
|
with:
|
25
|
-
images:
|
62
|
+
images: ${{ env.REGISTRY_IMAGE }}
|
26
63
|
tags: |
|
27
|
-
|
28
|
-
type=
|
64
|
+
# PR 构建使用特殊的 tag
|
65
|
+
type=raw,value=${{ env.PR_TAG_PREFIX }}${{ steps.pr_meta.outputs.pr_tag }},enable=${{ github.event_name == 'pull_request' }}
|
66
|
+
# release 构建使用版本号
|
67
|
+
type=semver,pattern={{version}},enable=${{ github.event_name != 'pull_request' }}
|
68
|
+
type=raw,value=latest,enable=${{ github.event_name != 'pull_request' }}
|
29
69
|
|
30
|
-
- name:
|
31
|
-
uses: docker/
|
70
|
+
- name: Docker login
|
71
|
+
uses: docker/login-action@v3
|
72
|
+
with:
|
73
|
+
username: ${{ secrets.DOCKER_REGISTRY_USER }}
|
74
|
+
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
|
32
75
|
|
33
|
-
- name:
|
34
|
-
|
76
|
+
- name: Get commit SHA
|
77
|
+
if: github.ref == 'refs/heads/main'
|
78
|
+
id: vars
|
79
|
+
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
|
35
80
|
|
36
|
-
- name: Build and
|
81
|
+
- name: Build and export
|
82
|
+
id: build
|
37
83
|
uses: docker/build-push-action@v5
|
38
84
|
with:
|
85
|
+
platforms: ${{ matrix.platform }}
|
39
86
|
context: .
|
40
|
-
file: ./Dockerfile.database
|
41
|
-
platforms: linux/amd64,linux/arm64
|
42
|
-
push: true
|
43
|
-
tags: ${{ steps.meta.outputs.tags }}
|
87
|
+
file: ./Dockerfile.database
|
44
88
|
labels: ${{ steps.meta.outputs.labels }}
|
45
|
-
|
46
|
-
|
89
|
+
build-args: |
|
90
|
+
SHA=${{ steps.vars.outputs.sha_short }}
|
91
|
+
outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true
|
92
|
+
|
93
|
+
- name: Export digest
|
94
|
+
run: |
|
95
|
+
rm -rf /tmp/digests
|
96
|
+
mkdir -p /tmp/digests
|
97
|
+
digest="${{ steps.build.outputs.digest }}"
|
98
|
+
touch "/tmp/digests/${digest#sha256:}"
|
99
|
+
|
100
|
+
- name: Upload artifact
|
101
|
+
uses: actions/upload-artifact@v4
|
102
|
+
with:
|
103
|
+
name: digest-${{ env.PLATFORM_PAIR }}
|
104
|
+
path: /tmp/digests/*
|
105
|
+
if-no-files-found: error
|
106
|
+
retention-days: 1
|
107
|
+
|
108
|
+
merge:
|
109
|
+
name: Merge
|
110
|
+
needs: build
|
111
|
+
runs-on: ubuntu-latest
|
112
|
+
steps:
|
113
|
+
- name: Checkout base
|
114
|
+
uses: actions/checkout@v4
|
115
|
+
with:
|
116
|
+
fetch-depth: 0
|
117
|
+
|
118
|
+
- name: Download digests
|
119
|
+
uses: actions/download-artifact@v4
|
120
|
+
with:
|
121
|
+
path: /tmp/digests
|
122
|
+
pattern: digest-*
|
123
|
+
merge-multiple: true
|
124
|
+
|
125
|
+
- name: Set up Docker Buildx
|
126
|
+
uses: docker/setup-buildx-action@v3
|
127
|
+
|
128
|
+
# 为 merge job 添加 PR metadata 生成
|
129
|
+
- name: Generate PR metadata
|
130
|
+
if: github.event_name == 'pull_request'
|
131
|
+
id: pr_meta
|
132
|
+
run: |
|
133
|
+
branch_name="${{ github.head_ref }}"
|
134
|
+
sanitized_branch=$(echo "${branch_name}" | sed -E 's/[^a-zA-Z0-9_.-]+/-/g')
|
135
|
+
echo "pr_tag=${sanitized_branch}-$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
|
136
|
+
|
137
|
+
- name: Docker meta
|
138
|
+
id: meta
|
139
|
+
uses: docker/metadata-action@v5
|
140
|
+
with:
|
141
|
+
images: ${{ env.REGISTRY_IMAGE }}
|
142
|
+
tags: |
|
143
|
+
type=raw,value=${{ env.PR_TAG_PREFIX }}${{ steps.pr_meta.outputs.pr_tag }},enable=${{ github.event_name == 'pull_request' }}
|
144
|
+
type=semver,pattern={{version}},enable=${{ github.event_name != 'pull_request' }}
|
145
|
+
type=raw,value=latest,enable=${{ github.event_name != 'pull_request' }}
|
146
|
+
|
147
|
+
- name: Docker login
|
148
|
+
uses: docker/login-action@v3
|
149
|
+
with:
|
150
|
+
username: ${{ secrets.DOCKER_REGISTRY_USER }}
|
151
|
+
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
|
152
|
+
|
153
|
+
- name: Create manifest list and push
|
154
|
+
working-directory: /tmp/digests
|
155
|
+
run: |
|
156
|
+
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
|
157
|
+
$(printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ' *)
|
158
|
+
|
159
|
+
- name: Inspect image
|
160
|
+
run: |
|
161
|
+
docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:${{ steps.meta.outputs.version }}
|
@@ -1,45 +1,161 @@
|
|
1
|
-
name: Publish Docker Image
|
1
|
+
name: Publish Database Docker Image
|
2
2
|
|
3
3
|
on:
|
4
4
|
workflow_dispatch:
|
5
5
|
release:
|
6
6
|
types: [published]
|
7
|
+
pull_request:
|
8
|
+
types: [synchronize, labeled, unlabeled]
|
9
|
+
|
10
|
+
concurrency:
|
11
|
+
group: ${{ github.ref }}-${{ github.workflow }}
|
12
|
+
cancel-in-progress: true
|
13
|
+
|
14
|
+
env:
|
15
|
+
REGISTRY_IMAGE: lobehub/lobe-chat
|
16
|
+
PR_TAG_PREFIX: pr-
|
7
17
|
|
8
18
|
jobs:
|
9
|
-
|
10
|
-
|
11
|
-
|
19
|
+
build:
|
20
|
+
# 添加 PR label 触发条件
|
21
|
+
if: |
|
22
|
+
(github.event_name == 'pull_request' &&
|
23
|
+
contains(github.event.pull_request.labels.*.name, 'Build Docker')) ||
|
24
|
+
github.event_name != 'pull_request'
|
25
|
+
|
26
|
+
strategy:
|
27
|
+
matrix:
|
28
|
+
include:
|
29
|
+
- platform: linux/amd64
|
30
|
+
os: ubuntu-latest
|
31
|
+
- platform: linux/arm64
|
32
|
+
os: ubuntu-24.04-arm
|
33
|
+
runs-on: ${{ matrix.os }}
|
34
|
+
name: Build ${{ matrix.platform }} Image
|
12
35
|
steps:
|
13
|
-
- name:
|
36
|
+
- name: Prepare
|
37
|
+
run: |
|
38
|
+
platform=${{ matrix.platform }}
|
39
|
+
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
|
40
|
+
|
41
|
+
- name: Checkout base
|
14
42
|
uses: actions/checkout@v4
|
15
|
-
- name: Log in to Docker Hub
|
16
|
-
uses: docker/login-action@v3
|
17
43
|
with:
|
18
|
-
|
19
|
-
|
44
|
+
fetch-depth: 0
|
45
|
+
|
46
|
+
- name: Set up Docker Buildx
|
47
|
+
uses: docker/setup-buildx-action@v3
|
20
48
|
|
21
|
-
|
49
|
+
# 为 PR 生成特殊的 tag
|
50
|
+
- name: Generate PR metadata
|
51
|
+
if: github.event_name == 'pull_request'
|
52
|
+
id: pr_meta
|
53
|
+
run: |
|
54
|
+
branch_name="${{ github.head_ref }}"
|
55
|
+
sanitized_branch=$(echo "${branch_name}" | sed -E 's/[^a-zA-Z0-9_.-]+/-/g')
|
56
|
+
echo "pr_tag=${sanitized_branch}-$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
|
57
|
+
|
58
|
+
- name: Docker meta
|
22
59
|
id: meta
|
23
60
|
uses: docker/metadata-action@v5
|
24
61
|
with:
|
25
|
-
images:
|
62
|
+
images: ${{ env.REGISTRY_IMAGE }}
|
26
63
|
tags: |
|
27
|
-
|
28
|
-
type=
|
64
|
+
# PR 构建使用特殊的 tag
|
65
|
+
type=raw,value=${{ env.PR_TAG_PREFIX }}${{ steps.pr_meta.outputs.pr_tag }},enable=${{ github.event_name == 'pull_request' }}
|
66
|
+
# release 构建使用版本号
|
67
|
+
type=semver,pattern={{version}},enable=${{ github.event_name != 'pull_request' }}
|
68
|
+
type=raw,value=latest,enable=${{ github.event_name != 'pull_request' }}
|
29
69
|
|
30
|
-
- name:
|
31
|
-
uses: docker/
|
70
|
+
- name: Docker login
|
71
|
+
uses: docker/login-action@v3
|
72
|
+
with:
|
73
|
+
username: ${{ secrets.DOCKER_REGISTRY_USER }}
|
74
|
+
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
|
32
75
|
|
33
|
-
- name:
|
34
|
-
|
76
|
+
- name: Get commit SHA
|
77
|
+
if: github.ref == 'refs/heads/main'
|
78
|
+
id: vars
|
79
|
+
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
|
35
80
|
|
36
|
-
- name: Build and
|
81
|
+
- name: Build and export
|
82
|
+
id: build
|
37
83
|
uses: docker/build-push-action@v5
|
38
84
|
with:
|
85
|
+
platforms: ${{ matrix.platform }}
|
39
86
|
context: .
|
40
|
-
|
41
|
-
push: true
|
42
|
-
tags: ${{ steps.meta.outputs.tags }}
|
87
|
+
file: ./Dockerfile
|
43
88
|
labels: ${{ steps.meta.outputs.labels }}
|
44
|
-
|
45
|
-
|
89
|
+
build-args: |
|
90
|
+
SHA=${{ steps.vars.outputs.sha_short }}
|
91
|
+
outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true
|
92
|
+
|
93
|
+
- name: Export digest
|
94
|
+
run: |
|
95
|
+
rm -rf /tmp/digests
|
96
|
+
mkdir -p /tmp/digests
|
97
|
+
digest="${{ steps.build.outputs.digest }}"
|
98
|
+
touch "/tmp/digests/${digest#sha256:}"
|
99
|
+
|
100
|
+
- name: Upload artifact
|
101
|
+
uses: actions/upload-artifact@v4
|
102
|
+
with:
|
103
|
+
name: digest-${{ env.PLATFORM_PAIR }}
|
104
|
+
path: /tmp/digests/*
|
105
|
+
if-no-files-found: error
|
106
|
+
retention-days: 1
|
107
|
+
|
108
|
+
merge:
|
109
|
+
name: Merge
|
110
|
+
needs: build
|
111
|
+
runs-on: ubuntu-latest
|
112
|
+
steps:
|
113
|
+
- name: Checkout base
|
114
|
+
uses: actions/checkout@v4
|
115
|
+
with:
|
116
|
+
fetch-depth: 0
|
117
|
+
|
118
|
+
- name: Download digests
|
119
|
+
uses: actions/download-artifact@v4
|
120
|
+
with:
|
121
|
+
path: /tmp/digests
|
122
|
+
pattern: digest-*
|
123
|
+
merge-multiple: true
|
124
|
+
|
125
|
+
- name: Set up Docker Buildx
|
126
|
+
uses: docker/setup-buildx-action@v3
|
127
|
+
|
128
|
+
# 为 merge job 添加 PR metadata 生成
|
129
|
+
- name: Generate PR metadata
|
130
|
+
if: github.event_name == 'pull_request'
|
131
|
+
id: pr_meta
|
132
|
+
run: |
|
133
|
+
branch_name="${{ github.head_ref }}"
|
134
|
+
sanitized_branch=$(echo "${branch_name}" | sed -E 's/[^a-zA-Z0-9_.-]+/-/g')
|
135
|
+
echo "pr_tag=${sanitized_branch}-$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
|
136
|
+
|
137
|
+
- name: Docker meta
|
138
|
+
id: meta
|
139
|
+
uses: docker/metadata-action@v5
|
140
|
+
with:
|
141
|
+
images: ${{ env.REGISTRY_IMAGE }}
|
142
|
+
tags: |
|
143
|
+
type=raw,value=${{ env.PR_TAG_PREFIX }}${{ steps.pr_meta.outputs.pr_tag }},enable=${{ github.event_name == 'pull_request' }}
|
144
|
+
type=semver,pattern={{version}},enable=${{ github.event_name != 'pull_request' }}
|
145
|
+
type=raw,value=latest,enable=${{ github.event_name != 'pull_request' }}
|
146
|
+
|
147
|
+
- name: Docker login
|
148
|
+
uses: docker/login-action@v3
|
149
|
+
with:
|
150
|
+
username: ${{ secrets.DOCKER_REGISTRY_USER }}
|
151
|
+
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
|
152
|
+
|
153
|
+
- name: Create manifest list and push
|
154
|
+
working-directory: /tmp/digests
|
155
|
+
run: |
|
156
|
+
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
|
157
|
+
$(printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ' *)
|
158
|
+
|
159
|
+
- name: Inspect image
|
160
|
+
run: |
|
161
|
+
docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:${{ steps.meta.outputs.version }}
|
@@ -24,22 +24,14 @@ jobs:
|
|
24
24
|
fail-fast: false
|
25
25
|
matrix:
|
26
26
|
include:
|
27
|
-
- NAME: 'LobeChat | Welcome'
|
28
|
-
URLS: 'https://chat-preview.lobehub.com/welcome'
|
29
|
-
BADGES_ARGS: '-b pagespeed -o lighthouse/welcome -r'
|
30
|
-
COMMIT_MESSAGE: '🤖 chore: Lighthouse Results | Welcome'
|
31
27
|
- NAME: 'LobeChat | Chat'
|
32
|
-
URLS: 'https://
|
28
|
+
URLS: 'https://lobechat.com/chat'
|
33
29
|
BADGES_ARGS: '-b pagespeed -o lighthouse/chat -r'
|
34
30
|
COMMIT_MESSAGE: '🤖 chore: Lighthouse Results | Chat'
|
35
31
|
- NAME: 'LobeChat | Market'
|
36
|
-
URLS: 'https://
|
37
|
-
BADGES_ARGS: '-b pagespeed -o lighthouse/
|
38
|
-
COMMIT_MESSAGE: '🤖 chore: Lighthouse Results |
|
39
|
-
- NAME: 'LobeChat | Settings'
|
40
|
-
URLS: 'https://chat-preview.lobehub.com/settings'
|
41
|
-
BADGES_ARGS: '-b pagespeed -o lighthouse/settings -r'
|
42
|
-
COMMIT_MESSAGE: '🤖 chore: Lighthouse Results | Settings'
|
32
|
+
URLS: 'https://lobechat.com/discover'
|
33
|
+
BADGES_ARGS: '-b pagespeed -o lighthouse/discover -r'
|
34
|
+
COMMIT_MESSAGE: '🤖 chore: Lighthouse Results | Discover'
|
43
35
|
|
44
36
|
steps:
|
45
37
|
- name: Preparatory Tasks
|
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,23 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
### [Version 1.52.17](https://github.com/lobehub/lobe-chat/compare/v1.52.16...v1.52.17)
|
6
|
+
|
7
|
+
<sup>Released on **2025-02-11**</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
|
+
|
5
22
|
### [Version 1.52.16](https://github.com/lobehub/lobe-chat/compare/v1.52.15...v1.52.16)
|
6
23
|
|
7
24
|
<sup>Released on **2025-02-11**</sup>
|
package/README.ja-JP.md
CHANGED
@@ -270,7 +270,7 @@ LobeChat のプラグインエコシステムは、そのコア機能の重要
|
|
270
270
|
| [Bing_websearch](https://lobechat.com/discover/plugin/Bingsearch-identifier)<br/><sup>By **FineHow** on **2024-12-22**</sup> | BingApi を基にインターネットから情報を検索<br/>`bingsearch` |
|
271
271
|
| [PortfolioMeta](https://lobechat.com/discover/plugin/StockData)<br/><sup>By **portfoliometa** on **2024-12-22**</sup> | 株を分析し、包括的なリアルタイムの投資データと分析を取得します。<br/>`stock` |
|
272
272
|
|
273
|
-
> 📊 Total plugins: [<kbd>**
|
273
|
+
> 📊 Total plugins: [<kbd>**48**</kbd>](https://lobechat.com/discover/plugins)
|
274
274
|
|
275
275
|
<!-- PLUGIN LIST -->
|
276
276
|
|
@@ -302,14 +302,14 @@ LobeChat エージェントマーケットプレイスでは、クリエイタ
|
|
302
302
|
|
303
303
|
<!-- AGENT LIST -->
|
304
304
|
|
305
|
-
| 最近追加
|
306
|
-
|
|
307
|
-
| [
|
308
|
-
| [
|
309
|
-
| [
|
310
|
-
| [
|
305
|
+
| 最近追加 | 説明 |
|
306
|
+
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------ |
|
307
|
+
| [小智フランス語翻訳アシスタント](https://lobechat.com/discover/assistant/xiao-zhi-french-translation-asst-v-1)<br/><sup>By **[WeR-Best](https://github.com/WeR-Best)** on **2025-02-10**</sup> | 親しみやすく、専門的で、共感力のあるフランス語翻訳 AI アシスタント<br/>`aiアシスタント` `フランス語翻訳` `異文化交流` `創造性` |
|
308
|
+
| [命理研究者](https://lobechat.com/discover/assistant/fate-researcher)<br/><sup>By **[Jack980506](https://github.com/Jack980506)** on **2025-02-06**</sup> | 八字命に精通<br/>`命理学` `八字` `伝統文化` |
|
309
|
+
| [言語の魅力学習メンター](https://lobechat.com/discover/assistant/bad-language-helper)<br/><sup>By **[Guducat](https://github.com/Guducat)** on **2025-02-06**</sup> | 言語の魅力と多様な応答を教えるのが得意<br/>`言語学習` `対話例` |
|
310
|
+
| [Allinone](https://lobechat.com/discover/assistant/allinone-v-1)<br/><sup>By **[AXuanCreator](https://github.com/AXuanCreator)** on **2025-02-06**</sup> | 革新・未来・卓越<br/>`プログラミング` `低コスト` `簡潔な回答` |
|
311
311
|
|
312
|
-
> 📊 Total agents: [<kbd>**
|
312
|
+
> 📊 Total agents: [<kbd>**486**</kbd> ](https://lobechat.com/discover/assistants)
|
313
313
|
|
314
314
|
<!-- AGENT LIST -->
|
315
315
|
|
package/README.md
CHANGED
@@ -287,7 +287,7 @@ In addition, these plugins are not limited to news aggregation, but can also ext
|
|
287
287
|
| [Bing_websearch](https://lobechat.com/discover/plugin/Bingsearch-identifier)<br/><sup>By **FineHow** on **2024-12-22**</sup> | Search for information from the internet base BingApi<br/>`bingsearch` |
|
288
288
|
| [PortfolioMeta](https://lobechat.com/discover/plugin/StockData)<br/><sup>By **portfoliometa** on **2024-12-22**</sup> | Analyze stocks and get comprehensive real-time investment data and analytics.<br/>`stock` |
|
289
289
|
|
290
|
-
> 📊 Total plugins: [<kbd>**
|
290
|
+
> 📊 Total plugins: [<kbd>**48**</kbd>](https://lobechat.com/discover/plugins)
|
291
291
|
|
292
292
|
<!-- PLUGIN LIST -->
|
293
293
|
|
@@ -319,14 +319,14 @@ Our marketplace is not just a showcase platform but also a collaborative space.
|
|
319
319
|
|
320
320
|
<!-- AGENT LIST -->
|
321
321
|
|
322
|
-
| Recent Submits
|
323
|
-
|
|
324
|
-
| [
|
325
|
-
| [
|
326
|
-
| [
|
327
|
-
| [
|
322
|
+
| Recent Submits | Description |
|
323
|
+
| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
324
|
+
| [Xiao Zhi French Translation Assistant](https://lobechat.com/discover/assistant/xiao-zhi-french-translation-asst-v-1)<br/><sup>By **[WeR-Best](https://github.com/WeR-Best)** on **2025-02-10**</sup> | A friendly, professional, and empathetic AI assistant for French translation<br/>`ai-assistant` `french-translation` `cross-cultural-communication` `creativity` |
|
325
|
+
| [Astrology Researcher](https://lobechat.com/discover/assistant/fate-researcher)<br/><sup>By **[Jack980506](https://github.com/Jack980506)** on **2025-02-06**</sup> | Expert in BaZi astrology<br/>`astrology` `ba-zi` `traditional-culture` |
|
326
|
+
| [Language Charm Learning Mentor](https://lobechat.com/discover/assistant/bad-language-helper)<br/><sup>By **[Guducat](https://github.com/Guducat)** on **2025-02-06**</sup> | Specializes in teaching the charm of language and witty responses<br/>`language-learning` `dialogue-examples` |
|
327
|
+
| [Allinone](https://lobechat.com/discover/assistant/allinone-v-1)<br/><sup>By **[AXuanCreator](https://github.com/AXuanCreator)** on **2025-02-06**</sup> | Innovation · Future · Excellence<br/>`programming` `low-cost` `concise-answers` |
|
328
328
|
|
329
|
-
> 📊 Total agents: [<kbd>**
|
329
|
+
> 📊 Total agents: [<kbd>**486**</kbd> ](https://lobechat.com/discover/assistants)
|
330
330
|
|
331
331
|
<!-- AGENT LIST -->
|
332
332
|
|
package/README.zh-CN.md
CHANGED
@@ -280,7 +280,7 @@ LobeChat 的插件生态系统是其核心功能的重要扩展,它极大地
|
|
280
280
|
| [必应网页搜索](https://lobechat.com/discover/plugin/Bingsearch-identifier)<br/><sup>By **FineHow** on **2024-12-22**</sup> | 通过 BingApi 搜索互联网上的信息<br/>`bingsearch` |
|
281
281
|
| [PortfolioMeta](https://lobechat.com/discover/plugin/StockData)<br/><sup>By **portfoliometa** on **2024-12-22**</sup> | 分析股票并获取全面的实时投资数据和分析。<br/>`股票` |
|
282
282
|
|
283
|
-
> 📊 Total plugins: [<kbd>**
|
283
|
+
> 📊 Total plugins: [<kbd>**48**</kbd>](https://lobechat.com/discover/plugins)
|
284
284
|
|
285
285
|
<!-- PLUGIN LIST -->
|
286
286
|
|
@@ -308,14 +308,14 @@ LobeChat 的插件生态系统是其核心功能的重要扩展,它极大地
|
|
308
308
|
|
309
309
|
<!-- AGENT LIST -->
|
310
310
|
|
311
|
-
| 最近新增
|
312
|
-
|
|
313
|
-
| [
|
314
|
-
| [
|
315
|
-
| [
|
316
|
-
| [
|
311
|
+
| 最近新增 | 描述 |
|
312
|
+
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- |
|
313
|
+
| [小智法语翻译助手](https://lobechat.com/discover/assistant/xiao-zhi-french-translation-asst-v-1)<br/><sup>By **[WeR-Best](https://github.com/WeR-Best)** on **2025-02-10**</sup> | 友好、专业、富有同理心的法语翻译 AI 助手<br/>`ai助手` `法语翻译` `跨文化交流` `创造力` |
|
314
|
+
| [命理研究员](https://lobechat.com/discover/assistant/fate-researcher)<br/><sup>By **[Jack980506](https://github.com/Jack980506)** on **2025-02-06**</sup> | 精通八字命<br/>`命理学` `八字` `传统文化` |
|
315
|
+
| [语言魅力学习导师](https://lobechat.com/discover/assistant/bad-language-helper)<br/><sup>By **[Guducat](https://github.com/Guducat)** on **2025-02-06**</sup> | 擅长教学语言的魅力与花样回复<br/>`语言学习` `对话示例` |
|
316
|
+
| [Allinone](https://lobechat.com/discover/assistant/allinone-v-1)<br/><sup>By **[AXuanCreator](https://github.com/AXuanCreator)** on **2025-02-06**</sup> | 创新・未来・卓越<br/>`编程` `低成本` `简洁回答` |
|
317
317
|
|
318
|
-
> 📊 Total agents: [<kbd>**
|
318
|
+
> 📊 Total agents: [<kbd>**486**</kbd> ](https://lobechat.com/discover/assistants)
|
319
319
|
|
320
320
|
<!-- AGENT LIST -->
|
321
321
|
|
package/changelog/v1.json
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lobehub/chat",
|
3
|
-
"version": "1.52.
|
3
|
+
"version": "1.52.17",
|
4
4
|
"description": "Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.",
|
5
5
|
"keywords": [
|
6
6
|
"framework",
|