@lobehub/chat 1.142.2 → 1.142.4
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 +52 -0
- package/README.md +8 -8
- package/README.zh-CN.md +8 -8
- package/changelog/v1.json +18 -0
- package/docs/development/database-schema.dbml +1 -0
- package/locales/ar/chat.json +4 -4
- package/locales/ar/file.json +1 -0
- package/locales/ar/models.json +1 -1
- package/locales/bg-BG/chat.json +4 -4
- package/locales/bg-BG/file.json +1 -0
- package/locales/bg-BG/models.json +1 -1
- package/locales/de-DE/chat.json +4 -4
- package/locales/de-DE/file.json +1 -0
- package/locales/de-DE/models.json +1 -1
- package/locales/en-US/chat.json +4 -4
- package/locales/en-US/file.json +1 -0
- package/locales/en-US/models.json +1 -1
- package/locales/es-ES/chat.json +4 -4
- package/locales/es-ES/file.json +1 -0
- package/locales/es-ES/models.json +1 -1
- package/locales/fa-IR/chat.json +4 -4
- package/locales/fa-IR/file.json +1 -0
- package/locales/fa-IR/models.json +1 -1
- package/locales/fr-FR/chat.json +4 -4
- package/locales/fr-FR/file.json +1 -0
- package/locales/fr-FR/models.json +1 -1
- package/locales/it-IT/chat.json +4 -4
- package/locales/it-IT/file.json +1 -0
- package/locales/ja-JP/chat.json +4 -4
- package/locales/ja-JP/file.json +1 -0
- package/locales/ja-JP/models.json +1 -1
- package/locales/ko-KR/chat.json +4 -4
- package/locales/ko-KR/file.json +1 -0
- package/locales/ko-KR/models.json +1 -1
- package/locales/nl-NL/chat.json +4 -4
- package/locales/nl-NL/file.json +1 -0
- package/locales/nl-NL/models.json +1 -1
- package/locales/pl-PL/chat.json +4 -4
- package/locales/pl-PL/file.json +1 -0
- package/locales/pl-PL/models.json +1 -1
- package/locales/pt-BR/chat.json +4 -4
- package/locales/pt-BR/file.json +1 -0
- package/locales/ru-RU/chat.json +4 -4
- package/locales/ru-RU/file.json +1 -0
- package/locales/ru-RU/models.json +1 -1
- package/locales/tr-TR/chat.json +4 -4
- package/locales/tr-TR/file.json +1 -0
- package/locales/tr-TR/models.json +1 -1
- package/locales/vi-VN/chat.json +4 -4
- package/locales/vi-VN/file.json +1 -0
- package/locales/vi-VN/models.json +1 -1
- package/locales/zh-CN/chat.json +4 -4
- package/locales/zh-CN/file.json +1 -0
- package/locales/zh-TW/chat.json +4 -4
- package/locales/zh-TW/file.json +1 -0
- package/locales/zh-TW/models.json +1 -1
- package/package.json +3 -2
- package/packages/const/src/file.ts +2 -0
- package/packages/database/migrations/0039_add_editor_data.sql +1 -0
- package/packages/database/migrations/meta/0039_snapshot.json +7586 -0
- package/packages/database/migrations/meta/_journal.json +7 -0
- package/packages/database/src/core/migrations.json +6 -0
- package/packages/database/src/schemas/document.ts +2 -0
- package/packages/database/src/utils/__tests__/groupMessages.test.ts +989 -0
- package/packages/database/src/utils/groupMessages.ts +359 -0
- package/packages/memory-extract/.env.example +3 -0
- package/packages/memory-extract/package.json +21 -0
- package/packages/memory-extract/vitest.config.mts +10 -0
- package/packages/model-runtime/src/core/streams/protocol.ts +3 -3
- package/packages/model-runtime/src/types/chat.ts +2 -2
- package/packages/obervability-otel/package.json +7 -7
- package/packages/types/src/message/common/base.ts +0 -1
- package/packages/types/src/message/common/metadata.ts +5 -5
- package/packages/types/src/message/common/tools.ts +17 -0
- package/packages/types/src/message/db/item.ts +23 -17
- package/packages/types/src/message/ui/chat.ts +22 -66
- package/packages/types/src/message/ui/index.ts +1 -0
- package/packages/types/src/message/ui/params.ts +65 -0
- package/packages/types/src/tool/builtin.ts +34 -0
- package/packages/types/src/tool/intervention.ts +39 -0
- package/packages/utils/src/fetch/fetchSSE.ts +4 -4
- package/renovate.json +14 -2
- package/src/app/[variants]/(main)/settings/provider/features/ModelList/CreateNewModelModal/index.tsx +7 -0
- package/src/app/[variants]/(main)/settings/provider/features/ModelList/ModelConfigModal/index.tsx +7 -0
- package/src/app/[variants]/(main)/settings/provider/features/ProviderConfig/Checker.tsx +7 -2
- package/src/features/ChatInput/ActionBar/components/ActionDropdown.tsx +21 -1
- package/src/features/ChatItem/components/Title.tsx +4 -3
- package/src/features/Conversation/Messages/Assistant/MessageContent.tsx +3 -16
- package/src/features/Conversation/Messages/Assistant/index.tsx +3 -3
- package/src/features/Conversation/{utils.test.ts → utils/markdown.test.ts} +1 -1
- package/src/features/Conversation/{utils.ts → utils/markdown.ts} +1 -1
- package/src/features/FileManager/FileList/FileListItem/index.tsx +3 -2
- package/src/features/FileManager/FileList/MasonryFileItem/MasonryItemWrapper.tsx +1 -1
- package/src/features/FileManager/FileList/MasonryFileItem/index.tsx +2 -4
- package/src/features/FileManager/FileList/MasonrySkeleton.tsx +11 -5
- package/src/features/FileManager/FileList/ToolBar/MultiSelectActions.tsx +1 -1
- package/src/features/FileManager/FileList/index.tsx +51 -9
- package/src/features/ModelSwitchPanel/index.tsx +1 -0
- package/src/locales/default/chat.ts +4 -4
- package/src/locales/default/file.ts +1 -0
- package/src/store/file/slices/fileManager/action.test.ts +136 -1
- package/src/store/file/slices/fileManager/action.ts +30 -8
- package/src/tools/web-browsing/Render/PageContent/index.tsx +2 -2
- package/src/tools/web-browsing/Render/index.tsx +5 -4
- package/src/utils/unzipFile.test.ts +128 -0
- package/src/utils/unzipFile.ts +122 -0
- package/vitest.config.mts +1 -0
|
@@ -273,6 +273,13 @@
|
|
|
273
273
|
"when": 1760108430562,
|
|
274
274
|
"tag": "0038_add_image_user_settings",
|
|
275
275
|
"breakpoints": true
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"idx": 39,
|
|
279
|
+
"version": "7",
|
|
280
|
+
"when": 1761554153406,
|
|
281
|
+
"tag": "0039_add_editor_data",
|
|
282
|
+
"breakpoints": true
|
|
276
283
|
}
|
|
277
284
|
],
|
|
278
285
|
"version": "6"
|
|
@@ -682,5 +682,11 @@
|
|
|
682
682
|
"bps": true,
|
|
683
683
|
"folderMillis": 1760108430562,
|
|
684
684
|
"hash": "ce09b301abb80f6563abc2f526bdd20b4f69bae430f09ba2179b9e3bfec43067"
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
"sql": ["ALTER TABLE \"documents\" ADD COLUMN IF NOT EXISTS \"editor_data\" jsonb;"],
|
|
688
|
+
"bps": true,
|
|
689
|
+
"folderMillis": 1761554153406,
|
|
690
|
+
"hash": "bf2f21293e90e11cf60a784cf3ec219eafa95f7545d7d2f9d1449c0b0949599a"
|
|
685
691
|
}
|
|
686
692
|
]
|