@lobehub/lobehub 2.1.0 → 2.1.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/CHANGELOG.md +25 -0
- package/changelog/v2.json +9 -0
- package/docker-compose/deploy/.env.example +35 -0
- package/docker-compose/deploy/.env.zh-CN.example +31 -0
- package/docker-compose/deploy/bucket.config.json +18 -0
- package/docker-compose/deploy/docker-compose.yml +148 -0
- package/docker-compose/deploy/searxng-settings.yml +2582 -0
- package/docker-compose/setup.sh +37 -88
- package/docs/self-hosting/advanced/auth/providers/casdoor.mdx +110 -0
- package/docs/self-hosting/advanced/auth/providers/casdoor.zh-CN.mdx +165 -0
- package/docs/self-hosting/platform/docker-compose.mdx +43 -561
- package/docs/self-hosting/platform/docker-compose.zh-CN.mdx +40 -537
- package/package.json +1 -1
- package/packages/const/src/url.ts +1 -1
- package/src/features/Conversation/Messages/AssistantGroup/components/MessageContent.tsx +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lobehub/lobehub",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "LobeHub - an open-source,comprehensive AI Agent 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",
|
|
@@ -66,6 +66,6 @@ export const CHANGELOG_URL = urlJoin(OFFICIAL_SITE, 'changelog/versions');
|
|
|
66
66
|
|
|
67
67
|
export const DOWNLOAD_URL = {
|
|
68
68
|
android: 'https://play.google.com/store/apps/details?id=com.lobehub.app',
|
|
69
|
-
default: urlJoin(OFFICIAL_SITE, '/
|
|
69
|
+
default: urlJoin(OFFICIAL_SITE, '/downloads'),
|
|
70
70
|
ios: 'https://testflight.apple.com/join/2ZbjX4Qp',
|
|
71
71
|
} as const;
|
|
@@ -31,9 +31,14 @@ const MessageContent = memo<ContentBlockProps>(({ content, hasTools, id }) => {
|
|
|
31
31
|
return <ContentLoading id={id} />;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
+
const isSingleLine = (message || '').split('\n').length <= 2;
|
|
35
|
+
|
|
34
36
|
return (
|
|
35
37
|
content && (
|
|
36
|
-
<MarkdownMessage
|
|
38
|
+
<MarkdownMessage
|
|
39
|
+
{...markdownProps}
|
|
40
|
+
className={cx(hasTools && isSingleLine && styles.pWithTool)}
|
|
41
|
+
>
|
|
37
42
|
{message}
|
|
38
43
|
</MarkdownMessage>
|
|
39
44
|
)
|