@lobehub/chat 1.52.16 → 1.52.18

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.
@@ -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
- push_to_registry:
10
- name: Push Docker image to Docker Hub
11
- runs-on: ubuntu-latest
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: Check out the repo
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
- username: ${{ secrets.DOCKER_REGISTRY_USER }}
19
- password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
44
+ fetch-depth: 0
45
+
46
+ - name: Set up Docker Buildx
47
+ uses: docker/setup-buildx-action@v3
20
48
 
21
- - name: Extract metadata (tags, labels) for Docker
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: lobehub/lobe-chat-database
62
+ images: ${{ env.REGISTRY_IMAGE }}
26
63
  tags: |
27
- type=raw,value=latest
28
- type=ref,event=tag
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: Set up QEMU
31
- uses: docker/setup-qemu-action@v3
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: Set up Docker Buildx
34
- uses: docker/setup-buildx-action@v3
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 push Docker image
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 # 指定使用 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
- cache-from: type=gha
46
- cache-to: type=gha,mode=max
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 }}
@@ -4,42 +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
16
+ PR_TAG_PREFIX: pr-
7
17
 
8
18
  jobs:
9
- push_to_registry:
10
- name: Push Docker image to Docker Hub
11
- runs-on: ubuntu-latest
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: Check out the repo
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
- username: ${{ secrets.DOCKER_REGISTRY_USER }}
19
- password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
44
+ fetch-depth: 0
45
+
46
+ - name: Set up Docker Buildx
47
+ uses: docker/setup-buildx-action@v3
20
48
 
21
- - name: Extract metadata (tags, labels) for Docker
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: lobehub/lobe-chat
62
+ images: ${{ env.REGISTRY_IMAGE }}
26
63
  tags: |
27
- type=raw,value=latest
28
- type=ref,event=tag
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: Set up QEMU
31
- uses: docker/setup-qemu-action@v3
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: Set up Docker Buildx
34
- uses: docker/setup-buildx-action@v3
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 push Docker image
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
- platforms: linux/amd64,linux/arm64
41
- push: true
42
- tags: ${{ steps.meta.outputs.tags }}
87
+ file: ./Dockerfile
43
88
  labels: ${{ steps.meta.outputs.labels }}
44
- cache-from: type=gha
45
- cache-to: type=gha,mode=max
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://chat-preview.lobehub.com/chat'
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://chat-preview.lobehub.com/market'
37
- BADGES_ARGS: '-b pagespeed -o lighthouse/market -r'
38
- COMMIT_MESSAGE: '🤖 chore: Lighthouse Results | Market'
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,40 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 1.52.18](https://github.com/lobehub/lobe-chat/compare/v1.52.17...v1.52.18)
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
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
19
+
20
+ </div>
21
+
22
+ ### [Version 1.52.17](https://github.com/lobehub/lobe-chat/compare/v1.52.16...v1.52.17)
23
+
24
+ <sup>Released on **2025-02-11**</sup>
25
+
26
+ <br/>
27
+
28
+ <details>
29
+ <summary><kbd>Improvements and Fixes</kbd></summary>
30
+
31
+ </details>
32
+
33
+ <div align="right">
34
+
35
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
36
+
37
+ </div>
38
+
5
39
  ### [Version 1.52.16](https://github.com/lobehub/lobe-chat/compare/v1.52.15...v1.52.16)
6
40
 
7
41
  <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>**49**</kbd>](https://lobechat.com/discover/plugins)
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
- | [命理研究者](https://lobechat.com/discover/assistant/fate-researcher)<br/><sup>By **[Jack980506](https://github.com/Jack980506)** on **2025-02-06**</sup> | 八字命に精通<br/>`命理学` `八字` `伝統文化` |
308
- | [言語の魅力学習メンター](https://lobechat.com/discover/assistant/bad-language-helper)<br/><sup>By **[Guducat](https://github.com/Guducat)** on **2025-02-06**</sup> | 言語の魅力と多様な応答を教えるのが得意<br/>`言語学習` `対話例` |
309
- | [Allinone](https://lobechat.com/discover/assistant/allinone-v-1)<br/><sup>By **[AXuanCreator](https://github.com/AXuanCreator)** on **2025-02-06**</sup> | 革新・未来・卓越<br/>`プログラミング` `低コスト` `簡潔な回答` |
310
- | [ディープシンカー](https://lobechat.com/discover/assistant/deep-thinker)<br/><sup>By **[prolapser](https://github.com/prolapser)** on **2025-02-06**</sup> | 深い人間のような思考と分析。<br/>`思考` `推論` `反省` `考え` `思索` |
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>**485**</kbd> ](https://lobechat.com/discover/assistants)
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>**49**</kbd>](https://lobechat.com/discover/plugins)
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 | Description |
323
- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- |
324
- | [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` |
325
- | [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` |
326
- | [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` |
327
- | [Deep Thinker](https://lobechat.com/discover/assistant/deep-thinker)<br/><sup>By **[prolapser](https://github.com/prolapser)** on **2025-02-06**</sup> | Deep, human-like thinking and analysis.<br/>`thinking` `reasoning` `reflection` `thought` `musings` |
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>**485**</kbd> ](https://lobechat.com/discover/assistants)
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>**49**</kbd>](https://lobechat.com/discover/plugins)
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
- | [命理研究员](https://lobechat.com/discover/assistant/fate-researcher)<br/><sup>By **[Jack980506](https://github.com/Jack980506)** on **2025-02-06**</sup> | 精通八字命<br/>`命理学` `八字` `传统文化` |
314
- | [语言魅力学习导师](https://lobechat.com/discover/assistant/bad-language-helper)<br/><sup>By **[Guducat](https://github.com/Guducat)** on **2025-02-06**</sup> | 擅长教学语言的魅力与花样回复<br/>`语言学习` `对话示例` |
315
- | [Allinone](https://lobechat.com/discover/assistant/allinone-v-1)<br/><sup>By **[AXuanCreator](https://github.com/AXuanCreator)** on **2025-02-06**</sup> | 创新・未来・卓越<br/>`编程` `低成本` `简洁回答` |
316
- | [深思者](https://lobechat.com/discover/assistant/deep-thinker)<br/><sup>By **[prolapser](https://github.com/prolapser)** on **2025-02-06**</sup> | 深刻的人类思维和分析。<br/>`思考` `推理` `反思` `思想` `沉思` |
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>**485**</kbd> ](https://lobechat.com/discover/assistants)
318
+ > 📊 Total agents: [<kbd>**486**</kbd> ](https://lobechat.com/discover/assistants)
319
319
 
320
320
  <!-- AGENT LIST -->
321
321
 
package/changelog/v1.json CHANGED
@@ -1,4 +1,14 @@
1
1
  [
2
+ {
3
+ "children": {},
4
+ "date": "2025-02-11",
5
+ "version": "1.52.18"
6
+ },
7
+ {
8
+ "children": {},
9
+ "date": "2025-02-11",
10
+ "version": "1.52.17"
11
+ },
2
12
  {
3
13
  "children": {
4
14
  "improvements": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/chat",
3
- "version": "1.52.16",
3
+ "version": "1.52.18",
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",