@lobehub/chat 1.134.6 → 1.135.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 +58 -0
- package/changelog/v1.json +18 -0
- package/docs/development/basic/feature-development-frontend.zh-CN.mdx +1 -1
- package/docs/development/basic/folder-structure.mdx +67 -16
- package/docs/development/basic/folder-structure.zh-CN.mdx +67 -16
- package/locales/ar/modelProvider.json +15 -0
- package/locales/ar/models.json +3 -0
- package/locales/bg-BG/modelProvider.json +15 -0
- package/locales/bg-BG/models.json +3 -0
- package/locales/de-DE/modelProvider.json +15 -0
- package/locales/de-DE/models.json +3 -0
- package/locales/en-US/modelProvider.json +15 -0
- package/locales/en-US/models.json +3 -0
- package/locales/es-ES/modelProvider.json +15 -0
- package/locales/es-ES/models.json +3 -0
- package/locales/fa-IR/modelProvider.json +15 -0
- package/locales/fa-IR/models.json +3 -0
- package/locales/fr-FR/modelProvider.json +15 -0
- package/locales/fr-FR/models.json +3 -0
- package/locales/it-IT/modelProvider.json +15 -0
- package/locales/it-IT/models.json +3 -0
- package/locales/ja-JP/modelProvider.json +15 -0
- package/locales/ja-JP/models.json +3 -0
- package/locales/ko-KR/modelProvider.json +15 -0
- package/locales/ko-KR/models.json +3 -0
- package/locales/nl-NL/modelProvider.json +15 -0
- package/locales/nl-NL/models.json +3 -0
- package/locales/pl-PL/modelProvider.json +15 -0
- package/locales/pl-PL/models.json +3 -0
- package/locales/pt-BR/modelProvider.json +15 -0
- package/locales/pt-BR/models.json +3 -0
- package/locales/ru-RU/modelProvider.json +15 -0
- package/locales/ru-RU/models.json +3 -0
- package/locales/tr-TR/modelProvider.json +15 -0
- package/locales/tr-TR/models.json +3 -0
- package/locales/vi-VN/modelProvider.json +15 -0
- package/locales/vi-VN/models.json +3 -0
- package/locales/zh-CN/modelProvider.json +15 -0
- package/locales/zh-CN/models.json +3 -0
- package/locales/zh-TW/modelProvider.json +15 -0
- package/locales/zh-TW/models.json +3 -0
- package/package.json +1 -1
- package/packages/model-bank/src/aiModels/fal.ts +28 -0
- package/packages/model-runtime/src/core/openaiCompatibleFactory/createImage.ts +16 -27
- package/packages/model-runtime/src/core/openaiCompatibleFactory/index.test.ts +51 -11
- package/packages/model-runtime/src/core/streams/protocol.ts +2 -15
- package/packages/model-runtime/src/providers/azureOpenai/index.ts +5 -1
- package/packages/model-runtime/src/providers/azureai/index.ts +5 -1
- package/packages/model-runtime/src/providers/fal/index.ts +12 -7
- package/packages/model-runtime/src/providers/newapi/index.test.ts +28 -3
- package/packages/model-runtime/src/providers/newapi/index.ts +34 -88
- package/packages/model-runtime/src/types/index.ts +0 -1
- package/packages/model-runtime/src/utils/sanitizeError.test.ts +109 -0
- package/packages/model-runtime/src/utils/sanitizeError.ts +59 -0
- package/packages/types/src/message/base.ts +1 -0
- package/packages/utils/package.json +2 -1
- package/src/app/[variants]/(main)/image/@menu/components/SizeSelect/index.tsx +24 -1
- package/src/server/modules/EdgeConfig/index.ts +15 -33
- package/src/server/modules/EdgeConfig/types.ts +13 -0
- package/packages/model-runtime/src/types/usage.ts +0 -27
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,64 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
## [Version 1.135.0](https://github.com/lobehub/lobe-chat/compare/v1.134.7...v1.135.0)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2025-10-06**</sup>
|
|
8
|
+
|
|
9
|
+
#### ✨ Features
|
|
10
|
+
|
|
11
|
+
- **misc**: Huanyuan text-to-image 3.
|
|
12
|
+
|
|
13
|
+
<br/>
|
|
14
|
+
|
|
15
|
+
<details>
|
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
17
|
+
|
|
18
|
+
#### What's improved
|
|
19
|
+
|
|
20
|
+
- **misc**: Huanyuan text-to-image 3, closes [#9589](https://github.com/lobehub/lobe-chat/issues/9589) ([1dd0e5e](https://github.com/lobehub/lobe-chat/commit/1dd0e5e))
|
|
21
|
+
|
|
22
|
+
</details>
|
|
23
|
+
|
|
24
|
+
<div align="right">
|
|
25
|
+
|
|
26
|
+
[](#readme-top)
|
|
27
|
+
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
### [Version 1.134.7](https://github.com/lobehub/lobe-chat/compare/v1.134.6...v1.134.7)
|
|
31
|
+
|
|
32
|
+
<sup>Released on **2025-10-06**</sup>
|
|
33
|
+
|
|
34
|
+
#### 🐛 Bug Fixes
|
|
35
|
+
|
|
36
|
+
- **security**: Sanitize Azure provider error responses to prevent API key exposure.
|
|
37
|
+
|
|
38
|
+
#### 💄 Styles
|
|
39
|
+
|
|
40
|
+
- **misc**: Update i18n.
|
|
41
|
+
|
|
42
|
+
<br/>
|
|
43
|
+
|
|
44
|
+
<details>
|
|
45
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
46
|
+
|
|
47
|
+
#### What's fixed
|
|
48
|
+
|
|
49
|
+
- **security**: Sanitize Azure provider error responses to prevent API key exposure, closes [#9583](https://github.com/lobehub/lobe-chat/issues/9583) ([af59bfe](https://github.com/lobehub/lobe-chat/commit/af59bfe))
|
|
50
|
+
|
|
51
|
+
#### Styles
|
|
52
|
+
|
|
53
|
+
- **misc**: Update i18n, closes [#9580](https://github.com/lobehub/lobe-chat/issues/9580) ([c0974ea](https://github.com/lobehub/lobe-chat/commit/c0974ea))
|
|
54
|
+
|
|
55
|
+
</details>
|
|
56
|
+
|
|
57
|
+
<div align="right">
|
|
58
|
+
|
|
59
|
+
[](#readme-top)
|
|
60
|
+
|
|
61
|
+
</div>
|
|
62
|
+
|
|
5
63
|
### [Version 1.134.6](https://github.com/lobehub/lobe-chat/compare/v1.134.5...v1.134.6)
|
|
6
64
|
|
|
7
65
|
<sup>Released on **2025-10-05**</sup>
|
package/changelog/v1.json
CHANGED
|
@@ -1,4 +1,22 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"children": {
|
|
4
|
+
"features": [
|
|
5
|
+
"Huanyuan text-to-image 3."
|
|
6
|
+
]
|
|
7
|
+
},
|
|
8
|
+
"date": "2025-10-06",
|
|
9
|
+
"version": "1.135.0"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"children": {
|
|
13
|
+
"improvements": [
|
|
14
|
+
"Update i18n."
|
|
15
|
+
]
|
|
16
|
+
},
|
|
17
|
+
"date": "2025-10-06",
|
|
18
|
+
"version": "1.134.7"
|
|
19
|
+
},
|
|
2
20
|
{
|
|
3
21
|
"children": {},
|
|
4
22
|
"date": "2025-10-05",
|
|
@@ -4,37 +4,88 @@ The directory structure of LobeChat is as follows:
|
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
6
|
src
|
|
7
|
-
├── app #
|
|
7
|
+
├── app # Next.js App Router implementation with route groups and API routes
|
|
8
8
|
├── components # Reusable UI components
|
|
9
9
|
├── config # Application configuration files, including client-side and server-side environment variables
|
|
10
|
-
├── const # Used to define constants, such as action types, route names, etc.
|
|
11
10
|
├── features # Function modules related to business functions, such as agent settings, plugin development pop-ups, etc.
|
|
12
11
|
├── hooks # Custom utility hooks reused throughout the application
|
|
13
12
|
├── layout # Application layout components, such as navigation bars, sidebars, etc.
|
|
13
|
+
├── libs # Third-party integrations (analytics, OIDC, etc.)
|
|
14
14
|
├── locales # Internationalization language files
|
|
15
|
+
├── server # Server-side modules and services
|
|
15
16
|
├── services # Encapsulated backend service interfaces, such as HTTP requests
|
|
16
17
|
├── store # Zustand store for state management
|
|
18
|
+
├── styles # Global styles and CSS-in-JS configurations
|
|
17
19
|
├── types # TypeScript type definition files
|
|
18
20
|
└── utils # Common utility functions
|
|
19
21
|
```
|
|
20
22
|
|
|
21
23
|
## app
|
|
22
24
|
|
|
23
|
-
|
|
25
|
+
The `app` directory follows Next.js 13+ App Router conventions with a sophisticated architecture using [Route Groups](https://nextjs.org/docs/app/building-your-application/routing/route-groups) to organize backend services, platform variants, and application routes:
|
|
24
26
|
|
|
25
27
|
```bash
|
|
26
|
-
|
|
27
|
-
├── (
|
|
28
|
-
│ ├──
|
|
29
|
-
│ ├──
|
|
30
|
-
│ └──
|
|
31
|
-
├──
|
|
32
|
-
│ ├──
|
|
33
|
-
│ ├──
|
|
34
|
-
│
|
|
35
|
-
├──
|
|
36
|
-
│
|
|
37
|
-
|
|
28
|
+
app
|
|
29
|
+
├── (backend)/ # Backend API routes and services
|
|
30
|
+
│ ├── api/ # REST API endpoints
|
|
31
|
+
│ │ ├── auth/ # Authentication routes
|
|
32
|
+
│ │ └── webhooks/ # Webhook handlers
|
|
33
|
+
│ ├── middleware/ # Request middleware
|
|
34
|
+
│ ├── oidc/ # OpenID Connect routes
|
|
35
|
+
│ ├── trpc/ # tRPC API endpoints
|
|
36
|
+
│ │ ├── async/ # Async tRPC routes
|
|
37
|
+
│ │ ├── desktop/ # Desktop-specific tRPC routes
|
|
38
|
+
│ │ ├── edge/ # Edge runtime tRPC routes
|
|
39
|
+
│ │ ├── lambda/ # Lambda tRPC routes
|
|
40
|
+
│ │ └── tools/ # Tools tRPC routes
|
|
41
|
+
│ └── webapi/ # Web API endpoints
|
|
42
|
+
│ ├── chat/ # Chat-related APIs
|
|
43
|
+
│ ├── models/ # Model management APIs
|
|
44
|
+
│ ├── tts/ # Text-to-speech APIs
|
|
45
|
+
│ └── ...
|
|
46
|
+
├── [variants]/ # Platform and device variants
|
|
47
|
+
│ ├── (auth)/ # Authentication pages
|
|
48
|
+
│ │ ├── login/
|
|
49
|
+
│ │ ├── signup/
|
|
50
|
+
│ │ └── next-auth/
|
|
51
|
+
│ ├── (main)/ # Main application routes
|
|
52
|
+
│ │ ├── (mobile)/ # Mobile-specific routes
|
|
53
|
+
│ │ │ └── me/ # Mobile profile pages
|
|
54
|
+
│ │ ├── _layout/ # Layout components
|
|
55
|
+
│ │ ├── chat/ # Chat interface
|
|
56
|
+
│ │ ├── discover/ # Discovery pages
|
|
57
|
+
│ │ ├── files/ # File management
|
|
58
|
+
│ │ ├── image/ # Image generation
|
|
59
|
+
│ │ ├── profile/ # User profile
|
|
60
|
+
│ │ ├── repos/ # Repository management
|
|
61
|
+
│ │ └── settings/ # Application settings
|
|
62
|
+
│ └── @modal/ # Parallel modal routes
|
|
63
|
+
│ ├── (.)changelog/
|
|
64
|
+
│ └── _layout/
|
|
65
|
+
├── desktop/ # Desktop-specific routes
|
|
66
|
+
│ └── devtools/
|
|
67
|
+
├── manifest.ts # PWA manifest
|
|
68
|
+
├── robots.tsx # Robots.txt generation
|
|
69
|
+
├── sitemap.tsx # Sitemap generation
|
|
70
|
+
└── sw.ts # Service worker
|
|
38
71
|
```
|
|
39
72
|
|
|
40
|
-
|
|
73
|
+
### Architecture Explanation
|
|
74
|
+
|
|
75
|
+
**Route Groups:**
|
|
76
|
+
- `(backend)` - Contains all server-side API routes, middleware, and backend services
|
|
77
|
+
- `[variants]` - Dynamic route group handling different platform variants and main application pages
|
|
78
|
+
- `@modal` - Parallel routes for modal dialogs using Next.js parallel routing
|
|
79
|
+
|
|
80
|
+
**Platform Organization:**
|
|
81
|
+
- The architecture supports multiple platforms (web, desktop, mobile) through route organization
|
|
82
|
+
- Desktop-specific routes are in the `desktop/` directory
|
|
83
|
+
- Mobile-specific routes are organized under `(main)/(mobile)/`
|
|
84
|
+
- Shared layouts and components are in `_layout/` directories
|
|
85
|
+
|
|
86
|
+
**API Architecture:**
|
|
87
|
+
- REST APIs in `(backend)/api/` and `(backend)/webapi/`
|
|
88
|
+
- tRPC endpoints organized by runtime environment (edge, lambda, async, desktop)
|
|
89
|
+
- Authentication and OIDC handling in dedicated route groups
|
|
90
|
+
|
|
91
|
+
This architecture provides clear separation of concerns while maintaining flexibility for different deployment targets and runtime environments.
|
|
@@ -4,37 +4,88 @@ LobeChat 的文件夹目录架构如下:
|
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
6
|
src
|
|
7
|
-
├── app #
|
|
7
|
+
├── app # Next.js App Router 实现,包含路由组和 API 路由
|
|
8
8
|
├── components # 可复用的 UI 组件
|
|
9
9
|
├── config # 应用的配置文件,包含客户端环境变量与服务端环境变量
|
|
10
|
-
├── const # 用于定义常量,如 action 类型、路由名等
|
|
11
10
|
├── features # 与业务功能相关的功能模块,如 Agent 设置、插件开发弹窗等
|
|
12
11
|
├── hooks # 全应用复用自定义的工具 Hooks
|
|
13
12
|
├── layout # 应用的布局组件,如导航栏、侧边栏等
|
|
13
|
+
├── libs # 第三方集成(分析、OIDC 等)
|
|
14
14
|
├── locales # 国际化的语言文件
|
|
15
|
+
├── server # 服务端模块和服务
|
|
15
16
|
├── services # 封装的后端服务接口,如 HTTP 请求
|
|
16
17
|
├── store # 用于状态管理的 zustand store
|
|
18
|
+
├── styles # 全局样式和 CSS-in-JS 配置
|
|
17
19
|
├── types # TypeScript 的类型定义文件
|
|
18
20
|
└── utils # 通用的工具函数
|
|
19
21
|
```
|
|
20
22
|
|
|
21
23
|
## app
|
|
22
24
|
|
|
23
|
-
|
|
25
|
+
`app` 目录遵循 Next.js 13+ App Router 约定,采用复杂的架构,使用 [路由组](https://nextjs.org/docs/app/building-your-application/routing/route-groups) 来组织后端服务、平台变体和应用路由:
|
|
24
26
|
|
|
25
27
|
```bash
|
|
26
|
-
|
|
27
|
-
├── (
|
|
28
|
-
│ ├──
|
|
29
|
-
│ ├──
|
|
30
|
-
│ └──
|
|
31
|
-
├──
|
|
32
|
-
│ ├──
|
|
33
|
-
│ ├──
|
|
34
|
-
│
|
|
35
|
-
├──
|
|
36
|
-
│
|
|
37
|
-
|
|
28
|
+
app
|
|
29
|
+
├── (backend)/ # 后端 API 路由和服务
|
|
30
|
+
│ ├── api/ # REST API 端点
|
|
31
|
+
│ │ ├── auth/ # 身份验证路由
|
|
32
|
+
│ │ └── webhooks/ # Webhook 处理器
|
|
33
|
+
│ ├── middleware/ # 请求中间件
|
|
34
|
+
│ ├── oidc/ # OpenID Connect 路由
|
|
35
|
+
│ ├── trpc/ # tRPC API 端点
|
|
36
|
+
│ │ ├── async/ # 异步 tRPC 路由
|
|
37
|
+
│ │ ├── desktop/ # 桌面端专用 tRPC 路由
|
|
38
|
+
│ │ ├── edge/ # Edge 运行时 tRPC 路由
|
|
39
|
+
│ │ ├── lambda/ # Lambda tRPC 路由
|
|
40
|
+
│ │ └── tools/ # 工具 tRPC 路由
|
|
41
|
+
│ └── webapi/ # Web API 端点
|
|
42
|
+
│ ├── chat/ # 聊天相关 API
|
|
43
|
+
│ ├── models/ # 模型管理 API
|
|
44
|
+
│ ├── tts/ # 文本转语音 API
|
|
45
|
+
│ └── ...
|
|
46
|
+
├── [variants]/ # 平台和设备变体
|
|
47
|
+
│ ├── (auth)/ # 身份验证页面
|
|
48
|
+
│ │ ├── login/
|
|
49
|
+
│ │ ├── signup/
|
|
50
|
+
│ │ └── next-auth/
|
|
51
|
+
│ ├── (main)/ # 主应用路由
|
|
52
|
+
│ │ ├── (mobile)/ # 移动端专用路由
|
|
53
|
+
│ │ │ └── me/ # 移动端个人资料页面
|
|
54
|
+
│ │ ├── _layout/ # 布局组件
|
|
55
|
+
│ │ ├── chat/ # 聊天界面
|
|
56
|
+
│ │ ├── discover/ # 发现页面
|
|
57
|
+
│ │ ├── files/ # 文件管理
|
|
58
|
+
│ │ ├── image/ # 图像生成
|
|
59
|
+
│ │ ├── profile/ # 用户资料
|
|
60
|
+
│ │ ├── repos/ # 仓库管理
|
|
61
|
+
│ │ └── settings/ # 应用设置
|
|
62
|
+
│ └── @modal/ # 并行模态框路由
|
|
63
|
+
│ ├── (.)changelog/
|
|
64
|
+
│ └── _layout/
|
|
65
|
+
├── desktop/ # 桌面端专用路由
|
|
66
|
+
│ └── devtools/
|
|
67
|
+
├── manifest.ts # PWA 清单
|
|
68
|
+
├── robots.tsx # Robots.txt 生成
|
|
69
|
+
├── sitemap.tsx # 站点地图生成
|
|
70
|
+
└── sw.ts # Service Worker
|
|
38
71
|
```
|
|
39
72
|
|
|
40
|
-
|
|
73
|
+
### 架构说明
|
|
74
|
+
|
|
75
|
+
**路由组:**
|
|
76
|
+
- `(backend)` - 包含所有服务端 API 路由、中间件和后端服务
|
|
77
|
+
- `[variants]` - 处理不同平台变体和主应用页面的动态路由组
|
|
78
|
+
- `@modal` - 使用 Next.js 并行路由的模态框对话框并行路由
|
|
79
|
+
|
|
80
|
+
**平台组织:**
|
|
81
|
+
- 架构通过路由组织支持多个平台(Web、桌面端、移动端)
|
|
82
|
+
- 桌面端专用路由位于 `desktop/` 目录中
|
|
83
|
+
- 移动端专用路由组织在 `(main)/(mobile)/` 下
|
|
84
|
+
- 共享布局和组件位于 `_layout/` 目录中
|
|
85
|
+
|
|
86
|
+
**API 架构:**
|
|
87
|
+
- `(backend)/api/` 和 `(backend)/webapi/` 中的 REST API
|
|
88
|
+
- 按运行时环境组织的 tRPC 端点(edge、lambda、async、desktop)
|
|
89
|
+
- 专用路由组中的身份验证和 OIDC 处理
|
|
90
|
+
|
|
91
|
+
这种架构在保持不同部署目标和运行时环境灵活性的同时,提供了清晰的关注点分离。
|
|
@@ -294,6 +294,21 @@
|
|
|
294
294
|
"title": "أقصى نافذة سياق",
|
|
295
295
|
"unlimited": "غير محدود"
|
|
296
296
|
},
|
|
297
|
+
"type": {
|
|
298
|
+
"extra": "أنواع النماذج المختلفة تمتلك سيناريوهات استخدام وقدرات مميزة",
|
|
299
|
+
"options": {
|
|
300
|
+
"chat": "محادثة",
|
|
301
|
+
"embedding": "تضمين",
|
|
302
|
+
"image": "توليد الصور",
|
|
303
|
+
"realtime": "محادثة فورية",
|
|
304
|
+
"stt": "تحويل الصوت إلى نص",
|
|
305
|
+
"text2music": "تحويل النص إلى موسيقى",
|
|
306
|
+
"text2video": "تحويل النص إلى فيديو",
|
|
307
|
+
"tts": "تحويل النص إلى كلام"
|
|
308
|
+
},
|
|
309
|
+
"placeholder": "يرجى اختيار نوع النموذج",
|
|
310
|
+
"title": "نوع النموذج"
|
|
311
|
+
},
|
|
297
312
|
"vision": {
|
|
298
313
|
"extra": "سيؤدي هذا التكوين إلى فتح إعدادات تحميل الصور في التطبيق، ما إذا كان يدعم التعرف يعتمد بالكامل على النموذج نفسه، يرجى اختبار قابلية استخدام التعرف البصري لهذا النموذج بنفسك",
|
|
299
314
|
"title": "دعم التعرف البصري"
|
package/locales/ar/models.json
CHANGED
|
@@ -1253,6 +1253,9 @@
|
|
|
1253
1253
|
"fal-ai/flux/schnell": {
|
|
1254
1254
|
"description": "FLUX.1 [schnell] هو نموذج توليد صور يحتوي على 12 مليار معلمة، يركز على توليد صور عالية الجودة بسرعة."
|
|
1255
1255
|
},
|
|
1256
|
+
"fal-ai/hunyuan-image/v3": {
|
|
1257
|
+
"description": "نموذج قوي لتوليد الصور متعددة الوسائط الأصلية"
|
|
1258
|
+
},
|
|
1256
1259
|
"fal-ai/imagen4/preview": {
|
|
1257
1260
|
"description": "نموذج توليد صور عالي الجودة مقدم من جوجل."
|
|
1258
1261
|
},
|
|
@@ -294,6 +294,21 @@
|
|
|
294
294
|
"title": "Максимален контекстуален прозорец",
|
|
295
295
|
"unlimited": "Без ограничения"
|
|
296
296
|
},
|
|
297
|
+
"type": {
|
|
298
|
+
"extra": "Различните типове модели имат различни сценарии на използване и възможности",
|
|
299
|
+
"options": {
|
|
300
|
+
"chat": "Чат",
|
|
301
|
+
"embedding": "Векторизация",
|
|
302
|
+
"image": "Генериране на изображения",
|
|
303
|
+
"realtime": "Реално време чат",
|
|
304
|
+
"stt": "Гласов текст",
|
|
305
|
+
"text2music": "Текст към музика",
|
|
306
|
+
"text2video": "Текст към видео",
|
|
307
|
+
"tts": "Гласово синтезиране"
|
|
308
|
+
},
|
|
309
|
+
"placeholder": "Моля, изберете тип модел",
|
|
310
|
+
"title": "Тип модел"
|
|
311
|
+
},
|
|
297
312
|
"vision": {
|
|
298
313
|
"extra": "Тази конфигурация ще активира само конфигурацията за качване на изображения в приложението, дали поддържа разпознаване зависи изцяло от самия модел, моля, тествайте наличността на визуалната разпознаваемост на този модел.",
|
|
299
314
|
"title": "Поддръжка на визуално разпознаване"
|
|
@@ -1253,6 +1253,9 @@
|
|
|
1253
1253
|
"fal-ai/flux/schnell": {
|
|
1254
1254
|
"description": "FLUX.1 [schnell] е модел за генериране на изображения с 12 милиарда параметри, фокусиран върху бързото създаване на висококачествени изображения."
|
|
1255
1255
|
},
|
|
1256
|
+
"fal-ai/hunyuan-image/v3": {
|
|
1257
|
+
"description": "Мощен оригинален мултимодален модел за генериране на изображения"
|
|
1258
|
+
},
|
|
1256
1259
|
"fal-ai/imagen4/preview": {
|
|
1257
1260
|
"description": "Висококачествен модел за генериране на изображения, предоставен от Google."
|
|
1258
1261
|
},
|
|
@@ -294,6 +294,21 @@
|
|
|
294
294
|
"title": "Maximales Kontextfenster",
|
|
295
295
|
"unlimited": "Unbegrenzt"
|
|
296
296
|
},
|
|
297
|
+
"type": {
|
|
298
|
+
"extra": "Verschiedene Modelltypen haben unterschiedliche Anwendungsbereiche und Fähigkeiten",
|
|
299
|
+
"options": {
|
|
300
|
+
"chat": "Chat",
|
|
301
|
+
"embedding": "Vektorisierung",
|
|
302
|
+
"image": "Bildgenerierung",
|
|
303
|
+
"realtime": "Echtzeit-Chat",
|
|
304
|
+
"stt": "Spracherkennung",
|
|
305
|
+
"text2music": "Text zu Musik",
|
|
306
|
+
"text2video": "Text zu Video",
|
|
307
|
+
"tts": "Sprachsynthese"
|
|
308
|
+
},
|
|
309
|
+
"placeholder": "Bitte Modelltyp auswählen",
|
|
310
|
+
"title": "Modelltyp"
|
|
311
|
+
},
|
|
297
312
|
"vision": {
|
|
298
313
|
"extra": "Diese Konfiguration aktiviert nur die Bild-Upload-Funktionalität in der Anwendung. Ob die Erkennung unterstützt wird, hängt vollständig vom Modell selbst ab. Bitte testen Sie die Verwendbarkeit der visuellen Erkennungsfähigkeit des Modells selbst.",
|
|
299
314
|
"title": "Visuelle Erkennung unterstützen"
|
|
@@ -1253,6 +1253,9 @@
|
|
|
1253
1253
|
"fal-ai/flux/schnell": {
|
|
1254
1254
|
"description": "FLUX.1 [schnell] ist ein bildgenerierendes Modell mit 12 Milliarden Parametern, das sich auf die schnelle Erzeugung hochwertiger Bilder konzentriert."
|
|
1255
1255
|
},
|
|
1256
|
+
"fal-ai/hunyuan-image/v3": {
|
|
1257
|
+
"description": "Ein leistungsstarkes natives multimodales Bildgenerierungsmodell"
|
|
1258
|
+
},
|
|
1256
1259
|
"fal-ai/imagen4/preview": {
|
|
1257
1260
|
"description": "Hochwertiges Bildgenerierungsmodell von Google."
|
|
1258
1261
|
},
|
|
@@ -294,6 +294,21 @@
|
|
|
294
294
|
"title": "Maximum Context Window",
|
|
295
295
|
"unlimited": "Unlimited"
|
|
296
296
|
},
|
|
297
|
+
"type": {
|
|
298
|
+
"extra": "Different model types have distinct use cases and capabilities",
|
|
299
|
+
"options": {
|
|
300
|
+
"chat": "Chat",
|
|
301
|
+
"embedding": "Embedding",
|
|
302
|
+
"image": "Image Generation",
|
|
303
|
+
"realtime": "Real-time Chat",
|
|
304
|
+
"stt": "Speech-to-Text",
|
|
305
|
+
"text2music": "Text-to-Music",
|
|
306
|
+
"text2video": "Text-to-Video",
|
|
307
|
+
"tts": "Text-to-Speech"
|
|
308
|
+
},
|
|
309
|
+
"placeholder": "Please select a model type",
|
|
310
|
+
"title": "Model Type"
|
|
311
|
+
},
|
|
297
312
|
"vision": {
|
|
298
313
|
"extra": "This configuration will only enable image upload capabilities in the application. Whether recognition is supported depends entirely on the model itself. Please test the visual recognition capabilities of the model yourself.",
|
|
299
314
|
"title": "Support Vision"
|
|
@@ -1253,6 +1253,9 @@
|
|
|
1253
1253
|
"fal-ai/flux/schnell": {
|
|
1254
1254
|
"description": "FLUX.1 [schnell] is a 12-billion-parameter image generation model focused on fast generation of high-quality images."
|
|
1255
1255
|
},
|
|
1256
|
+
"fal-ai/hunyuan-image/v3": {
|
|
1257
|
+
"description": "A powerful native multimodal image generation model"
|
|
1258
|
+
},
|
|
1256
1259
|
"fal-ai/imagen4/preview": {
|
|
1257
1260
|
"description": "High-quality image generation model provided by Google."
|
|
1258
1261
|
},
|
|
@@ -294,6 +294,21 @@
|
|
|
294
294
|
"title": "Máximo de ventana de contexto",
|
|
295
295
|
"unlimited": "Sin límite"
|
|
296
296
|
},
|
|
297
|
+
"type": {
|
|
298
|
+
"extra": "Diferentes tipos de modelos tienen escenarios de uso y capacidades diferenciadas",
|
|
299
|
+
"options": {
|
|
300
|
+
"chat": "Chat",
|
|
301
|
+
"embedding": "Vectorización",
|
|
302
|
+
"image": "Generación de imágenes",
|
|
303
|
+
"realtime": "Chat en tiempo real",
|
|
304
|
+
"stt": "Reconocimiento de voz a texto",
|
|
305
|
+
"text2music": "Texto a música",
|
|
306
|
+
"text2video": "Texto a video",
|
|
307
|
+
"tts": "Síntesis de voz"
|
|
308
|
+
},
|
|
309
|
+
"placeholder": "Por favor, seleccione el tipo de modelo",
|
|
310
|
+
"title": "Tipo de modelo"
|
|
311
|
+
},
|
|
297
312
|
"vision": {
|
|
298
313
|
"extra": "Esta configuración solo habilitará la configuración de carga de imágenes en la aplicación, si se admite el reconocimiento depende completamente del modelo en sí, prueba la disponibilidad de la capacidad de reconocimiento visual de este modelo.",
|
|
299
314
|
"title": "Soporte para reconocimiento visual"
|
|
@@ -1253,6 +1253,9 @@
|
|
|
1253
1253
|
"fal-ai/flux/schnell": {
|
|
1254
1254
|
"description": "FLUX.1 [schnell] es un modelo generador de imágenes con 12 mil millones de parámetros, enfocado en la generación rápida de imágenes de alta calidad."
|
|
1255
1255
|
},
|
|
1256
|
+
"fal-ai/hunyuan-image/v3": {
|
|
1257
|
+
"description": "Un potente modelo nativo de generación de imágenes multimodales"
|
|
1258
|
+
},
|
|
1256
1259
|
"fal-ai/imagen4/preview": {
|
|
1257
1260
|
"description": "Modelo de generación de imágenes de alta calidad proporcionado por Google."
|
|
1258
1261
|
},
|
|
@@ -294,6 +294,21 @@
|
|
|
294
294
|
"title": "حداکثر پنجره زمینه",
|
|
295
295
|
"unlimited": "بدون محدودیت"
|
|
296
296
|
},
|
|
297
|
+
"type": {
|
|
298
|
+
"extra": "انواع مختلف مدلها دارای سناریوها و قابلیتهای متفاوتی هستند",
|
|
299
|
+
"options": {
|
|
300
|
+
"chat": "گفتگو",
|
|
301
|
+
"embedding": "بردارسازی",
|
|
302
|
+
"image": "تولید تصویر",
|
|
303
|
+
"realtime": "گفتگوی زنده",
|
|
304
|
+
"stt": "تبدیل گفتار به متن",
|
|
305
|
+
"text2music": "تبدیل متن به موسیقی",
|
|
306
|
+
"text2video": "تبدیل متن به ویدئو",
|
|
307
|
+
"tts": "تبدیل متن به گفتار"
|
|
308
|
+
},
|
|
309
|
+
"placeholder": "لطفاً نوع مدل را انتخاب کنید",
|
|
310
|
+
"title": "نوع مدل"
|
|
311
|
+
},
|
|
297
312
|
"vision": {
|
|
298
313
|
"extra": "این پیکربندی تنها قابلیت بارگذاری تصویر در برنامه را فعال میکند، اینکه آیا شناسایی پشتیبانی میشود به خود مدل بستگی دارد، لطفاً قابلیت استفاده از شناسایی بصری این مدل را آزمایش کنید",
|
|
299
314
|
"title": "پشتیبانی از شناسایی بصری"
|
|
@@ -1253,6 +1253,9 @@
|
|
|
1253
1253
|
"fal-ai/flux/schnell": {
|
|
1254
1254
|
"description": "FLUX.1 [schnell] یک مدل تولید تصویر با 12 میلیارد پارامتر است که بر تولید سریع تصاویر با کیفیت بالا تمرکز دارد."
|
|
1255
1255
|
},
|
|
1256
|
+
"fal-ai/hunyuan-image/v3": {
|
|
1257
|
+
"description": "یک مدل قدرتمند بومی تولید تصویر چندوجهی"
|
|
1258
|
+
},
|
|
1256
1259
|
"fal-ai/imagen4/preview": {
|
|
1257
1260
|
"description": "مدل تولید تصویر با کیفیت بالا ارائه شده توسط گوگل"
|
|
1258
1261
|
},
|
|
@@ -294,6 +294,21 @@
|
|
|
294
294
|
"title": "Fenêtre de contexte maximale",
|
|
295
295
|
"unlimited": "Illimité"
|
|
296
296
|
},
|
|
297
|
+
"type": {
|
|
298
|
+
"extra": "Différents types de modèles possèdent des scénarios d'utilisation et des capacités distincts",
|
|
299
|
+
"options": {
|
|
300
|
+
"chat": "Conversation",
|
|
301
|
+
"embedding": "Vectorisation",
|
|
302
|
+
"image": "Génération d'images",
|
|
303
|
+
"realtime": "Dialogue en temps réel",
|
|
304
|
+
"stt": "Reconnaissance vocale",
|
|
305
|
+
"text2music": "Texte en musique",
|
|
306
|
+
"text2video": "Texte en vidéo",
|
|
307
|
+
"tts": "Synthèse vocale"
|
|
308
|
+
},
|
|
309
|
+
"placeholder": "Veuillez sélectionner un type de modèle",
|
|
310
|
+
"title": "Type de modèle"
|
|
311
|
+
},
|
|
297
312
|
"vision": {
|
|
298
313
|
"extra": "Cette configuration n'activera que la configuration de téléchargement d'images dans l'application, la prise en charge de la reconnaissance dépend entièrement du modèle lui-même, veuillez tester la disponibilité des capacités de reconnaissance visuelle de ce modèle.",
|
|
299
314
|
"title": "Reconnaissance visuelle prise en charge"
|
|
@@ -1253,6 +1253,9 @@
|
|
|
1253
1253
|
"fal-ai/flux/schnell": {
|
|
1254
1254
|
"description": "FLUX.1 [schnell] est un modèle de génération d'images de 12 milliards de paramètres, spécialisé dans la génération rapide d'images de haute qualité."
|
|
1255
1255
|
},
|
|
1256
|
+
"fal-ai/hunyuan-image/v3": {
|
|
1257
|
+
"description": "Un puissant modèle natif de génération d'images multimodales"
|
|
1258
|
+
},
|
|
1256
1259
|
"fal-ai/imagen4/preview": {
|
|
1257
1260
|
"description": "Modèle de génération d'images de haute qualité fourni par Google."
|
|
1258
1261
|
},
|
|
@@ -294,6 +294,21 @@
|
|
|
294
294
|
"title": "Finestra di contesto massima",
|
|
295
295
|
"unlimited": "Illimitato"
|
|
296
296
|
},
|
|
297
|
+
"type": {
|
|
298
|
+
"extra": "Diversi tipi di modelli hanno scenari d'uso e capacità differenziate",
|
|
299
|
+
"options": {
|
|
300
|
+
"chat": "Conversazione",
|
|
301
|
+
"embedding": "Vettorializzazione",
|
|
302
|
+
"image": "Generazione di immagini",
|
|
303
|
+
"realtime": "Conversazione in tempo reale",
|
|
304
|
+
"stt": "Trascrizione vocale",
|
|
305
|
+
"text2music": "Testo in musica",
|
|
306
|
+
"text2video": "Testo in video",
|
|
307
|
+
"tts": "Sintesi vocale"
|
|
308
|
+
},
|
|
309
|
+
"placeholder": "Seleziona il tipo di modello",
|
|
310
|
+
"title": "Tipo di modello"
|
|
311
|
+
},
|
|
297
312
|
"vision": {
|
|
298
313
|
"extra": "Questa configurazione abiliterà solo la configurazione di caricamento immagini nell'app, la disponibilità di riconoscimento dipende interamente dal modello stesso, testare autonomamente la disponibilità di riconoscimento visivo di questo modello.",
|
|
299
314
|
"title": "Supporto per riconoscimento visivo"
|
|
@@ -1253,6 +1253,9 @@
|
|
|
1253
1253
|
"fal-ai/flux/schnell": {
|
|
1254
1254
|
"description": "FLUX.1 [schnell] è un modello di generazione immagini con 12 miliardi di parametri, focalizzato sulla generazione rapida di immagini di alta qualità."
|
|
1255
1255
|
},
|
|
1256
|
+
"fal-ai/hunyuan-image/v3": {
|
|
1257
|
+
"description": "Un potente modello nativo di generazione di immagini multimodali"
|
|
1258
|
+
},
|
|
1256
1259
|
"fal-ai/imagen4/preview": {
|
|
1257
1260
|
"description": "Modello di generazione immagini di alta qualità fornito da Google."
|
|
1258
1261
|
},
|
|
@@ -294,6 +294,21 @@
|
|
|
294
294
|
"title": "最大コンテキストウィンドウ",
|
|
295
295
|
"unlimited": "無制限"
|
|
296
296
|
},
|
|
297
|
+
"type": {
|
|
298
|
+
"extra": "異なるモデルタイプは、それぞれ異なる使用シーンと能力を持っています",
|
|
299
|
+
"options": {
|
|
300
|
+
"chat": "チャット",
|
|
301
|
+
"embedding": "ベクトル化",
|
|
302
|
+
"image": "画像生成",
|
|
303
|
+
"realtime": "リアルタイムチャット",
|
|
304
|
+
"stt": "音声からテキストへ",
|
|
305
|
+
"text2music": "テキストから音楽へ",
|
|
306
|
+
"text2video": "テキストから動画へ",
|
|
307
|
+
"tts": "音声合成"
|
|
308
|
+
},
|
|
309
|
+
"placeholder": "モデルタイプを選択してください",
|
|
310
|
+
"title": "モデルタイプ"
|
|
311
|
+
},
|
|
297
312
|
"vision": {
|
|
298
313
|
"extra": "この設定はアプリ内の画像アップロード設定のみを有効にします。認識のサポートはモデル自体に依存しますので、そのモデルの視覚認識機能の可用性を自分でテストしてください",
|
|
299
314
|
"title": "視覚認識をサポート"
|
|
@@ -1253,6 +1253,9 @@
|
|
|
1253
1253
|
"fal-ai/flux/schnell": {
|
|
1254
1254
|
"description": "FLUX.1 [schnell] は120億パラメータを持つ画像生成モデルで、高速に高品質な画像生成に特化しています。"
|
|
1255
1255
|
},
|
|
1256
|
+
"fal-ai/hunyuan-image/v3": {
|
|
1257
|
+
"description": "強力なネイティブマルチモーダル画像生成モデル"
|
|
1258
|
+
},
|
|
1256
1259
|
"fal-ai/imagen4/preview": {
|
|
1257
1260
|
"description": "Google 提供の高品質な画像生成モデルです。"
|
|
1258
1261
|
},
|