1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
| /**
| * Created by iailab
| *
| * AI 枚举类
| *
| * 问题:为什么不放在 src/utils/constants.ts 呢?
| * 回答:主要 AI 是可选模块,考虑到独立、解耦,所以放在了 /views/ai/utils/constants.ts
| */
|
| /**
| * AI 平台的枚举
| */
| export const AiPlatformEnum = {
| TONG_YI: 'TongYi', // 阿里
| YI_YAN: 'YiYan', // 百度
| DEEP_SEEK: 'DeepSeek', // DeepSeek
| ZHI_PU: 'ZhiPu', // 智谱 AI
| XING_HUO: 'XingHuo', // 讯飞
| OPENAI: 'OpenAI',
| Ollama: 'Ollama',
| STABLE_DIFFUSION: 'StableDiffusion', // Stability AI
| MIDJOURNEY: 'Midjourney', // Midjourney
| SUNO: 'Suno' // Suno AI
| }
|
| export const OtherPlatformEnum: ImageModelVO[] = [
| {
| key: AiPlatformEnum.TONG_YI,
| name: '通义万相'
| },
| {
| key: AiPlatformEnum.YI_YAN,
| name: '百度千帆'
| },
| {
| key: AiPlatformEnum.ZHI_PU,
| name: '智谱 AI'
| }
| ]
|
| /**
| * AI 图像生成状态的枚举
| */
| export const AiImageStatusEnum = {
| IN_PROGRESS: 10, // 进行中
| SUCCESS: 20, // 已完成
| FAIL: 30 // 已失败
| }
|
| /**
| * AI 音乐生成状态的枚举
| */
| export const AiMusicStatusEnum = {
| IN_PROGRESS: 10, // 进行中
| SUCCESS: 20, // 已完成
| FAIL: 30 // 已失败
| }
|
| /**
| * AI 写作类型的枚举
| */
| export enum AiWriteTypeEnum {
| WRITING = 1, // 撰写
| REPLY // 回复
| }
|
| // 表格展示对照map
| export const AiWriteTypeTableRender = {
| [AiWriteTypeEnum.WRITING]: '撰写',
| [AiWriteTypeEnum.REPLY]: '回复'
| }
|
| // ========== 【图片 UI】相关的枚举 ==========
|
| export const ImageHotWords = [
| '中国旗袍',
| '古装美女',
| '卡通头像',
| '机甲战士',
| '童话小屋',
| '中国长城'
| ] // 图片热词
|
| export const ImageHotEnglishWords = [
| 'Chinese Cheongsam',
| 'Ancient Beauty',
| 'Cartoon Avatar',
| 'Mech Warrior',
| 'Fairy Tale Cottage',
| 'The Great Wall of China'
| ] // 图片热词(英文)
|
| export interface ImageModelVO {
| key: string
| name: string
| image?: string
| }
|
| export const StableDiffusionSamplers: ImageModelVO[] = [
| {
| key: 'DDIM',
| name: 'DDIM'
| },
| {
| key: 'DDPM',
| name: 'DDPM'
| },
| {
| key: 'K_DPMPP_2M',
| name: 'K_DPMPP_2M'
| },
| {
| key: 'K_DPMPP_2S_ANCESTRAL',
| name: 'K_DPMPP_2S_ANCESTRAL'
| },
| {
| key: 'K_DPM_2',
| name: 'K_DPM_2'
| },
| {
| key: 'K_DPM_2_ANCESTRAL',
| name: 'K_DPM_2_ANCESTRAL'
| },
| {
| key: 'K_EULER',
| name: 'K_EULER'
| },
| {
| key: 'K_EULER_ANCESTRAL',
| name: 'K_EULER_ANCESTRAL'
| },
| {
| key: 'K_HEUN',
| name: 'K_HEUN'
| },
| {
| key: 'K_LMS',
| name: 'K_LMS'
| }
| ]
|
| export const StableDiffusionStylePresets: ImageModelVO[] = [
| {
| key: '3d-model',
| name: '3d-model'
| },
| {
| key: 'analog-film',
| name: 'analog-film'
| },
| {
| key: 'anime',
| name: 'anime'
| },
| {
| key: 'cinematic',
| name: 'cinematic'
| },
| {
| key: 'comic-book',
| name: 'comic-book'
| },
| {
| key: 'digital-art',
| name: 'digital-art'
| },
| {
| key: 'enhance',
| name: 'enhance'
| },
| {
| key: 'fantasy-art',
| name: 'fantasy-art'
| },
| {
| key: 'isometric',
| name: 'isometric'
| },
| {
| key: 'line-art',
| name: 'line-art'
| },
| {
| key: 'low-poly',
| name: 'low-poly'
| },
| {
| key: 'modeling-compound',
| name: 'modeling-compound'
| },
| // neon-punk origami photographic pixel-art tile-texture
| {
| key: 'neon-punk',
| name: 'neon-punk'
| },
| {
| key: 'origami',
| name: 'origami'
| },
| {
| key: 'photographic',
| name: 'photographic'
| },
| {
| key: 'pixel-art',
| name: 'pixel-art'
| },
| {
| key: 'tile-texture',
| name: 'tile-texture'
| }
| ]
|
| export const TongYiWanXiangModels: ImageModelVO[] = [
| {
| key: 'wanx-v1',
| name: 'wanx-v1'
| },
| {
| key: 'wanx-sketch-to-image-v1',
| name: 'wanx-sketch-to-image-v1'
| }
| ]
|
| export const QianFanModels: ImageModelVO[] = [
| {
| key: 'sd_xl',
| name: 'sd_xl'
| }
| ]
|
| export const ChatGlmModels: ImageModelVO[] = [
| {
| key: 'cogview-3',
| name: 'cogview-3'
| }
| ]
|
| export const StableDiffusionClipGuidancePresets: ImageModelVO[] = [
| {
| key: 'NONE',
| name: 'NONE'
| },
| {
| key: 'FAST_BLUE',
| name: 'FAST_BLUE'
| },
| {
| key: 'FAST_GREEN',
| name: 'FAST_GREEN'
| },
| {
| key: 'SIMPLE',
| name: 'SIMPLE'
| },
| {
| key: 'SLOW',
| name: 'SLOW'
| },
| {
| key: 'SLOWER',
| name: 'SLOWER'
| },
| {
| key: 'SLOWEST',
| name: 'SLOWEST'
| }
| ]
|
| export const Dall3Models: ImageModelVO[] = [
| {
| key: 'dall-e-3',
| name: 'DALL·E 3',
| image: `/src/assets/ai/dall2.jpg`
| },
| {
| key: 'dall-e-2',
| name: 'DALL·E 2',
| image: `/src/assets/ai/dall3.jpg`
| }
| ]
|
| export const Dall3StyleList: ImageModelVO[] = [
| {
| key: 'vivid',
| name: '清晰',
| image: `/src/assets/ai/qingxi.jpg`
| },
| {
| key: 'natural',
| name: '自然',
| image: `/src/assets/ai/ziran.jpg`
| }
| ]
|
| export interface ImageSizeVO {
| key: string
| name?: string
| style: string
| width: string
| height: string
| }
|
| export const Dall3SizeList: ImageSizeVO[] = [
| {
| key: '1024x1024',
| name: '1:1',
| width: '1024',
| height: '1024',
| style: 'width: 30px; height: 30px;background-color: #dcdcdc;'
| },
| {
| key: '1024x1792',
| name: '3:5',
| width: '1024',
| height: '1792',
| style: 'width: 30px; height: 50px;background-color: #dcdcdc;'
| },
| {
| key: '1792x1024',
| name: '5:3',
| width: '1792',
| height: '1024',
| style: 'width: 50px; height: 30px;background-color: #dcdcdc;'
| }
| ]
|
| export const MidjourneyModels: ImageModelVO[] = [
| {
| key: 'midjourney',
| name: 'MJ',
| image: 'https://bigpt8.com/pc/_nuxt/mj.34a61377.png'
| },
| {
| key: 'niji',
| name: 'NIJI',
| image: 'https://bigpt8.com/pc/_nuxt/nj.ca79b143.png'
| }
| ]
|
| export const MidjourneySizeList: ImageSizeVO[] = [
| {
| key: '1:1',
| width: '1',
| height: '1',
| style: 'width: 30px; height: 30px;background-color: #dcdcdc;'
| },
| {
| key: '3:4',
| width: '3',
| height: '4',
| style: 'width: 30px; height: 40px;background-color: #dcdcdc;'
| },
| {
| key: '4:3',
| width: '4',
| height: '3',
| style: 'width: 40px; height: 30px;background-color: #dcdcdc;'
| },
| {
| key: '9:16',
| width: '9',
| height: '16',
| style: 'width: 30px; height: 50px;background-color: #dcdcdc;'
| },
| {
| key: '16:9',
| width: '16',
| height: '9',
| style: 'width: 50px; height: 30px;background-color: #dcdcdc;'
| }
| ]
|
| export const MidjourneyVersions = [
| {
| value: '6.0',
| label: 'v6.0'
| },
| {
| value: '5.2',
| label: 'v5.2'
| },
| {
| value: '5.1',
| label: 'v5.1'
| },
| {
| value: '5.0',
| label: 'v5.0'
| },
| {
| value: '4.0',
| label: 'v4.0'
| }
| ]
|
| export const NijiVersionList = [
| {
| value: '5',
| label: 'v5'
| }
| ]
|
| // ========== 【写作 UI】相关的枚举 ==========
|
| /** 写作点击示例时的数据 **/
| export const WriteExample = {
| write: {
| prompt: 'vue',
| data: 'Vue.js 是一种用于构建用户界面的渐进式 JavaScript 框架。它的核心库只关注视图层,易于上手,同时也便于与其他库或已有项目整合。\n\nVue.js 的特点包括:\n- 响应式的数据绑定:Vue.js 会自动将数据与 DOM 同步,使得状态管理变得更加简单。\n- 组件化:Vue.js 允许开发者通过小型、独立和通常可复用的组件构建大型应用。\n- 虚拟 DOM:Vue.js 使用虚拟 DOM 实现快速渲染,提高了性能。\n\n在 Vue.js 中,一个典型的应用结构可能包括:\n1. 根实例:每个 Vue 应用都需要一个根实例作为入口点。\n2. 组件系统:可以创建自定义的可复用组件。\n3. 指令:特殊的带有前缀 v- 的属性,为 DOM 元素提供特殊的行为。\n4. 插值:用于文本内容,将数据动态地插入到 HTML。\n5. 计算属性和侦听器:用于处理数据的复杂逻辑和响应数据变化。\n6. 条件渲染:根据条件决定元素的渲染。\n7. 列表渲染:用于显示列表数据。\n8. 事件处理:响应用户交互。\n9. 表单输入绑定:处理表单输入和验证。\n10. 组件生命周期钩子:在组件的不同阶段执行特定的函数。\n\nVue.js 还提供了官方的路由器 Vue Router 和状态管理库 Vuex,以支持构建复杂的单页应用(SPA)。\n\n在开发过程中,开发者通常会使用 Vue CLI,这是一个强大的命令行工具,用于快速生成 Vue 项目脚手架,集成了诸如 Babel、Webpack 等现代前端工具,以及热重载、代码检测等开发体验优化功能。\n\nVue.js 的生态系统还包括大量的第三方库和插件,如 Vuetify(UI 组件库)、Vue Test Utils(测试工具)等,这些都极大地丰富了 Vue.js 的开发生态。\n\n总的来说,Vue.js 是一个灵活、高效的前端框架,适合从小型项目到大型企业级应用的开发。它的易用性、灵活性和强大的社区支持使其成为许多开发者的首选框架之一。'
| },
| reply: {
| originalContent: '领导,我想请假',
| prompt: '不批',
| data: '您的请假申请已收悉,经核实和考虑,暂时无法批准您的请假申请。\n\n如有特殊情况或紧急事务,请及时与我联系。\n\n祝工作顺利。\n\n谢谢。'
| }
| }
|
| // ========== 【思维导图 UI】相关的枚举 ==========
|
| /** 思维导图已有内容生成示例 **/
| export const MindMapContentExample = `# Java 技术栈
|
| ## 核心技术
| ### Java SE
| ### Java EE
|
| ## 框架
| ### Spring
| #### Spring Boot
| #### Spring MVC
| #### Spring Data
| ### Hibernate
| ### MyBatis
|
| ## 构建工具
| ### Maven
| ### Gradle
|
| ## 版本控制
| ### Git
| ### SVN
|
| ## 测试工具
| ### JUnit
| ### Mockito
| ### Selenium
|
| ## 应用服务器
| ### Tomcat
| ### Jetty
| ### WildFly
|
| ## 数据库
| ### MySQL
| ### PostgreSQL
| ### Oracle
| ### MongoDB
|
| ## 消息队列
| ### Kafka
| ### RabbitMQ
| ### ActiveMQ
|
| ## 微服务
| ### Spring Cloud
| ### Dubbo
|
| ## 容器化
| ### Docker
| ### Kubernetes
|
| ## 云服务
| ### AWS
| ### Azure
| ### Google Cloud
|
| ## 开发工具
| ### IntelliJ IDEA
| ### Eclipse
| ### Visual Studio Code`
|
|