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
| import request from '@/utils/request/req';
|
| export interface RoleReq {
| name:string; // 名称
| description:string; //描述
| avatar: string; //头像地址
| appUrl:string;//应用地址
| }
|
| export interface SimpleGenerate {
| model: string,
| randomness: number,
| stability_boost: number,
| voiceId: string,
| text: string
| }
|
| export interface Character {
| id:string;
| name:string; // 名称
| description:string; //描述
| avatar: string; //头像地址
| appUrl:string;//应用地址
| }
|
| export function createRole(params:RoleReq) {
| return request({
| url: '/system/voice/add',
| method: 'post',
| data: params,
| })
| }
|
|
| export function simpleGenerateReq(params:SimpleGenerate) {
| return request({
| url: '/system/voice/simpleGenerate',
| method: 'post',
| data: params,
| })
| }
|
| export function delRole(id:string) {
| return request({
| url: '/system/voice/'+ id,
| method: 'delete',
| })
| }
|
| export function getRole() {
| return request({
| url: '/system/voice/list',
| method: 'get',
| })
| }
|
| /**
| * 获取应用信息
| *
| * @returns 应用列表
| *
| */
| export function getAppList() {
| return request({
| url: '/system/store/appList',
| method: 'get'
| })
| }
|
| /**
| * 收藏声音市场角色
| *
| */
| export function copyRoleList(item: any) {
| return request({
| url: '/system/voice/copyRole',
| method: 'post',
| data: item
| })
| }
|
|