@lobehub/chat 0.154.1 → 0.154.3

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/CHANGELOG.md CHANGED
@@ -2,6 +2,56 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 0.154.3](https://github.com/lobehub/lobe-chat/compare/v0.154.2...v0.154.3)
6
+
7
+ <sup>Released on **2024-05-06**</sup>
8
+
9
+ #### 🐛 Bug Fixes
10
+
11
+ - **misc**: Fix docker build.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### What's fixed
19
+
20
+ - **misc**: Fix docker build ([80a270d](https://github.com/lobehub/lobe-chat/commit/80a270d))
21
+
22
+ </details>
23
+
24
+ <div align="right">
25
+
26
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
27
+
28
+ </div>
29
+
30
+ ### [Version 0.154.2](https://github.com/lobehub/lobe-chat/compare/v0.154.1...v0.154.2)
31
+
32
+ <sup>Released on **2024-05-06**</sup>
33
+
34
+ #### 🐛 Bug Fixes
35
+
36
+ - **misc**: Fix docker build.
37
+
38
+ <br/>
39
+
40
+ <details>
41
+ <summary><kbd>Improvements and Fixes</kbd></summary>
42
+
43
+ #### What's fixed
44
+
45
+ - **misc**: Fix docker build, closes [#2385](https://github.com/lobehub/lobe-chat/issues/2385) ([9cf60b5](https://github.com/lobehub/lobe-chat/commit/9cf60b5))
46
+
47
+ </details>
48
+
49
+ <div align="right">
50
+
51
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
52
+
53
+ </div>
54
+
5
55
  ### [Version 0.154.1](https://github.com/lobehub/lobe-chat/compare/v0.154.0...v0.154.1)
6
56
 
7
57
  <sup>Released on **2024-05-05**</sup>
package/Dockerfile CHANGED
@@ -19,12 +19,32 @@ RUN corepack enable
19
19
  WORKDIR /app
20
20
 
21
21
  COPY package.json ./
22
+ COPY .npmrc ./
22
23
 
23
24
  # If you want to build docker in China
24
25
  # RUN npm config set registry https://registry.npmmirror.com/
25
26
  RUN pnpm i
26
27
 
27
28
  COPY . .
29
+
30
+ ENV NEXT_PUBLIC_BASE_PATH ""
31
+
32
+ # Sentry
33
+ ENV NEXT_PUBLIC_SENTRY_DSN ""
34
+ ENV SENTRY_ORG ""
35
+ ENV SENTRY_PROJECT ""
36
+
37
+ # Posthog
38
+ ENV NEXT_PUBLIC_ANALYTICS_POSTHOG ""
39
+ ENV NEXT_PUBLIC_POSTHOG_KEY ""
40
+ ENV NEXT_PUBLIC_POSTHOG_HOST ""
41
+
42
+ # Umami
43
+ ENV NEXT_PUBLIC_ANALYTICS_UMAMI ""
44
+ ENV NEXT_PUBLIC_UMAMI_SCRIPT_URL ""
45
+ ENV NEXT_PUBLIC_UMAMI_WEBSITE_ID ""
46
+
47
+
28
48
  RUN pnpm run build:docker # run build standalone for docker version
29
49
 
30
50
  ## Production image, copy all the files and run next
@@ -38,13 +38,6 @@ When using the `random` mode, a random API Key will be selected from the availab
38
38
 
39
39
  When using the `turn` mode, the API Keys will be retrieved in a round-robin manner according to the specified order.
40
40
 
41
- ### `ENABLE_OAUTH_SSO`
42
-
43
- - Type: Optional
44
- - Description: Enable Single Sign-On (SSO) for LobeChat. Set to `1` to enable SSO. For more information, see [Authentication Services](#authentication-services).
45
- - Default: -
46
- - Example: `1`
47
-
48
41
  ### `NEXT_PUBLIC_BASE_PATH`
49
42
 
50
43
  - Type: Optional
@@ -34,13 +34,6 @@ LobeChat 在部署时提供了一些额外的配置项,你可以使用环境
34
34
 
35
35
  使用 `turn` 模式下,将按照填写的顺序,轮训获取得到 API Key。
36
36
 
37
- ### `ENABLE_OAUTH_SSO`
38
-
39
- - 类型:可选
40
- - 描述:为 LobeChat 启用单点登录 (SSO)。设置为 `1` 以启用单点登录。有关详细信息,请参阅[身份验证服务](#身份验证服务)。
41
- - 默认值: `-`
42
- - 示例: `1`
43
-
44
37
  ### `NEXT_PUBLIC_BASE_PATH`
45
38
 
46
39
  - 类型:可选
@@ -4,6 +4,7 @@
4
4
  "appInitializing": "جاري تهيئة LobeChat، يرجى الانتظار ...",
5
5
  "autoGenerate": "توليد تلقائي",
6
6
  "autoGenerateTooltip": "إكمال تلقائي بناءً على الكلمات المقترحة لوصف المساعد",
7
+ "autoGenerateTooltipDisabled": "الرجاء إدخال كلمة تلميح قبل تفعيل وظيفة الإكمال التلقائي",
7
8
  "blog": "مدونة المنتجات",
8
9
  "cancel": "إلغاء",
9
10
  "changelog": "سجل التغييرات",
@@ -4,6 +4,7 @@
4
4
  "appInitializing": "LobeChat се инициализира, моля изчакайте...",
5
5
  "autoGenerate": "Автоматично генериране",
6
6
  "autoGenerateTooltip": "Автоматично генериране на описание на агент въз основа на подкани",
7
+ "autoGenerateTooltipDisabled": "Моля, попълнете подсказката, за да използвате функцията за автоматично допълване",
7
8
  "blog": "Продуктов блог",
8
9
  "cancel": "Отказ",
9
10
  "changelog": "Дневник на промените",
@@ -4,6 +4,7 @@
4
4
  "appInitializing": "LobeChat wird initialisiert. Bitte haben Sie einen Moment Geduld...",
5
5
  "autoGenerate": "Automatisch generieren",
6
6
  "autoGenerateTooltip": "Assistentenbeschreibung automatisch auf Basis von Vorschlägen vervollständigen",
7
+ "autoGenerateTooltipDisabled": "Bitte geben Sie einen Hinweis ein, um die automatische Vervollständigung zu aktivieren",
7
8
  "blog": "Produkt-Blog",
8
9
  "cancel": "Abbrechen",
9
10
  "changelog": "Änderungsprotokoll",
@@ -4,6 +4,7 @@
4
4
  "appInitializing": "LobeChat is initializing, please wait...",
5
5
  "autoGenerate": "Auto Generate",
6
6
  "autoGenerateTooltip": "Auto-generate agent description based on prompts",
7
+ "autoGenerateTooltipDisabled": "Please enter a tooltip before using the autocomplete feature",
7
8
  "blog": "Product Blog",
8
9
  "cancel": "Cancel",
9
10
  "changelog": "Changelog",
@@ -4,6 +4,7 @@
4
4
  "appInitializing": "LobeChat está inicializando, por favor espere...",
5
5
  "autoGenerate": "Generación automática",
6
6
  "autoGenerateTooltip": "Completar automáticamente la descripción del asistente basándose en las sugerencias",
7
+ "autoGenerateTooltipDisabled": "Por favor, complete la palabra clave antes de usar la función de autocompletar",
7
8
  "blog": "Blog de productos",
8
9
  "cancel": "Cancelar",
9
10
  "changelog": "Registro de cambios",
@@ -4,6 +4,7 @@
4
4
  "appInitializing": "LobeChat est en cours de démarrage, veuillez patienter...",
5
5
  "autoGenerate": "Générer automatiquement",
6
6
  "autoGenerateTooltip": "Générer automatiquement la description de l'agent basée sur les suggestions",
7
+ "autoGenerateTooltipDisabled": "Veuillez saisir un mot-clé avant d'activer la fonction de complétion automatique",
7
8
  "blog": "Blog des produits",
8
9
  "cancel": "Annuler",
9
10
  "changelog": "Journal des modifications",
@@ -4,6 +4,7 @@
4
4
  "appInitializing": "LobeChat inizializzazione in corso, attendere prego...",
5
5
  "autoGenerate": "Generazione automatica",
6
6
  "autoGenerateTooltip": "Completamento automatico basato su suggerimenti",
7
+ "autoGenerateTooltipDisabled": "Si prega di compilare il campo suggerimento per abilitare la funzione di completamento automatico",
7
8
  "blog": "Blog sui prodotti",
8
9
  "cancel": "Annulla",
9
10
  "changelog": "Registro modifiche",
@@ -4,6 +4,7 @@
4
4
  "appInitializing": "LobeChatを初期化中です。しばらくお待ちください...",
5
5
  "autoGenerate": "自動生成",
6
6
  "autoGenerateTooltip": "ヒントに基づいてエージェントの説明を自動生成します",
7
+ "autoGenerateTooltipDisabled": "ツールチップを入力してから自動生成機能を使用してください",
7
8
  "blog": "製品ブログ",
8
9
  "cancel": "キャンセル",
9
10
  "changelog": "変更履歴",
@@ -4,6 +4,7 @@
4
4
  "appInitializing": "LobeChat이 초기화 중입니다. 잠시 기다려주세요...",
5
5
  "autoGenerate": "자동 생성",
6
6
  "autoGenerateTooltip": "힌트 단어를 기반으로 에이전트 설명을 자동으로 완성합니다",
7
+ "autoGenerateTooltipDisabled": "자동 완성 기능을 사용하려면 툴팁을 입력하십시오",
7
8
  "blog": "제품 블로그",
8
9
  "cancel": "취소",
9
10
  "changelog": "변경 로그",
@@ -4,6 +4,7 @@
4
4
  "appInitializing": "LobeChat wordt geïnitialiseerd, even geduld a.u.b...",
5
5
  "autoGenerate": "Automatisch genereren",
6
6
  "autoGenerateTooltip": "Automatisch assistentbeschrijving genereren op basis van suggesties",
7
+ "autoGenerateTooltipDisabled": "Schakel de automatische aanvulling in nadat u een suggestiewoord heeft ingevoerd",
7
8
  "blog": "Product Blog",
8
9
  "cancel": "Annuleren",
9
10
  "changelog": "Wijzigingslogboek",
@@ -4,6 +4,7 @@
4
4
  "appInitializing": "LobeChat inicjuje, proszę czekać...",
5
5
  "autoGenerate": "Automatyczne generowanie",
6
6
  "autoGenerateTooltip": "Automatyczne uzupełnianie opisu asystenta na podstawie sugestii",
7
+ "autoGenerateTooltipDisabled": "Proszę wprowadzić słowo kluczowe przed użyciem funkcji automatycznego uzupełniania",
7
8
  "blog": "Blog produktowy",
8
9
  "cancel": "Anuluj",
9
10
  "changelog": "Dziennik zmian",
@@ -4,6 +4,7 @@
4
4
  "appInitializing": "LobeChat inicializando, por favor aguarde...",
5
5
  "autoGenerate": "Auto completar",
6
6
  "autoGenerateTooltip": "Auto completar descrição do assistente com base em sugestões",
7
+ "autoGenerateTooltipDisabled": "Por favor, preencha a dica antes de usar a função de preenchimento automático",
7
8
  "blog": "Blog de Produtos",
8
9
  "cancel": "Cancelar",
9
10
  "changelog": "Registro de alterações",
@@ -4,6 +4,7 @@
4
4
  "appInitializing": "LobeChat запускается, пожалуйста, подождите…",
5
5
  "autoGenerate": "Автозаполнение",
6
6
  "autoGenerateTooltip": "Автоматическое дополнение описания агента на основе подсказок",
7
+ "autoGenerateTooltipDisabled": "Пожалуйста, введите подсказку перед использованием функции автозаполнения",
7
8
  "blog": "Блог о продуктах",
8
9
  "cancel": "Отмена",
9
10
  "changelog": "История изменений",
@@ -4,6 +4,7 @@
4
4
  "appInitializing": "LobeChat başlatılıyor, lütfen bekleyin...",
5
5
  "autoGenerate": "Otomatik Oluştur",
6
6
  "autoGenerateTooltip": "Auto-generate agent description based on prompts",
7
+ "autoGenerateTooltipDisabled": "Otomatik tamamlama işlevini kullanmadan önce ipucu kelimesini girin",
7
8
  "blog": "Ürün Blogu",
8
9
  "cancel": "İptal",
9
10
  "changelog": "Changelog",
@@ -4,6 +4,7 @@
4
4
  "appInitializing": "LobeChat đang khởi động, vui lòng chờ...",
5
5
  "autoGenerate": "Tự động tạo",
6
6
  "autoGenerateTooltip": "Tự động hoàn thành mô tả trợ lý dựa trên từ gợi ý",
7
+ "autoGenerateTooltipDisabled": "Vui lòng nhập từ gợi ý trước khi sử dụng tính năng tự động hoàn thành",
7
8
  "blog": "Blog sản phẩm",
8
9
  "cancel": "Hủy",
9
10
  "changelog": "Nhật ký cập nhật",
@@ -4,6 +4,7 @@
4
4
  "appInitializing": "LobeChat 启动中,请耐心等待...",
5
5
  "autoGenerate": "自动补全",
6
6
  "autoGenerateTooltip": "基于提示词自动补全助手描述",
7
+ "autoGenerateTooltipDisabled": "请填写提示词后使用自动补全功能",
7
8
  "blog": "产品博客",
8
9
  "cancel": "取消",
9
10
  "changelog": "更新日志",
@@ -4,6 +4,7 @@
4
4
  "appInitializing": "LobeChat 初始化中,請耐心等候...",
5
5
  "autoGenerate": "自動生成",
6
6
  "autoGenerateTooltip": "基於提示詞自動生成助手描述",
7
+ "autoGenerateTooltipDisabled": "請填寫提示詞後使用自動補全功能",
7
8
  "blog": "產品部落格",
8
9
  "cancel": "取消",
9
10
  "changelog": "變更日誌",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/chat",
3
- "version": "0.154.1",
3
+ "version": "0.154.3",
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",
@@ -87,7 +87,6 @@
87
87
  "@aws-sdk/client-bedrock-runtime": "^3.565.0",
88
88
  "@azure/openai": "^1.0.0-beta.12",
89
89
  "@cfworker/json-schema": "^1.12.8",
90
- "@clerk/backend": "^1.1.1",
91
90
  "@clerk/localizations": "2.0.0",
92
91
  "@clerk/nextjs": "^5.0.6",
93
92
  "@clerk/themes": "^2.0.0",