@lobehub/chat 1.66.6 → 1.67.0
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/v1.json +9 -0
- package/locales/ar/models.json +9 -3
- package/locales/ar/plugin.json +12 -0
- package/locales/bg-BG/models.json +9 -3
- package/locales/bg-BG/plugin.json +12 -0
- package/locales/de-DE/models.json +9 -3
- package/locales/de-DE/plugin.json +12 -0
- package/locales/en-US/models.json +9 -3
- package/locales/en-US/plugin.json +12 -0
- package/locales/es-ES/models.json +9 -3
- package/locales/es-ES/plugin.json +12 -0
- package/locales/fa-IR/models.json +9 -3
- package/locales/fa-IR/plugin.json +12 -0
- package/locales/fr-FR/models.json +9 -3
- package/locales/fr-FR/plugin.json +12 -0
- package/locales/it-IT/models.json +9 -3
- package/locales/it-IT/plugin.json +12 -0
- package/locales/ja-JP/models.json +9 -3
- package/locales/ja-JP/plugin.json +12 -0
- package/locales/ko-KR/models.json +9 -3
- package/locales/ko-KR/plugin.json +12 -0
- package/locales/nl-NL/models.json +9 -3
- package/locales/nl-NL/plugin.json +12 -0
- package/locales/pl-PL/models.json +9 -3
- package/locales/pl-PL/plugin.json +12 -0
- package/locales/pt-BR/models.json +9 -3
- package/locales/pt-BR/plugin.json +12 -0
- package/locales/ru-RU/models.json +9 -3
- package/locales/ru-RU/plugin.json +12 -0
- package/locales/tr-TR/models.json +9 -3
- package/locales/tr-TR/plugin.json +12 -0
- package/locales/vi-VN/models.json +9 -3
- package/locales/vi-VN/plugin.json +12 -0
- package/locales/zh-CN/models.json +9 -3
- package/locales/zh-CN/plugin.json +12 -0
- package/locales/zh-TW/models.json +9 -3
- package/locales/zh-TW/plugin.json +12 -0
- package/package.json +5 -1
- package/packages/web-crawler/README.md +34 -0
- package/packages/web-crawler/package.json +13 -0
- package/packages/web-crawler/src/crawImpl/browserless.ts +62 -0
- package/packages/web-crawler/src/crawImpl/index.ts +11 -0
- package/packages/web-crawler/src/crawImpl/jina.ts +37 -0
- package/packages/web-crawler/src/crawImpl/naive.ts +84 -0
- package/packages/web-crawler/src/crawler.ts +66 -0
- package/packages/web-crawler/src/index.ts +2 -0
- package/packages/web-crawler/src/type.ts +42 -0
- package/packages/web-crawler/src/urlRules.ts +34 -0
- package/packages/web-crawler/src/utils/__snapshots__/htmlToMarkdown.test.ts.snap +638 -0
- package/packages/web-crawler/src/utils/appUrlRules.test.ts +26 -0
- package/packages/web-crawler/src/utils/appUrlRules.ts +40 -0
- package/packages/web-crawler/src/utils/errorType.ts +12 -0
- package/packages/web-crawler/src/utils/html/terms.html +1222 -0
- package/packages/web-crawler/src/utils/html/yingchao.html +1001 -0
- package/packages/web-crawler/src/utils/htmlToMarkdown.test.ts +35 -0
- package/packages/web-crawler/src/utils/htmlToMarkdown.ts +45 -0
- package/packages/web-crawler/tsconfig.json +20 -0
- package/pnpm-workspace.yaml +3 -0
- package/src/features/Conversation/Messages/Assistant/Tool/Render/CustomRender.tsx +4 -35
- package/src/features/Conversation/Messages/Assistant/Tool/Render/index.tsx +1 -1
- package/src/features/PluginsUI/Render/BuiltinType/index.tsx +3 -0
- package/src/features/PluginsUI/Render/index.tsx +1 -0
- package/src/features/Portal/Plugins/Body/ToolRender.tsx +1 -0
- package/src/locales/default/plugin.ts +12 -0
- package/src/server/routers/tools/search.ts +23 -0
- package/src/services/search.ts +8 -0
- package/src/store/chat/slices/builtinTool/actions/searXNG.ts +50 -0
- package/src/store/chat/slices/builtinTool/initialState.ts +1 -0
- package/src/tools/web-browsing/Portal/PageContent/index.tsx +190 -0
- package/src/tools/web-browsing/Portal/PageContents/index.tsx +23 -0
- package/src/tools/web-browsing/Portal/{ResultList → Search/ResultList}/SearchItem/Video.tsx +1 -1
- package/src/tools/web-browsing/Portal/Search/index.tsx +69 -0
- package/src/tools/web-browsing/Portal/index.tsx +28 -64
- package/src/tools/web-browsing/Render/PageContent/Loading.tsx +57 -0
- package/src/tools/web-browsing/Render/PageContent/Result.tsx +142 -0
- package/src/tools/web-browsing/Render/PageContent/index.tsx +41 -0
- package/src/tools/web-browsing/Render/{SearchQuery → Search/SearchQuery}/SearchView.tsx +1 -1
- package/src/tools/web-browsing/Render/{SearchQuery → Search/SearchQuery}/index.tsx +1 -1
- package/src/tools/web-browsing/Render/{SearchResult → Search/SearchResult}/ShowMore.tsx +1 -1
- package/src/tools/web-browsing/Render/Search/index.tsx +62 -0
- package/src/tools/web-browsing/Render/index.tsx +35 -44
- package/src/tools/web-browsing/index.ts +43 -47
- package/src/tools/web-browsing/systemRole.ts +109 -0
- package/src/types/tool/builtin.ts +2 -0
- package/src/types/tool/crawler.ts +19 -0
- package/src/types/tool/search.ts +1 -0
- /package/src/tools/web-browsing/Portal/{Footer.tsx → Search/Footer.tsx} +0 -0
- /package/src/tools/web-browsing/Portal/{ResultList → Search/ResultList}/SearchItem/CategoryAvatar.tsx +0 -0
- /package/src/tools/web-browsing/Portal/{ResultList → Search/ResultList}/SearchItem/TitleExtra.tsx +0 -0
- /package/src/tools/web-browsing/Portal/{ResultList → Search/ResultList}/SearchItem/index.tsx +0 -0
- /package/src/tools/web-browsing/Portal/{ResultList → Search/ResultList}/index.tsx +0 -0
- /package/src/tools/web-browsing/Render/{ConfigForm → Search/ConfigForm}/Form.tsx +0 -0
- /package/src/tools/web-browsing/Render/{ConfigForm → Search/ConfigForm}/SearchXNGIcon.tsx +0 -0
- /package/src/tools/web-browsing/Render/{ConfigForm → Search/ConfigForm}/index.tsx +0 -0
- /package/src/tools/web-browsing/Render/{ConfigForm → Search/ConfigForm}/style.tsx +0 -0
- /package/src/tools/web-browsing/Render/{SearchResult → Search/SearchResult}/SearchResultItem.tsx +0 -0
- /package/src/tools/web-browsing/Render/{SearchResult → Search/SearchResult}/index.tsx +0 -0
@@ -0,0 +1,1222 @@
|
|
1
|
+
<!doctype html>
|
2
|
+
<html dir="ltr" lang="zh">
|
3
|
+
<head>
|
4
|
+
<title>Terms of Service · LobeHub</title>
|
5
|
+
</head>
|
6
|
+
<body>
|
7
|
+
<div class="css-1s5y0iy ant-app" style="min-height: inherit; width: inherit">
|
8
|
+
<header class="layoutkit-center css-6bn2af acss-dtrjl0">
|
9
|
+
<div class="layoutkit-flexbox css-1xzq8t6 acss-1ifs1in">
|
10
|
+
<div class="layoutkit-flexbox css-uy1qbk acss-1m3ugbo">
|
11
|
+
<a href="https://lobehub.com/"
|
12
|
+
><img
|
13
|
+
alt="LobeHub"
|
14
|
+
title="Home"
|
15
|
+
width="36"
|
16
|
+
height="36"
|
17
|
+
decoding="async"
|
18
|
+
data-nimg="1"
|
19
|
+
style="color: transparent"
|
20
|
+
src="./Terms of Service · LobeHub_files/logo.98482105.png"
|
21
|
+
/></a>
|
22
|
+
</div>
|
23
|
+
<nav>
|
24
|
+
<div class="ant-tabs ant-tabs-top acss-k6gzfm css-1s5y0iy">
|
25
|
+
<div role="tablist" aria-orientation="horizontal" class="ant-tabs-nav">
|
26
|
+
<div class="ant-tabs-nav-wrap">
|
27
|
+
<div class="ant-tabs-nav-list" style="transform: translate(0px, 0px)">
|
28
|
+
<div data-node-key="/features" class="ant-tabs-tab">
|
29
|
+
<div role="tab" aria-selected="false" class="ant-tabs-tab-btn" tabindex="-1">
|
30
|
+
<a href="https://lobehub.com/features">Features</a>
|
31
|
+
</div>
|
32
|
+
</div>
|
33
|
+
<div data-node-key="/pricing" class="ant-tabs-tab">
|
34
|
+
<div role="tab" aria-selected="false" class="ant-tabs-tab-btn" tabindex="-1">
|
35
|
+
<a href="https://lobehub.com/pricing">Pricing</a>
|
36
|
+
</div>
|
37
|
+
</div>
|
38
|
+
<div data-node-key="(market)" class="ant-tabs-tab">
|
39
|
+
<div role="tab" aria-selected="false" class="ant-tabs-tab-btn" tabindex="-1">
|
40
|
+
<div class="layoutkit-flexbox css-16o88vh ant-dropdown-trigger">
|
41
|
+
<span>Market</span
|
42
|
+
><span class="anticon" role="img"
|
43
|
+
><svg
|
44
|
+
xmlns="http://www.w3.org/2000/svg"
|
45
|
+
width="1em"
|
46
|
+
height="1em"
|
47
|
+
viewBox="0 0 24 24"
|
48
|
+
fill="transparent"
|
49
|
+
stroke="currentColor"
|
50
|
+
stroke-width="2"
|
51
|
+
stroke-linecap="round"
|
52
|
+
stroke-linejoin="round"
|
53
|
+
class="lucide lucide-chevron-down"
|
54
|
+
>
|
55
|
+
<path d="m6 9 6 6 6-6"></path></svg
|
56
|
+
></span>
|
57
|
+
</div>
|
58
|
+
</div>
|
59
|
+
</div>
|
60
|
+
<div data-node-key="/docs" class="ant-tabs-tab">
|
61
|
+
<div role="tab" aria-selected="false" class="ant-tabs-tab-btn" tabindex="-1">
|
62
|
+
<a href="https://lobehub.com/docs">Docs</a>
|
63
|
+
</div>
|
64
|
+
</div>
|
65
|
+
<div data-node-key="/blog" class="ant-tabs-tab">
|
66
|
+
<div role="tab" aria-selected="false" class="ant-tabs-tab-btn" tabindex="-1">
|
67
|
+
<a href="https://lobehub.com/blog">Blog</a>
|
68
|
+
</div>
|
69
|
+
</div>
|
70
|
+
<div data-node-key="/changelog" class="ant-tabs-tab">
|
71
|
+
<div role="tab" aria-selected="false" class="ant-tabs-tab-btn" tabindex="-1">
|
72
|
+
<a href="https://lobehub.com/changelog">Changelog</a>
|
73
|
+
</div>
|
74
|
+
</div>
|
75
|
+
<div data-node-key="(resources)" class="ant-tabs-tab">
|
76
|
+
<div role="tab" aria-selected="false" class="ant-tabs-tab-btn" tabindex="-1">
|
77
|
+
<div class="layoutkit-flexbox css-16o88vh ant-dropdown-trigger">
|
78
|
+
<span>Resources</span
|
79
|
+
><span class="anticon" role="img"
|
80
|
+
><svg
|
81
|
+
xmlns="http://www.w3.org/2000/svg"
|
82
|
+
width="1em"
|
83
|
+
height="1em"
|
84
|
+
viewBox="0 0 24 24"
|
85
|
+
fill="transparent"
|
86
|
+
stroke="currentColor"
|
87
|
+
stroke-width="2"
|
88
|
+
stroke-linecap="round"
|
89
|
+
stroke-linejoin="round"
|
90
|
+
class="lucide lucide-chevron-down"
|
91
|
+
>
|
92
|
+
<path d="m6 9 6 6 6-6"></path></svg
|
93
|
+
></span>
|
94
|
+
</div>
|
95
|
+
</div>
|
96
|
+
</div>
|
97
|
+
<div class="ant-tabs-ink-bar ant-tabs-ink-bar-animated"></div>
|
98
|
+
</div>
|
99
|
+
</div>
|
100
|
+
<div class="ant-tabs-nav-operations ant-tabs-nav-operations-hidden">
|
101
|
+
<button
|
102
|
+
type="button"
|
103
|
+
class="ant-tabs-nav-more"
|
104
|
+
style="visibility: hidden; order: 1"
|
105
|
+
aria-haspopup="listbox"
|
106
|
+
aria-controls="null-more-popup"
|
107
|
+
id="null-more"
|
108
|
+
aria-expanded="false"
|
109
|
+
>
|
110
|
+
<span role="img" aria-label="ellipsis" class="anticon anticon-ellipsis"
|
111
|
+
><svg
|
112
|
+
viewBox="64 64 896 896"
|
113
|
+
focusable="false"
|
114
|
+
data-icon="ellipsis"
|
115
|
+
width="1em"
|
116
|
+
height="1em"
|
117
|
+
fill="currentColor"
|
118
|
+
aria-hidden="true"
|
119
|
+
>
|
120
|
+
<path
|
121
|
+
d="M176 511a56 56 0 10112 0 56 56 0 10-112 0zm280 0a56 56 0 10112 0 56 56 0 10-112 0zm280 0a56 56 0 10112 0 56 56 0 10-112 0z"
|
122
|
+
></path></svg
|
123
|
+
></span>
|
124
|
+
</button>
|
125
|
+
</div>
|
126
|
+
</div>
|
127
|
+
<div class="ant-tabs-content-holder">
|
128
|
+
<div class="ant-tabs-content ant-tabs-content-top"></div>
|
129
|
+
</div>
|
130
|
+
</div>
|
131
|
+
</nav>
|
132
|
+
<div class="layoutkit-flexbox css-nb8o7d acss-nbttw4">
|
133
|
+
<div
|
134
|
+
style="border-radius: 5px; height: 36px; width: 36px"
|
135
|
+
class="layoutkit-flexbox css-5wokcq ant-dropdown-trigger acss-f5xojh"
|
136
|
+
>
|
137
|
+
<span class="anticon acss-17q14cp" role="img"
|
138
|
+
><svg
|
139
|
+
xmlns="http://www.w3.org/2000/svg"
|
140
|
+
width="20"
|
141
|
+
height="20"
|
142
|
+
viewBox="0 0 24 24"
|
143
|
+
fill="transparent"
|
144
|
+
stroke="currentColor"
|
145
|
+
stroke-width="2"
|
146
|
+
stroke-linecap="round"
|
147
|
+
stroke-linejoin="round"
|
148
|
+
class="lucide lucide-languages"
|
149
|
+
>
|
150
|
+
<path d="m5 8 6 6"></path>
|
151
|
+
<path d="m4 14 6-6 2-3"></path>
|
152
|
+
<path d="M2 5h12"></path>
|
153
|
+
<path d="M7 2h1"></path>
|
154
|
+
<path d="m22 22-5-10-5 10"></path>
|
155
|
+
<path d="M14 18h6"></path></svg
|
156
|
+
></span>
|
157
|
+
</div>
|
158
|
+
<a target="_blank" href="https://github.com/lobehub/lobe-chat">
|
159
|
+
<div
|
160
|
+
style="border-radius: 5px; height: 36px; width: unset"
|
161
|
+
class="layoutkit-flexbox css-43g7or acss-1pp2olz"
|
162
|
+
>
|
163
|
+
<span class="anticon acss-17q14cp" role="img"
|
164
|
+
><svg
|
165
|
+
xmlns="http://www.w3.org/2000/svg"
|
166
|
+
width="20"
|
167
|
+
height="20"
|
168
|
+
viewBox="0 0 24 24"
|
169
|
+
fill="transparent"
|
170
|
+
stroke="currentColor"
|
171
|
+
stroke-width="2"
|
172
|
+
stroke-linecap="round"
|
173
|
+
stroke-linejoin="round"
|
174
|
+
class="lucide lucide-github"
|
175
|
+
>
|
176
|
+
<path
|
177
|
+
d="M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4"
|
178
|
+
></path>
|
179
|
+
<path d="M9 18c-4.51 2-5-2-7-2"></path></svg></span
|
180
|
+
>56.5<!-- -->
|
181
|
+
K
|
182
|
+
</div> </a
|
183
|
+
><a href="https://lobechat.com/?utm_source=landing&utm_content=header_get_started">
|
184
|
+
<button
|
185
|
+
type="button"
|
186
|
+
class="ant-btn css-1s5y0iy ant-btn-round ant-btn-primary ant-btn-color-primary ant-btn-variant-solid"
|
187
|
+
style="font-weight: 500"
|
188
|
+
>
|
189
|
+
<span>开始使用</span>
|
190
|
+
</button>
|
191
|
+
</a>
|
192
|
+
</div>
|
193
|
+
</div>
|
194
|
+
</header>
|
195
|
+
<section class="layoutkit-center css-6bn2af acss-rwgu8t">
|
196
|
+
<div
|
197
|
+
style="max-width: 1200px; padding-bottom: 96px; padding-top: 114px"
|
198
|
+
class="layoutkit-flexbox css-1bqayk1 acss-1o5vv0g"
|
199
|
+
>
|
200
|
+
<div class="layoutkit-flexbox css-o3n4io">
|
201
|
+
<div class="layoutkit-flexbox css-1u84j5a">
|
202
|
+
<div></div>
|
203
|
+
<div
|
204
|
+
role="radiogroup"
|
205
|
+
aria-label="segmented control"
|
206
|
+
tabindex="0"
|
207
|
+
class="ant-segmented acss-1cwb8ab ant-segmented-sm ant-segmented-shape-round css-1mjz7gc"
|
208
|
+
>
|
209
|
+
<div class="ant-segmented-group">
|
210
|
+
<label class="ant-segmented-item ant-segmented-item-selected"
|
211
|
+
><input
|
212
|
+
class="ant-segmented-item-input"
|
213
|
+
type="radio"
|
214
|
+
name=":R5rfeniiqdfb:"
|
215
|
+
checked=""
|
216
|
+
/>
|
217
|
+
<div class="ant-segmented-item-label" aria-selected="true">
|
218
|
+
<span class="ant-segmented-item-icon"
|
219
|
+
><span class="anticon" role="img"
|
220
|
+
><svg
|
221
|
+
xmlns="http://www.w3.org/2000/svg"
|
222
|
+
width="1em"
|
223
|
+
height="1em"
|
224
|
+
viewBox="0 0 24 24"
|
225
|
+
fill="transparent"
|
226
|
+
stroke="currentColor"
|
227
|
+
stroke-width="2"
|
228
|
+
stroke-linecap="round"
|
229
|
+
stroke-linejoin="round"
|
230
|
+
class="lucide lucide-moon"
|
231
|
+
>
|
232
|
+
<path d="M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z"></path></svg></span
|
233
|
+
></span>
|
234
|
+
</div> </label
|
235
|
+
><label class="ant-segmented-item"
|
236
|
+
><input class="ant-segmented-item-input" type="radio" name=":R5rfeniiqdfb:" />
|
237
|
+
<div class="ant-segmented-item-label" aria-selected="false">
|
238
|
+
<span class="ant-segmented-item-icon"
|
239
|
+
><span class="anticon" role="img"
|
240
|
+
><svg
|
241
|
+
xmlns="http://www.w3.org/2000/svg"
|
242
|
+
width="1em"
|
243
|
+
height="1em"
|
244
|
+
viewBox="0 0 24 24"
|
245
|
+
fill="transparent"
|
246
|
+
stroke="currentColor"
|
247
|
+
stroke-width="2"
|
248
|
+
stroke-linecap="round"
|
249
|
+
stroke-linejoin="round"
|
250
|
+
class="lucide lucide-sun"
|
251
|
+
>
|
252
|
+
<circle cx="12" cy="12" r="4"></circle>
|
253
|
+
<path d="M12 2v2"></path>
|
254
|
+
<path d="M12 20v2"></path>
|
255
|
+
<path d="m4.93 4.93 1.41 1.41"></path>
|
256
|
+
<path d="m17.66 17.66 1.41 1.41"></path>
|
257
|
+
<path d="M2 12h2"></path>
|
258
|
+
<path d="M20 12h2"></path>
|
259
|
+
<path d="m6.34 17.66-1.41 1.41"></path>
|
260
|
+
<path d="m19.07 4.93-1.41 1.41"></path></svg></span
|
261
|
+
></span>
|
262
|
+
</div>
|
263
|
+
</label>
|
264
|
+
</div>
|
265
|
+
</div>
|
266
|
+
</div>
|
267
|
+
<article class="acss-12344ll" style="width: 100%">
|
268
|
+
<script id="structured-data" type="application/ld+json">
|
269
|
+
{
|
270
|
+
"@context": "https://schema.org",
|
271
|
+
"@graph": [
|
272
|
+
{
|
273
|
+
"@id": "https://lobehub.com/#website",
|
274
|
+
"@type": "WebSite",
|
275
|
+
"description": "LobeChat brings you the best user experience of ChatGPT, OLLaMA, Gemini, Claude WebUI",
|
276
|
+
"inLanguage": "en-US",
|
277
|
+
"name": "LobeHub",
|
278
|
+
"publisher": {
|
279
|
+
"@id": "https://lobehub.com/#organization"
|
280
|
+
},
|
281
|
+
"url": "https://lobehub.com"
|
282
|
+
},
|
283
|
+
{
|
284
|
+
"@id": "https://lobehub.com/terms",
|
285
|
+
"@type": "WebPage",
|
286
|
+
"about": {
|
287
|
+
"@id": "https://lobehub.com/#organization"
|
288
|
+
},
|
289
|
+
"dateModified": "2024-03-01T00:00:00.000Z",
|
290
|
+
"datePublished": "2024-03-01T00:00:00.000Z",
|
291
|
+
"description": "Terms of Service of LobeChat | LobeHub",
|
292
|
+
"image": {
|
293
|
+
"@id": "https://lobehub.com/terms/#primaryimage"
|
294
|
+
},
|
295
|
+
"inLanguage": "en-US",
|
296
|
+
"isPartOf": {
|
297
|
+
"@id": "https://lobehub.com/#website"
|
298
|
+
},
|
299
|
+
"name": "Terms of Service · LobeHub",
|
300
|
+
"primaryImageOfPage": {
|
301
|
+
"@id": "https://lobehub.com/terms/#primaryimage"
|
302
|
+
},
|
303
|
+
"thumbnailUrl": "/api/dynamic-og?title=Terms%20of%20Service"
|
304
|
+
},
|
305
|
+
{
|
306
|
+
"@id": "https://lobehub.com/terms/#primaryimage",
|
307
|
+
"@type": "ImageObject",
|
308
|
+
"contentUrl": "/api/dynamic-og?title=Terms%20of%20Service",
|
309
|
+
"inLanguage": "en-US",
|
310
|
+
"url": "/api/dynamic-og?title=Terms%20of%20Service"
|
311
|
+
},
|
312
|
+
{
|
313
|
+
"@id": "https://lobehub.com/#organization",
|
314
|
+
"@type": "Organization",
|
315
|
+
"alternateName": "LobeChat",
|
316
|
+
"contactPoint": {
|
317
|
+
"@type": "ContactPoint",
|
318
|
+
"contactType": "customer support",
|
319
|
+
"email": "support@lobehub.com"
|
320
|
+
},
|
321
|
+
"description": "We are a group of e/acc design-engineers, hoping to provide modern design components and tools for AIGC, and creating a technology-driven forum, fostering knowledge interaction and the exchange of ideas that may culminate in mutual inspiration and collaborative innovation.",
|
322
|
+
"email": "hello@lobehub.com",
|
323
|
+
"founders": [
|
324
|
+
{
|
325
|
+
"@type": "Person",
|
326
|
+
"name": "Arvin Xu",
|
327
|
+
"url": "https://github.com/arvinxx"
|
328
|
+
},
|
329
|
+
{
|
330
|
+
"@type": "Person",
|
331
|
+
"name": "CanisMinor",
|
332
|
+
"url": "https://github.com/arvinxx"
|
333
|
+
}
|
334
|
+
],
|
335
|
+
"image": "https://lobehub.com/icon-512x512.png",
|
336
|
+
"logo": {
|
337
|
+
"@type": "ImageObject",
|
338
|
+
"height": 512,
|
339
|
+
"url": "https://lobehub.com/icon-512x512.png",
|
340
|
+
"width": 512
|
341
|
+
},
|
342
|
+
"name": "LobeHub",
|
343
|
+
"sameAs": [
|
344
|
+
"https://x.com/lobehub",
|
345
|
+
"https://github.com/lobehub",
|
346
|
+
"https://medium.com/@lobehub",
|
347
|
+
"https://www.youtube.com/@lobehub"
|
348
|
+
],
|
349
|
+
"url": "https://lobehub.com"
|
350
|
+
}
|
351
|
+
]
|
352
|
+
}
|
353
|
+
</script>
|
354
|
+
<div class="layoutkit-center css-6bn2af">
|
355
|
+
<h1 style="color: #ffffff" id="terms-of-service">Terms of Service</h1>
|
356
|
+
<div class="acss-1b8uedc" style="margin-top: 0">
|
357
|
+
Lasted Updated at<!-- -->
|
358
|
+
<time aria-label="modified-date" datetime="2024-03-01T00:00:00.000Z"
|
359
|
+
>2024-03-01
|
360
|
+
</time>
|
361
|
+
</div>
|
362
|
+
</div>
|
363
|
+
<p>
|
364
|
+
Welcome to LobeHub! Please carefully read the following Terms of Use (hereinafter
|
365
|
+
referred to as the "Agreement"). This Agreement constitutes a legally binding
|
366
|
+
agreement between You and LobeHub regarding the access and use of the LobeHub
|
367
|
+
software applications, services, and websites (collectively referred to as the
|
368
|
+
"Services").
|
369
|
+
</p>
|
370
|
+
<p>
|
371
|
+
By accessing or using the Services in any way, You acknowledge that You have read,
|
372
|
+
understood, and agreed to be bound by all the terms of this Agreement. If You do not
|
373
|
+
agree to any part of this Agreement, You are not permitted to continue accessing or
|
374
|
+
using the Services.
|
375
|
+
</p>
|
376
|
+
<h2 class="acss-gnfwxu" style="color: #ffffff" id="definitions">
|
377
|
+
Definitions<a
|
378
|
+
aria-label="Permalink for this section"
|
379
|
+
class="acss-mujp7w"
|
380
|
+
style="scroll-margin-top: 96px"
|
381
|
+
href="https://lobehub.com/zh/terms#definitions"
|
382
|
+
><span class="anticon" role="img"
|
383
|
+
><svg
|
384
|
+
xmlns="http://www.w3.org/2000/svg"
|
385
|
+
width="1em"
|
386
|
+
height="1em"
|
387
|
+
viewBox="0 0 24 24"
|
388
|
+
fill="transparent"
|
389
|
+
stroke="currentColor"
|
390
|
+
stroke-width="2"
|
391
|
+
stroke-linecap="round"
|
392
|
+
stroke-linejoin="round"
|
393
|
+
class="lucide lucide-heading2"
|
394
|
+
>
|
395
|
+
<path d="M4 12h8"></path>
|
396
|
+
<path d="M4 18V6"></path>
|
397
|
+
<path d="M12 18V6"></path>
|
398
|
+
<path d="M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1"></path></svg></span
|
399
|
+
></a>
|
400
|
+
</h2>
|
401
|
+
<p>
|
402
|
+
The words of which the initial letter is capitalized have meanings defined under the
|
403
|
+
following conditions. The following definitions shall have the same meaning
|
404
|
+
regardless of whether they appear in singular or in plural.
|
405
|
+
</p>
|
406
|
+
<ul>
|
407
|
+
<li>
|
408
|
+
<strong>Affiliate</strong> means an entity that controls, is controlled by or is
|
409
|
+
under common control with a party, where "control" means ownership of 50% or more
|
410
|
+
of the shares, equity interest or other securities entitled to vote for election
|
411
|
+
of directors or other managing authority.
|
412
|
+
</li>
|
413
|
+
<li><strong>Agreement</strong> means this Terms of Use Agreement.</li>
|
414
|
+
<li>
|
415
|
+
<strong>Company</strong> (referred to as either "the Company", "We", "Us" or "Our"
|
416
|
+
in this Agreement) refers to LobeHub LLC.
|
417
|
+
</li>
|
418
|
+
<li>
|
419
|
+
<strong>Service</strong> means the LobeHub software applications, services, and
|
420
|
+
website.
|
421
|
+
</li>
|
422
|
+
<li>
|
423
|
+
<strong>You</strong> means the individual accessing or using the Services, or the
|
424
|
+
company, or other legal entity on behalf of which such individual is accessing or
|
425
|
+
using the Services, as applicable.
|
426
|
+
</li>
|
427
|
+
</ul>
|
428
|
+
<h2 class="acss-gnfwxu" style="color: #ffffff" id="our-services">
|
429
|
+
Our Services<a
|
430
|
+
aria-label="Permalink for this section"
|
431
|
+
class="acss-mujp7w"
|
432
|
+
style="scroll-margin-top: 96px"
|
433
|
+
href="https://lobehub.com/zh/terms#our-services"
|
434
|
+
><span class="anticon" role="img"
|
435
|
+
><svg
|
436
|
+
xmlns="http://www.w3.org/2000/svg"
|
437
|
+
width="1em"
|
438
|
+
height="1em"
|
439
|
+
viewBox="0 0 24 24"
|
440
|
+
fill="transparent"
|
441
|
+
stroke="currentColor"
|
442
|
+
stroke-width="2"
|
443
|
+
stroke-linecap="round"
|
444
|
+
stroke-linejoin="round"
|
445
|
+
class="lucide lucide-heading2"
|
446
|
+
>
|
447
|
+
<path d="M4 12h8"></path>
|
448
|
+
<path d="M4 18V6"></path>
|
449
|
+
<path d="M12 18V6"></path>
|
450
|
+
<path d="M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1"></path></svg></span
|
451
|
+
></a>
|
452
|
+
</h2>
|
453
|
+
<p>
|
454
|
+
LobeHub provides a platform and interface that enables users to interact with
|
455
|
+
artificial intelligence technologies, including but not limited to natural language
|
456
|
+
processing models or content generation models developed independently or provided
|
457
|
+
by third parties such as Google, Microsoft, OpenAI, and other commercial companies
|
458
|
+
as well as open-source communities. The Service facilitates functions such as
|
459
|
+
information retrieval, content creation, and automation through user interaction
|
460
|
+
with AI systems. Additionally, it utilizes cloud technology to provide capabilities
|
461
|
+
like data synchronization, vector data storage, server-side functionalities, etc.,
|
462
|
+
to enhance the interactive experience with AI models.
|
463
|
+
</p>
|
464
|
+
<h2 class="acss-gnfwxu" style="color: #ffffff" id="eligibility">
|
465
|
+
Eligibility<a
|
466
|
+
aria-label="Permalink for this section"
|
467
|
+
class="acss-mujp7w"
|
468
|
+
style="scroll-margin-top: 96px"
|
469
|
+
href="https://lobehub.com/zh/terms#eligibility"
|
470
|
+
><span class="anticon" role="img"
|
471
|
+
><svg
|
472
|
+
xmlns="http://www.w3.org/2000/svg"
|
473
|
+
width="1em"
|
474
|
+
height="1em"
|
475
|
+
viewBox="0 0 24 24"
|
476
|
+
fill="transparent"
|
477
|
+
stroke="currentColor"
|
478
|
+
stroke-width="2"
|
479
|
+
stroke-linecap="round"
|
480
|
+
stroke-linejoin="round"
|
481
|
+
class="lucide lucide-heading2"
|
482
|
+
>
|
483
|
+
<path d="M4 12h8"></path>
|
484
|
+
<path d="M4 18V6"></path>
|
485
|
+
<path d="M12 18V6"></path>
|
486
|
+
<path d="M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1"></path></svg></span
|
487
|
+
></a>
|
488
|
+
</h2>
|
489
|
+
<p>
|
490
|
+
By accessing or using the Services, You represent and warrant to the Company that
|
491
|
+
You: (1)Are of legal age (18 years and above). (2)Have legal capacity and agree to
|
492
|
+
abide by these terms. (3)Will use the Services in accordance with this Agreement and
|
493
|
+
all applicable laws. (4)Will not use the Services for any illegal, harmful,
|
494
|
+
dangerous, or offensive purposes.
|
495
|
+
</p>
|
496
|
+
<p>Examples of prohibited activities include but are not limited to:</p>
|
497
|
+
<ul>
|
498
|
+
<li>Illegal activities</li>
|
499
|
+
<li>Infringement of intellectual property rights</li>
|
500
|
+
<li>Generating harmful, unsafe, deceptive, or illegal content</li>
|
501
|
+
<li>Impersonation, fraud</li>
|
502
|
+
</ul>
|
503
|
+
<p>
|
504
|
+
If You do not comply with the usage conditions, We reserve the right to suspend or
|
505
|
+
terminate Your account and refuse any and all current or future use of the Services
|
506
|
+
(or any part thereof).
|
507
|
+
</p>
|
508
|
+
<h2 class="acss-gnfwxu" style="color: #ffffff" id="account-registration">
|
509
|
+
Account Registration<a
|
510
|
+
aria-label="Permalink for this section"
|
511
|
+
class="acss-mujp7w"
|
512
|
+
style="scroll-margin-top: 96px"
|
513
|
+
href="https://lobehub.com/zh/terms#account-registration"
|
514
|
+
><span class="anticon" role="img"
|
515
|
+
><svg
|
516
|
+
xmlns="http://www.w3.org/2000/svg"
|
517
|
+
width="1em"
|
518
|
+
height="1em"
|
519
|
+
viewBox="0 0 24 24"
|
520
|
+
fill="transparent"
|
521
|
+
stroke="currentColor"
|
522
|
+
stroke-width="2"
|
523
|
+
stroke-linecap="round"
|
524
|
+
stroke-linejoin="round"
|
525
|
+
class="lucide lucide-heading2"
|
526
|
+
>
|
527
|
+
<path d="M4 12h8"></path>
|
528
|
+
<path d="M4 18V6"></path>
|
529
|
+
<path d="M12 18V6"></path>
|
530
|
+
<path d="M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1"></path></svg></span
|
531
|
+
></a>
|
532
|
+
</h2>
|
533
|
+
<p>
|
534
|
+
To access the Services, You must register an account by providing true, accurate,
|
535
|
+
up-to-date, and complete information. You are solely responsible for all activities
|
536
|
+
that occur under Your account, including maintaining the security of Your account
|
537
|
+
and restricting access. You must immediately notify LobeHub of any unauthorized
|
538
|
+
account use or other security breaches.
|
539
|
+
</p>
|
540
|
+
<p>
|
541
|
+
Please ensure to keep Your password secure and take responsibility for all use of
|
542
|
+
Your account and password. If We deem the chosen username inappropriate, containing
|
543
|
+
obscene content, or otherwise offensive, We reserve the right to delete, revoke, or
|
544
|
+
modify that username.
|
545
|
+
</p>
|
546
|
+
<h2 class="acss-gnfwxu" style="color: #ffffff" id="purchases-and-payments">
|
547
|
+
Purchases and Payments<a
|
548
|
+
aria-label="Permalink for this section"
|
549
|
+
class="acss-mujp7w"
|
550
|
+
style="scroll-margin-top: 96px"
|
551
|
+
href="https://lobehub.com/zh/terms#purchases-and-payments"
|
552
|
+
><span class="anticon" role="img"
|
553
|
+
><svg
|
554
|
+
xmlns="http://www.w3.org/2000/svg"
|
555
|
+
width="1em"
|
556
|
+
height="1em"
|
557
|
+
viewBox="0 0 24 24"
|
558
|
+
fill="transparent"
|
559
|
+
stroke="currentColor"
|
560
|
+
stroke-width="2"
|
561
|
+
stroke-linecap="round"
|
562
|
+
stroke-linejoin="round"
|
563
|
+
class="lucide lucide-heading2"
|
564
|
+
>
|
565
|
+
<path d="M4 12h8"></path>
|
566
|
+
<path d="M4 18V6"></path>
|
567
|
+
<path d="M12 18V6"></path>
|
568
|
+
<path d="M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1"></path></svg></span
|
569
|
+
></a>
|
570
|
+
</h2>
|
571
|
+
<p>
|
572
|
+
You agree to provide current, complete, and accurate purchase and account
|
573
|
+
information for all purchases made using the Services. You also agree to promptly
|
574
|
+
update Your account and payment information, including email address, payment
|
575
|
+
method, and payment card expiration date, to allow us to complete Your transactions
|
576
|
+
and contact You when necessary. Sales tax will be added to the purchase price as
|
577
|
+
required by law.
|
578
|
+
</p>
|
579
|
+
<p>
|
580
|
+
You agree to pay all charges at the current purchase price and authorize us to
|
581
|
+
charge any such amounts to Your chosen payment provider at the time of purchase. If
|
582
|
+
Your order requires recurring charges, You agree that We may charge Your payment
|
583
|
+
method on a recurring basis at the specified intervals without obtaining prior
|
584
|
+
approval for each recurring charge until the relevant order is canceled. We reserve
|
585
|
+
the right to correct any errors or pricing errors even after payment has been
|
586
|
+
requested or accepted.
|
587
|
+
</p>
|
588
|
+
<p>
|
589
|
+
We may utilize third-party payment processing services (such as Stripe) for payment
|
590
|
+
processing. You may use a valid card (credit or debit card) for payment, subject to
|
591
|
+
verification and authorization by Your card issuer. We will not be liable for any
|
592
|
+
delays or failure to provide Services resulting from payment failures due to
|
593
|
+
authorization issues or any reasons related to third-party payment providers.
|
594
|
+
</p>
|
595
|
+
<p>
|
596
|
+
We reserve the right to refuse or cancel Your order at any time for certain reasons,
|
597
|
+
including but not limited to: (1) Service availability, (2) errors in Service
|
598
|
+
description or pricing, (3) order errors, (4) suspected fraud or unauthorized or
|
599
|
+
illegal transactions. We reserve the right, at our sole discretion, to limit or
|
600
|
+
prohibit orders placed by dealers, resellers, or distributors.
|
601
|
+
</p>
|
602
|
+
<h2 class="acss-gnfwxu" style="color: #ffffff" id="fee-changes">
|
603
|
+
Fee Changes<a
|
604
|
+
aria-label="Permalink for this section"
|
605
|
+
class="acss-mujp7w"
|
606
|
+
style="scroll-margin-top: 96px"
|
607
|
+
href="https://lobehub.com/zh/terms#fee-changes"
|
608
|
+
><span class="anticon" role="img"
|
609
|
+
><svg
|
610
|
+
xmlns="http://www.w3.org/2000/svg"
|
611
|
+
width="1em"
|
612
|
+
height="1em"
|
613
|
+
viewBox="0 0 24 24"
|
614
|
+
fill="transparent"
|
615
|
+
stroke="currentColor"
|
616
|
+
stroke-width="2"
|
617
|
+
stroke-linecap="round"
|
618
|
+
stroke-linejoin="round"
|
619
|
+
class="lucide lucide-heading2"
|
620
|
+
>
|
621
|
+
<path d="M4 12h8"></path>
|
622
|
+
<path d="M4 18V6"></path>
|
623
|
+
<path d="M12 18V6"></path>
|
624
|
+
<path d="M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1"></path></svg></span
|
625
|
+
></a>
|
626
|
+
</h2>
|
627
|
+
<p>
|
628
|
+
We reserve the right to adjust the Service fees at our discretion and at any time.
|
629
|
+
Any changes in fees will take effect immediately upon the change. Services that have
|
630
|
+
already been paid for and purchased will not be affected.
|
631
|
+
</p>
|
632
|
+
<p>
|
633
|
+
If Your order requires recurring automatic billing, the revised price will take
|
634
|
+
effect on the next billing cycle. We will notify You in advance of any fee
|
635
|
+
adjustments so that You have the opportunity to cancel the order before the
|
636
|
+
adjustment takes effect. If You do not cancel the order and continue to use the
|
637
|
+
Services, You agree to pay the revised fee amount.
|
638
|
+
</p>
|
639
|
+
<h2 class="acss-gnfwxu" style="color: #ffffff" id="refunds">
|
640
|
+
Refunds<a
|
641
|
+
aria-label="Permalink for this section"
|
642
|
+
class="acss-mujp7w"
|
643
|
+
style="scroll-margin-top: 96px"
|
644
|
+
href="https://lobehub.com/zh/terms#refunds"
|
645
|
+
><span class="anticon" role="img"
|
646
|
+
><svg
|
647
|
+
xmlns="http://www.w3.org/2000/svg"
|
648
|
+
width="1em"
|
649
|
+
height="1em"
|
650
|
+
viewBox="0 0 24 24"
|
651
|
+
fill="transparent"
|
652
|
+
stroke="currentColor"
|
653
|
+
stroke-width="2"
|
654
|
+
stroke-linecap="round"
|
655
|
+
stroke-linejoin="round"
|
656
|
+
class="lucide lucide-heading2"
|
657
|
+
>
|
658
|
+
<path d="M4 12h8"></path>
|
659
|
+
<path d="M4 18V6"></path>
|
660
|
+
<path d="M12 18V6"></path>
|
661
|
+
<path d="M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1"></path></svg></span
|
662
|
+
></a>
|
663
|
+
</h2>
|
664
|
+
<p>
|
665
|
+
For Services that have been purchased but not used, We support refunds within 30
|
666
|
+
days of payment. However, for Services that have been used or purchased for more
|
667
|
+
than 30 days, We will not accept refund requests.
|
668
|
+
</p>
|
669
|
+
<p>
|
670
|
+
For subscription-based Services where partial usage has occurred, Your refund
|
671
|
+
request will be reviewed on a case-by-case basis, and the final decision on
|
672
|
+
approving the refund will be at the Company's discretion.
|
673
|
+
</p>
|
674
|
+
<h2 class="acss-gnfwxu" style="color: #ffffff" id="content">
|
675
|
+
Content<a
|
676
|
+
aria-label="Permalink for this section"
|
677
|
+
class="acss-mujp7w"
|
678
|
+
style="scroll-margin-top: 96px"
|
679
|
+
href="https://lobehub.com/zh/terms#content"
|
680
|
+
><span class="anticon" role="img"
|
681
|
+
><svg
|
682
|
+
xmlns="http://www.w3.org/2000/svg"
|
683
|
+
width="1em"
|
684
|
+
height="1em"
|
685
|
+
viewBox="0 0 24 24"
|
686
|
+
fill="transparent"
|
687
|
+
stroke="currentColor"
|
688
|
+
stroke-width="2"
|
689
|
+
stroke-linecap="round"
|
690
|
+
stroke-linejoin="round"
|
691
|
+
class="lucide lucide-heading2"
|
692
|
+
>
|
693
|
+
<path d="M4 12h8"></path>
|
694
|
+
<path d="M4 18V6"></path>
|
695
|
+
<path d="M12 18V6"></path>
|
696
|
+
<path d="M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1"></path></svg></span
|
697
|
+
></a>
|
698
|
+
</h2>
|
699
|
+
<p>
|
700
|
+
Our Services allows You to generate and publish content. You are responsible for the
|
701
|
+
legality, reliability, and appropriateness of the content generated using the AI
|
702
|
+
ability. We do not assume responsibility for user-generated content on the Services.
|
703
|
+
You explicitly understand and agree that You are solely responsible for the content
|
704
|
+
You post and all activities conducted under Your account, whether by Yourself or by
|
705
|
+
third parties using Your account.
|
706
|
+
</p>
|
707
|
+
<p>
|
708
|
+
By generating and publishing content in the Services, You grant us the rights and
|
709
|
+
licenses necessary to use, modify, publicly perform, publicly display, copy, and
|
710
|
+
distribute such content within the Services. You retain full ownership of all
|
711
|
+
content created, published, or displayed within the Services and are responsible for
|
712
|
+
maintaining these rights. You agree that this license includes the permission for us
|
713
|
+
to provide Your content to other Service users for their use under these terms.
|
714
|
+
Additionally, You declare and warrant that: (1) the content is owned by You or You
|
715
|
+
have the legal right to use and authorize it to us under this agreement. (2) posting
|
716
|
+
the shared information in the Services will not infringe upon the privacy rights,
|
717
|
+
image rights, copyrights, contractual relationships, or other individual rights of
|
718
|
+
others.
|
719
|
+
</p>
|
720
|
+
<p>
|
721
|
+
All content generated by You is by default stored locally on the client-side, and
|
722
|
+
You are responsible for the storage and backup of Your content.
|
723
|
+
</p>
|
724
|
+
<p>
|
725
|
+
Additionally, We offer optional cloud sync content functionality. By using this
|
726
|
+
feature, You agree that We may retain complete and accurate copies of any content in
|
727
|
+
locations independent of the Services in our manner. However, We cannot guarantee
|
728
|
+
that data will not be lost or damaged. Data or content loss or damage can occur due
|
729
|
+
to various reasons, such as pre-existing damage before synchronization or changes
|
730
|
+
during synchronization.
|
731
|
+
</p>
|
732
|
+
<p>
|
733
|
+
We do not assume any responsibility for the security and integrity of content in the
|
734
|
+
event of content damage or loss under any circumstances.
|
735
|
+
</p>
|
736
|
+
<h2 class="acss-gnfwxu" style="color: #ffffff" id="intellectual-property-rights">
|
737
|
+
Intellectual Property Rights<a
|
738
|
+
aria-label="Permalink for this section"
|
739
|
+
class="acss-mujp7w"
|
740
|
+
style="scroll-margin-top: 96px"
|
741
|
+
href="https://lobehub.com/zh/terms#intellectual-property-rights"
|
742
|
+
><span class="anticon" role="img"
|
743
|
+
><svg
|
744
|
+
xmlns="http://www.w3.org/2000/svg"
|
745
|
+
width="1em"
|
746
|
+
height="1em"
|
747
|
+
viewBox="0 0 24 24"
|
748
|
+
fill="transparent"
|
749
|
+
stroke="currentColor"
|
750
|
+
stroke-width="2"
|
751
|
+
stroke-linecap="round"
|
752
|
+
stroke-linejoin="round"
|
753
|
+
class="lucide lucide-heading2"
|
754
|
+
>
|
755
|
+
<path d="M4 12h8"></path>
|
756
|
+
<path d="M4 18V6"></path>
|
757
|
+
<path d="M12 18V6"></path>
|
758
|
+
<path d="M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1"></path></svg></span
|
759
|
+
></a>
|
760
|
+
</h2>
|
761
|
+
<p>
|
762
|
+
LobeHub reserves all rights to the technology, software, first-party content, and
|
763
|
+
data within the Services, including but not limited to patents, trademarks, trade
|
764
|
+
secrets, copyrights, and other intellectual property rights. Your permission to use
|
765
|
+
the Services does not grant You any ownership or title. You are not permitted to
|
766
|
+
copy, modify, adapt, translate, create derivative works, reverse engineer,
|
767
|
+
disassemble, or decompile the Services or any part thereof. If You wish to
|
768
|
+
participate in collaborative technical development, please engage through our GitHub
|
769
|
+
open-source community and adhere to the relevant open-source licenses.
|
770
|
+
</p>
|
771
|
+
<h2 class="acss-gnfwxu" style="color: #ffffff" id="privacy-and-security">
|
772
|
+
Privacy and Security<a
|
773
|
+
aria-label="Permalink for this section"
|
774
|
+
class="acss-mujp7w"
|
775
|
+
style="scroll-margin-top: 96px"
|
776
|
+
href="https://lobehub.com/zh/terms#privacy-and-security"
|
777
|
+
><span class="anticon" role="img"
|
778
|
+
><svg
|
779
|
+
xmlns="http://www.w3.org/2000/svg"
|
780
|
+
width="1em"
|
781
|
+
height="1em"
|
782
|
+
viewBox="0 0 24 24"
|
783
|
+
fill="transparent"
|
784
|
+
stroke="currentColor"
|
785
|
+
stroke-width="2"
|
786
|
+
stroke-linecap="round"
|
787
|
+
stroke-linejoin="round"
|
788
|
+
class="lucide lucide-heading2"
|
789
|
+
>
|
790
|
+
<path d="M4 12h8"></path>
|
791
|
+
<path d="M4 18V6"></path>
|
792
|
+
<path d="M12 18V6"></path>
|
793
|
+
<path d="M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1"></path></svg></span
|
794
|
+
></a>
|
795
|
+
</h2>
|
796
|
+
<p>
|
797
|
+
LobeHub employs industry-standard technical, managerial, and physical security
|
798
|
+
measures to protect the security, confidentiality, and integrity of Your data.
|
799
|
+
However, We cannot guarantee that unauthorized access, hacking attacks, data loss,
|
800
|
+
or other breaches will never occur. LobeHub is not liable for any damages or
|
801
|
+
liabilities related to security incidents. Please refer to our Privacy Policy for
|
802
|
+
more detailed information.
|
803
|
+
</p>
|
804
|
+
<h2 class="acss-gnfwxu" style="color: #ffffff" id="termination-of-services">
|
805
|
+
Termination of Services<a
|
806
|
+
aria-label="Permalink for this section"
|
807
|
+
class="acss-mujp7w"
|
808
|
+
style="scroll-margin-top: 96px"
|
809
|
+
href="https://lobehub.com/zh/terms#termination-of-services"
|
810
|
+
><span class="anticon" role="img"
|
811
|
+
><svg
|
812
|
+
xmlns="http://www.w3.org/2000/svg"
|
813
|
+
width="1em"
|
814
|
+
height="1em"
|
815
|
+
viewBox="0 0 24 24"
|
816
|
+
fill="transparent"
|
817
|
+
stroke="currentColor"
|
818
|
+
stroke-width="2"
|
819
|
+
stroke-linecap="round"
|
820
|
+
stroke-linejoin="round"
|
821
|
+
class="lucide lucide-heading2"
|
822
|
+
>
|
823
|
+
<path d="M4 12h8"></path>
|
824
|
+
<path d="M4 18V6"></path>
|
825
|
+
<path d="M12 18V6"></path>
|
826
|
+
<path d="M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1"></path></svg></span
|
827
|
+
></a>
|
828
|
+
</h2>
|
829
|
+
<p>
|
830
|
+
You may close Your account and cease using the Services at any time. In the event of
|
831
|
+
a violation of the terms of the agreement, LobeHub may immediately suspend or
|
832
|
+
terminate Your access to the Services. Upon termination, You will immediately lose
|
833
|
+
the right to access or use the Services. LobeHub will not be liable to You or any
|
834
|
+
third party for the termination of the Services.
|
835
|
+
</p>
|
836
|
+
<h2 class="acss-gnfwxu" style="color: #ffffff" id="disclaimer-of-warranties">
|
837
|
+
Disclaimer of Warranties<a
|
838
|
+
aria-label="Permalink for this section"
|
839
|
+
class="acss-mujp7w"
|
840
|
+
style="scroll-margin-top: 96px"
|
841
|
+
href="https://lobehub.com/zh/terms#disclaimer-of-warranties"
|
842
|
+
><span class="anticon" role="img"
|
843
|
+
><svg
|
844
|
+
xmlns="http://www.w3.org/2000/svg"
|
845
|
+
width="1em"
|
846
|
+
height="1em"
|
847
|
+
viewBox="0 0 24 24"
|
848
|
+
fill="transparent"
|
849
|
+
stroke="currentColor"
|
850
|
+
stroke-width="2"
|
851
|
+
stroke-linecap="round"
|
852
|
+
stroke-linejoin="round"
|
853
|
+
class="lucide lucide-heading2"
|
854
|
+
>
|
855
|
+
<path d="M4 12h8"></path>
|
856
|
+
<path d="M4 18V6"></path>
|
857
|
+
<path d="M12 18V6"></path>
|
858
|
+
<path d="M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1"></path></svg></span
|
859
|
+
></a>
|
860
|
+
</h2>
|
861
|
+
<p>
|
862
|
+
The Services provided by LobeHub are provided on an "as-is" basis, and without any
|
863
|
+
form of guarantee. We explicitly disclaim all warranties, whether express, implied,
|
864
|
+
statutory, or otherwise, including but not limited to warranties of merchantability,
|
865
|
+
fitness for a particular purpose, and non-infringement. Your use of the Services is
|
866
|
+
at Your own risk.
|
867
|
+
</p>
|
868
|
+
<h2 class="acss-gnfwxu" style="color: #ffffff" id="limitation-of-liability">
|
869
|
+
Limitation of Liability<a
|
870
|
+
aria-label="Permalink for this section"
|
871
|
+
class="acss-mujp7w"
|
872
|
+
style="scroll-margin-top: 96px"
|
873
|
+
href="https://lobehub.com/zh/terms#limitation-of-liability"
|
874
|
+
><span class="anticon" role="img"
|
875
|
+
><svg
|
876
|
+
xmlns="http://www.w3.org/2000/svg"
|
877
|
+
width="1em"
|
878
|
+
height="1em"
|
879
|
+
viewBox="0 0 24 24"
|
880
|
+
fill="transparent"
|
881
|
+
stroke="currentColor"
|
882
|
+
stroke-width="2"
|
883
|
+
stroke-linecap="round"
|
884
|
+
stroke-linejoin="round"
|
885
|
+
class="lucide lucide-heading2"
|
886
|
+
>
|
887
|
+
<path d="M4 12h8"></path>
|
888
|
+
<path d="M4 18V6"></path>
|
889
|
+
<path d="M12 18V6"></path>
|
890
|
+
<path d="M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1"></path></svg></span
|
891
|
+
></a>
|
892
|
+
</h2>
|
893
|
+
<p>
|
894
|
+
In no event shall LobeHub, its Affiliates, directors, employees, or agents be liable
|
895
|
+
for any direct, indirect, punitive, incidental, special, or consequential damages
|
896
|
+
arising from or related to Your use or inability to use the Services. This
|
897
|
+
limitation applies regardless of the basis or form of action.
|
898
|
+
</p>
|
899
|
+
<h2 class="acss-gnfwxu" style="color: #ffffff" id="modification-of-terms">
|
900
|
+
Modification of Terms<a
|
901
|
+
aria-label="Permalink for this section"
|
902
|
+
class="acss-mujp7w"
|
903
|
+
style="scroll-margin-top: 96px"
|
904
|
+
href="https://lobehub.com/zh/terms#modification-of-terms"
|
905
|
+
><span class="anticon" role="img"
|
906
|
+
><svg
|
907
|
+
xmlns="http://www.w3.org/2000/svg"
|
908
|
+
width="1em"
|
909
|
+
height="1em"
|
910
|
+
viewBox="0 0 24 24"
|
911
|
+
fill="transparent"
|
912
|
+
stroke="currentColor"
|
913
|
+
stroke-width="2"
|
914
|
+
stroke-linecap="round"
|
915
|
+
stroke-linejoin="round"
|
916
|
+
class="lucide lucide-heading2"
|
917
|
+
>
|
918
|
+
<path d="M4 12h8"></path>
|
919
|
+
<path d="M4 18V6"></path>
|
920
|
+
<path d="M12 18V6"></path>
|
921
|
+
<path d="M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1"></path></svg></span
|
922
|
+
></a>
|
923
|
+
</h2>
|
924
|
+
<p>
|
925
|
+
We may revise this agreement periodically, and the new version of the agreement will
|
926
|
+
replace the previous version. We will indicate the "last updated" date at the
|
927
|
+
beginning and provide notice within the Services to inform You of significant
|
928
|
+
changes. It is Your responsibility to regularly review these legal terms to stay
|
929
|
+
informed of any updates. By continuing to use the Services after the revised legal
|
930
|
+
terms are posted, You will be deemed to have understood and accepted any changes to
|
931
|
+
the revised legal terms.
|
932
|
+
</p>
|
933
|
+
<h2 class="acss-gnfwxu" style="color: #ffffff" id="governing-law-and-jurisdiction">
|
934
|
+
Governing Law and Jurisdiction<a
|
935
|
+
aria-label="Permalink for this section"
|
936
|
+
class="acss-mujp7w"
|
937
|
+
style="scroll-margin-top: 96px"
|
938
|
+
href="https://lobehub.com/zh/terms#governing-law-and-jurisdiction"
|
939
|
+
><span class="anticon" role="img"
|
940
|
+
><svg
|
941
|
+
xmlns="http://www.w3.org/2000/svg"
|
942
|
+
width="1em"
|
943
|
+
height="1em"
|
944
|
+
viewBox="0 0 24 24"
|
945
|
+
fill="transparent"
|
946
|
+
stroke="currentColor"
|
947
|
+
stroke-width="2"
|
948
|
+
stroke-linecap="round"
|
949
|
+
stroke-linejoin="round"
|
950
|
+
class="lucide lucide-heading2"
|
951
|
+
>
|
952
|
+
<path d="M4 12h8"></path>
|
953
|
+
<path d="M4 18V6"></path>
|
954
|
+
<path d="M12 18V6"></path>
|
955
|
+
<path d="M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1"></path></svg></span
|
956
|
+
></a>
|
957
|
+
</h2>
|
958
|
+
<p>
|
959
|
+
This agreement shall be governed by the laws of the State of Delaware, and You agree
|
960
|
+
to submit to the exclusive jurisdiction of the state and federal courts located in
|
961
|
+
Delaware for the resolution of any disputes related to this agreement or the
|
962
|
+
Services. You may also be required to comply with the laws of Your local
|
963
|
+
jurisdiction, state, country, or international laws when using the Services.
|
964
|
+
</p>
|
965
|
+
<h2 class="acss-gnfwxu" style="color: #ffffff" id="conclusion">
|
966
|
+
Conclusion<a
|
967
|
+
aria-label="Permalink for this section"
|
968
|
+
class="acss-mujp7w"
|
969
|
+
style="scroll-margin-top: 96px"
|
970
|
+
href="https://lobehub.com/zh/terms#conclusion"
|
971
|
+
><span class="anticon" role="img"
|
972
|
+
><svg
|
973
|
+
xmlns="http://www.w3.org/2000/svg"
|
974
|
+
width="1em"
|
975
|
+
height="1em"
|
976
|
+
viewBox="0 0 24 24"
|
977
|
+
fill="transparent"
|
978
|
+
stroke="currentColor"
|
979
|
+
stroke-width="2"
|
980
|
+
stroke-linecap="round"
|
981
|
+
stroke-linejoin="round"
|
982
|
+
class="lucide lucide-heading2"
|
983
|
+
>
|
984
|
+
<path d="M4 12h8"></path>
|
985
|
+
<path d="M4 18V6"></path>
|
986
|
+
<path d="M12 18V6"></path>
|
987
|
+
<path d="M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1"></path></svg></span
|
988
|
+
></a>
|
989
|
+
</h2>
|
990
|
+
<p>
|
991
|
+
This agreement represents the entire agreement between You and LobeHub regarding the
|
992
|
+
use of the Services. It supersedes any prior agreements or understandings. The
|
993
|
+
failure of LobeHub to enforce any provision of this agreement does not constitute a
|
994
|
+
waiver of its rights.
|
995
|
+
</p>
|
996
|
+
<p>
|
997
|
+
By accessing or using the LobeHub Services, You acknowledge that You have read,
|
998
|
+
understood, and agreed to be bound by this agreement. If You have any questions
|
999
|
+
regarding this agreement, please contact us at
|
1000
|
+
<a href="mailto:support@lobehub.com">support@lobehub.com</a>.
|
1001
|
+
</p>
|
1002
|
+
</article>
|
1003
|
+
</div>
|
1004
|
+
</div>
|
1005
|
+
</section>
|
1006
|
+
<section class="layoutkit-center css-6bn2af acss-rwgu8t">
|
1007
|
+
<footer style="max-width: 1200px" class="layoutkit-flexbox css-1kmykti acss-lehtwo">
|
1008
|
+
<div style="row-gap: 2em; width: 100%" class="layoutkit-flexbox css-15l7r2q acss-1lwp25x">
|
1009
|
+
<div style="grid-column: span 3" class="layoutkit-flexbox css-1ktd0ak">
|
1010
|
+
<a class="acss-1catl59" href="https://lobehub.com/">
|
1011
|
+
<div class="layoutkit-flexbox css-19yht21">
|
1012
|
+
<img
|
1013
|
+
alt="LobeChat"
|
1014
|
+
loading="lazy"
|
1015
|
+
width="32"
|
1016
|
+
height="32"
|
1017
|
+
decoding="async"
|
1018
|
+
data-nimg="1"
|
1019
|
+
style="color: transparent"
|
1020
|
+
src="./Terms of Service · LobeHub_files/logo-3d.webp"
|
1021
|
+
/>
|
1022
|
+
<svg
|
1023
|
+
fill="currentColor"
|
1024
|
+
fill-rule="evenodd"
|
1025
|
+
height="32"
|
1026
|
+
style="flex: none; line-height: 1; margin-left: 8px"
|
1027
|
+
viewBox="0 0 940 320"
|
1028
|
+
xmlns="http://www.w3.org/2000/svg"
|
1029
|
+
>
|
1030
|
+
<title>LobeHub</title>
|
1031
|
+
<path
|
1032
|
+
d="M15 240.035V87.172h39.24V205.75h66.192v34.285H15zM183.731 242c-11.759 0-22.196-2.621-31.313-7.862-9.116-5.241-16.317-12.447-21.601-21.619-5.153-9.317-7.729-19.945-7.729-31.883 0-11.937 2.576-22.492 7.729-31.664 5.164-8.963 12.159-15.98 20.982-21.05l.619-.351c9.117-5.241 19.554-7.861 31.313-7.861s22.196 2.62 31.313 7.861c9.248 5.096 16.449 12.229 21.601 21.401 5.153 9.172 7.729 19.727 7.729 31.664 0 11.938-2.576 22.566-7.729 31.883-5.152 9.172-12.353 16.378-21.601 21.619-9.117 5.241-19.554 7.862-31.313 7.862zm0-32.975c4.36 0 8.191-1.092 11.494-3.275 3.436-2.184 6.144-5.387 8.126-9.609 1.982-4.367 2.973-9.536 2.973-15.505 0-5.968-.991-10.991-2.973-15.067-1.906-4.06-4.483-7.177-7.733-9.352l-.393-.257c-3.303-2.184-7.134-3.276-11.494-3.276-4.228 0-8.059 1.092-11.495 3.276-3.303 2.184-6.011 5.387-8.125 9.609-1.982 4.076-2.973 9.099-2.973 15.067 0 5.969.991 11.138 2.973 15.505 2.114 4.222 4.822 7.425 8.125 9.609 3.436 2.183 7.267 3.275 11.495 3.275zM295.508 78l-.001 54.042a34.071 34.071 0 016.541-5.781c6.474-4.367 14.269-6.551 23.385-6.551 9.777 0 18.629 2.475 26.557 7.424 7.872 4.835 14.105 11.684 18.7 20.546l.325.637c4.756 9.026 7.135 19.799 7.135 32.319 0 12.666-2.379 23.585-7.135 32.757-4.624 9.026-10.966 16.087-19.025 21.182-7.928 4.95-16.78 7.425-26.557 7.425-9.644 0-17.704-2.184-24.178-6.551-2.825-1.946-5.336-4.355-7.532-7.226l.001 11.812h-35.87V78h37.654zm21.998 74.684c-4.228 0-8.059 1.092-11.494 3.276-3.303 2.184-6.012 5.387-8.126 9.609-1.982 4.076-2.972 9.099-2.972 15.067 0 5.969.99 11.138 2.972 15.505 2.114 4.222 4.823 7.425 8.126 9.609 3.435 2.183 7.266 3.275 11.494 3.275s7.994-1.092 11.297-3.275c3.435-2.184 6.143-5.387 8.125-9.609 2.114-4.367 3.171-9.536 3.171-15.505 0-5.968-1.057-10.991-3.171-15.067-1.906-4.06-4.483-7.177-7.732-9.352l-.393-.257c-3.303-2.184-7.069-3.276-11.297-3.276zm105.335 38.653l.084.337a27.857 27.857 0 002.057 5.559c2.246 4.222 5.417 7.498 9.513 9.827 4.096 2.184 8.984 3.276 14.665 3.276 5.285 0 9.777-.801 13.477-2.403 3.579-1.632 7.1-4.025 10.564-7.182l.732-.679 19.818 22.711c-5.153 6.26-11.494 11.064-19.025 14.413-7.531 3.203-16.449 4.804-26.755 4.804-12.683 0-23.782-2.621-33.294-7.862-9.381-5.386-16.713-12.665-21.998-21.837-5.153-9.317-7.729-19.872-7.729-31.665 0-11.792 2.51-22.274 7.53-31.446 5.036-9.105 11.902-16.195 20.596-21.268l.61-.351c8.984-5.241 19.091-7.861 30.322-7.861 10.311 0 19.743 2.286 28.294 6.859l.64.347c8.72 4.659 15.656 11.574 20.809 20.746 5.153 9.172 7.729 20.309 7.729 33.411 0 1.294-.052 2.761-.156 4.4l-.042.623-.17 2.353c-.075 1.01-.151 1.973-.227 2.888h-78.044zm21.365-42.147c-4.492 0-8.456 1.092-11.891 3.276-3.303 2.184-5.879 5.314-7.729 9.39a26.04 26.04 0 00-1.117 2.79 30.164 30.164 0 00-1.121 4.499l-.058.354h43.96l-.015-.106c-.401-2.638-1.122-5.055-2.163-7.252l-.246-.503c-1.776-3.774-4.282-6.742-7.519-8.906l-.409-.266c-3.303-2.184-7.2-3.276-11.692-3.276zm111.695-62.018l-.001 57.432h53.51V87.172h39.24v152.863h-39.24v-59.617H555.9l.001 59.617h-39.24V87.172h39.24zM715.766 242c-8.72 0-16.581-1.893-23.583-5.678-6.87-3.785-12.287-9.681-16.251-17.688-3.832-8.153-5.747-18.417-5.747-30.791v-66.168h37.654v59.398c0 9.172 1.519 15.723 4.558 19.654 3.171 3.931 7.597 5.896 13.278 5.896 3.7 0 7.069-.946 10.108-2.839 3.038-1.892 5.483-4.877 7.332-8.953 1.85-4.222 2.775-9.609 2.775-16.16v-56.996h37.654v118.36h-35.871l.004-12.38c-2.642 3.197-5.682 5.868-9.12 8.012-7.002 4.222-14.599 6.333-22.791 6.333zM841.489 78l-.001 54.041a34.1 34.1 0 016.541-5.78c6.474-4.367 14.269-6.551 23.385-6.551 9.777 0 18.629 2.475 26.556 7.424 7.873 4.835 14.106 11.684 18.701 20.546l.325.637c4.756 9.026 7.134 19.799 7.134 32.319 0 12.666-2.378 23.585-7.134 32.757-4.624 9.026-10.966 16.087-19.026 21.182-7.927 4.95-16.779 7.425-26.556 7.425-9.645 0-17.704-2.184-24.178-6.551-2.825-1.946-5.336-4.354-7.531-7.224v11.81h-35.87V78h37.654zm21.998 74.684c-4.228 0-8.059 1.092-11.495 3.276-3.303 2.184-6.011 5.387-8.125 9.609-1.982 4.076-2.973 9.099-2.973 15.067 0 5.969.991 11.138 2.973 15.505 2.114 4.222 4.822 7.425 8.125 9.609 3.436 2.183 7.267 3.275 11.495 3.275 4.228 0 7.993-1.092 11.296-3.275 3.435-2.184 6.144-5.387 8.126-9.609 2.114-4.367 3.171-9.536 3.171-15.505 0-5.968-1.057-10.991-3.171-15.067-1.906-4.06-4.484-7.177-7.733-9.352l-.393-.257c-3.303-2.184-7.068-3.276-11.296-3.276z"
|
1033
|
+
></path>
|
1034
|
+
</svg>
|
1035
|
+
</div>
|
1036
|
+
</a>
|
1037
|
+
<div>Empowering your AI dreams</div>
|
1038
|
+
<div class="acss-1fz4sx9">© 2023-2025 LobeHub, LLC</div>
|
1039
|
+
<div class="layoutkit-flexbox css-bna3mm">
|
1040
|
+
<a target="_blank" href="https://github.com/lobehub/lobe-chat">
|
1041
|
+
<div
|
1042
|
+
style="border-radius: 5px; height: 36px; width: 36px"
|
1043
|
+
aria-describedby=":Rorniiqdfb:"
|
1044
|
+
class="layoutkit-flexbox css-5wokcq acss-185jm3c"
|
1045
|
+
>
|
1046
|
+
<span class="anticon acss-17q14cp" role="img"
|
1047
|
+
><svg
|
1048
|
+
xmlns="http://www.w3.org/2000/svg"
|
1049
|
+
width="20"
|
1050
|
+
height="20"
|
1051
|
+
fill="transparent"
|
1052
|
+
viewBox="0 0 24 24"
|
1053
|
+
stroke-width="2"
|
1054
|
+
>
|
1055
|
+
<title>GitHub</title>
|
1056
|
+
<path
|
1057
|
+
d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"
|
1058
|
+
></path></svg
|
1059
|
+
></span>
|
1060
|
+
</div> </a
|
1061
|
+
><a target="_blank" href="https://x.com/lobehub">
|
1062
|
+
<div
|
1063
|
+
style="border-radius: 5px; height: 36px; width: 36px"
|
1064
|
+
aria-describedby=":R18rniiqdfb:"
|
1065
|
+
class="layoutkit-flexbox css-5wokcq acss-185jm3c"
|
1066
|
+
>
|
1067
|
+
<span class="anticon acss-17q14cp" role="img"
|
1068
|
+
><svg
|
1069
|
+
xmlns="http://www.w3.org/2000/svg"
|
1070
|
+
width="20"
|
1071
|
+
height="20"
|
1072
|
+
fill="transparent"
|
1073
|
+
viewBox="0 0 24 24"
|
1074
|
+
stroke-width="2"
|
1075
|
+
>
|
1076
|
+
<title>X</title>
|
1077
|
+
<path
|
1078
|
+
d="M18.901 1.153h3.68l-8.04 9.19L24 22.846h-7.406l-5.8-7.584-6.638 7.584H.474l8.6-9.83L0 1.154h7.594l5.243 6.932ZM17.61 20.644h2.039L6.486 3.24H4.298Z"
|
1079
|
+
></path></svg
|
1080
|
+
></span>
|
1081
|
+
</div> </a
|
1082
|
+
><a target="_blank" href="https://discord.gg/AYFPHvv2jT">
|
1083
|
+
<div
|
1084
|
+
style="border-radius: 5px; height: 36px; width: 36px"
|
1085
|
+
aria-describedby=":R1orniiqdfb:"
|
1086
|
+
class="layoutkit-flexbox css-5wokcq acss-185jm3c"
|
1087
|
+
>
|
1088
|
+
<span class="anticon acss-17q14cp" role="img"
|
1089
|
+
><svg
|
1090
|
+
xmlns="http://www.w3.org/2000/svg"
|
1091
|
+
width="20"
|
1092
|
+
height="20"
|
1093
|
+
fill="transparent"
|
1094
|
+
viewBox="0 0 24 24"
|
1095
|
+
stroke-width="2"
|
1096
|
+
>
|
1097
|
+
<title>Discord</title>
|
1098
|
+
<path
|
1099
|
+
d="M20.317 4.3698a19.7913 19.7913 0 00-4.8851-1.5152.0741.0741 0 00-.0785.0371c-.211.3753-.4447.8648-.6083 1.2495-1.8447-.2762-3.68-.2762-5.4868 0-.1636-.3933-.4058-.8742-.6177-1.2495a.077.077 0 00-.0785-.037 19.7363 19.7363 0 00-4.8852 1.515.0699.0699 0 00-.0321.0277C.5334 9.0458-.319 13.5799.0992 18.0578a.0824.0824 0 00.0312.0561c2.0528 1.5076 4.0413 2.4228 5.9929 3.0294a.0777.0777 0 00.0842-.0276c.4616-.6304.8731-1.2952 1.226-1.9942a.076.076 0 00-.0416-.1057c-.6528-.2476-1.2743-.5495-1.8722-.8923a.077.077 0 01-.0076-.1277c.1258-.0943.2517-.1923.3718-.2914a.0743.0743 0 01.0776-.0105c3.9278 1.7933 8.18 1.7933 12.0614 0a.0739.0739 0 01.0785.0095c.1202.099.246.1981.3728.2924a.077.077 0 01-.0066.1276 12.2986 12.2986 0 01-1.873.8914.0766.0766 0 00-.0407.1067c.3604.698.7719 1.3628 1.225 1.9932a.076.076 0 00.0842.0286c1.961-.6067 3.9495-1.5219 6.0023-3.0294a.077.077 0 00.0313-.0552c.5004-5.177-.8382-9.6739-3.5485-13.6604a.061.061 0 00-.0312-.0286zM8.02 15.3312c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9555-2.4189 2.157-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.9555 2.4189-2.1569 2.4189zm7.9748 0c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9554-2.4189 2.1569-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.946 2.4189-2.1568 2.4189Z"
|
1100
|
+
></path></svg
|
1101
|
+
></span>
|
1102
|
+
</div> </a
|
1103
|
+
><a target="_blank" href="https://medium.com/@lobehub">
|
1104
|
+
<div
|
1105
|
+
style="border-radius: 5px; height: 36px; width: 36px"
|
1106
|
+
aria-describedby=":R28rniiqdfb:"
|
1107
|
+
class="layoutkit-flexbox css-5wokcq acss-185jm3c"
|
1108
|
+
>
|
1109
|
+
<span class="anticon acss-17q14cp" role="img"
|
1110
|
+
><svg
|
1111
|
+
xmlns="http://www.w3.org/2000/svg"
|
1112
|
+
width="20"
|
1113
|
+
height="20"
|
1114
|
+
fill="transparent"
|
1115
|
+
viewBox="0 0 24 24"
|
1116
|
+
stroke-width="2"
|
1117
|
+
>
|
1118
|
+
<title>Medium</title>
|
1119
|
+
<path
|
1120
|
+
d="M4.21 0A4.201 4.201 0 0 0 0 4.21v15.58A4.201 4.201 0 0 0 4.21 24h15.58A4.201 4.201 0 0 0 24 19.79v-1.093c-.137.013-.278.02-.422.02-2.577 0-4.027-2.146-4.09-4.832a7.592 7.592 0 0 1 .022-.708c.093-1.186.475-2.241 1.105-3.022a3.885 3.885 0 0 1 1.395-1.1c.468-.237 1.127-.367 1.664-.367h.023c.101 0 .202.004.303.01V4.211A4.201 4.201 0 0 0 19.79 0Zm.198 5.583h4.165l3.588 8.435 3.59-8.435h3.864v.146l-.019.004c-.705.16-1.063.397-1.063 1.254h-.003l.003 10.274c.06.676.424.885 1.063 1.03l.02.004v.145h-4.923v-.145l.019-.005c.639-.144.994-.353 1.054-1.03V7.267l-4.745 11.15h-.261L6.15 7.569v9.445c0 .857.358 1.094 1.063 1.253l.02.004v.147H4.405v-.147l.019-.004c.705-.16 1.065-.397 1.065-1.253V6.987c0-.857-.358-1.094-1.064-1.254l-.018-.004zm19.25 3.668c-1.086.023-1.733 1.323-1.813 3.124H24V9.298a1.378 1.378 0 0 0-.342-.047Zm-1.862 3.632c-.1 1.756.86 3.239 2.204 3.634v-3.634z"
|
1121
|
+
></path></svg
|
1122
|
+
></span>
|
1123
|
+
</div>
|
1124
|
+
</a>
|
1125
|
+
</div>
|
1126
|
+
<iframe
|
1127
|
+
class="acss-10t8tdl"
|
1128
|
+
height="30"
|
1129
|
+
loading="lazy"
|
1130
|
+
scrolling="no"
|
1131
|
+
src="./Terms of Service · LobeHub_files/badge.html"
|
1132
|
+
width="250"
|
1133
|
+
></iframe>
|
1134
|
+
</div>
|
1135
|
+
<div style="grid-column: span 2" class="layoutkit-flexbox css-1ktd0ak">
|
1136
|
+
<div class="acss-1vlx27s">Product</div>
|
1137
|
+
<div class="layoutkit-flexbox css-fr78qt acss-1wnppbc">
|
1138
|
+
<a
|
1139
|
+
target="_blank"
|
1140
|
+
href="https://github.com/lobehub/lobe-chat/blob/main/CHANGELOG.md"
|
1141
|
+
>
|
1142
|
+
<div class="layoutkit-flexbox css-1109xs8">What’s New</div> </a
|
1143
|
+
><a href="https://lobehub.com/pricing">
|
1144
|
+
<div class="layoutkit-flexbox css-1109xs8">Pricing and Plans</div> </a
|
1145
|
+
><a href="https://lobehub.com/assistants">
|
1146
|
+
<div class="layoutkit-flexbox css-1109xs8">Assistant Market</div> </a
|
1147
|
+
><a href="https://lobehub.com/plugins">
|
1148
|
+
<div class="layoutkit-flexbox css-1109xs8">Plugin Market</div> </a
|
1149
|
+
><a target="_blank" href="https://github.com/lobehub/lobe-chat">
|
1150
|
+
<div class="layoutkit-flexbox css-1109xs8">Community Edition</div>
|
1151
|
+
</a>
|
1152
|
+
</div>
|
1153
|
+
</div>
|
1154
|
+
<div style="grid-column: span 2" class="layoutkit-flexbox css-1ktd0ak">
|
1155
|
+
<div class="acss-1vlx27s">Features</div>
|
1156
|
+
<div class="layoutkit-flexbox css-fr78qt acss-1wnppbc">
|
1157
|
+
<a href="https://lobehub.com/features">
|
1158
|
+
<div class="layoutkit-flexbox css-1109xs8">Features Overview</div> </a
|
1159
|
+
><a href="https://lobehub.com/blog/lobechat-vs-chatgpt-plus">
|
1160
|
+
<div class="layoutkit-flexbox css-1109xs8">LobeChat vs. ChatGPT</div> </a
|
1161
|
+
><a href="https://lobehub.com/blog/lobechat-vs-poe">
|
1162
|
+
<div class="layoutkit-flexbox css-1109xs8">LobeChat vs. Poe</div>
|
1163
|
+
</a>
|
1164
|
+
</div>
|
1165
|
+
</div>
|
1166
|
+
<div style="grid-column: span 2" class="layoutkit-flexbox css-1ktd0ak">
|
1167
|
+
<div class="acss-1vlx27s">Resources</div>
|
1168
|
+
<div class="layoutkit-flexbox css-fr78qt acss-1wnppbc">
|
1169
|
+
<a href="https://lobehub.com/blog">
|
1170
|
+
<div class="layoutkit-flexbox css-1109xs8">Blog</div> </a
|
1171
|
+
><a href="https://lobehub.com/icons">
|
1172
|
+
<div class="layoutkit-flexbox css-1109xs8">AI / LLM Icons</div> </a
|
1173
|
+
><a href="https://lobehub.com/docs">
|
1174
|
+
<div class="layoutkit-flexbox css-1109xs8">Quick Start</div> </a
|
1175
|
+
><a target="_blank" href="https://github.com/lobehub/lobe-chat/wiki">
|
1176
|
+
<div class="layoutkit-flexbox css-1109xs8">Developer Handoff</div> </a
|
1177
|
+
><a target="_blank" href="https://github.com/lobehub/lobe-chat/issues">
|
1178
|
+
<div class="layoutkit-flexbox css-1109xs8">Feedback</div>
|
1179
|
+
</a>
|
1180
|
+
</div>
|
1181
|
+
</div>
|
1182
|
+
<div style="grid-column: span 2" class="layoutkit-flexbox css-1ktd0ak">
|
1183
|
+
<div class="acss-1vlx27s">Open Source</div>
|
1184
|
+
<div class="layoutkit-flexbox css-fr78qt acss-1wnppbc">
|
1185
|
+
<a target="_blank" href="https://github.com/lobehub/lobe-chat">
|
1186
|
+
<div class="layoutkit-flexbox css-1109xs8">🤯 Lobe Chat</div> </a
|
1187
|
+
><a target="_blank" href="https://github.com/lobehub/sd-webui-lobe-theme">
|
1188
|
+
<div class="layoutkit-flexbox css-1109xs8">🅰️ Lobe Theme</div> </a
|
1189
|
+
><a
|
1190
|
+
target="_blank"
|
1191
|
+
href="https://github.com/lobehub/lobe-cli-toolbox/tree/master/packages/lobe-i18n"
|
1192
|
+
>
|
1193
|
+
<div class="layoutkit-flexbox css-1109xs8">🌏 Lobe i18n</div> </a
|
1194
|
+
><a target="_blank" href="https://github.com/lobehub/lobe-ui">
|
1195
|
+
<div class="layoutkit-flexbox css-1109xs8">🍭 Lobe UI</div> </a
|
1196
|
+
><a target="_blank" href="https://github.com/lobehub/lobe-icons">
|
1197
|
+
<div class="layoutkit-flexbox css-1109xs8">🥨 Lobe Icons</div> </a
|
1198
|
+
><a target="_blank" href="https://github.com/lobehub/lobe-tts">
|
1199
|
+
<div class="layoutkit-flexbox css-1109xs8">🎤 Lobe TTS</div>
|
1200
|
+
</a>
|
1201
|
+
</div>
|
1202
|
+
</div>
|
1203
|
+
<div style="grid-column: span 2" class="layoutkit-flexbox css-1ktd0ak">
|
1204
|
+
<div class="acss-1vlx27s">Company</div>
|
1205
|
+
<div class="layoutkit-flexbox css-fr78qt acss-1wnppbc">
|
1206
|
+
<a target="_blank" href="https://github.com/lobehub">
|
1207
|
+
<div class="layoutkit-flexbox css-1109xs8">About Us</div> </a
|
1208
|
+
><a href="https://lobehub.com/terms">
|
1209
|
+
<div class="layoutkit-flexbox css-1109xs8">Terms of Service</div> </a
|
1210
|
+
><a href="https://lobehub.com/privacy">
|
1211
|
+
<div class="layoutkit-flexbox css-1109xs8">Privacy Policy</div> </a
|
1212
|
+
><a target="_blank" href="mailto:hello@lobehub.com">
|
1213
|
+
<div class="layoutkit-flexbox css-1109xs8">Contact</div>
|
1214
|
+
</a>
|
1215
|
+
</div>
|
1216
|
+
</div>
|
1217
|
+
</div>
|
1218
|
+
</footer>
|
1219
|
+
</section>
|
1220
|
+
</div>
|
1221
|
+
</body>
|
1222
|
+
</html>
|