sim04ful commited on
Commit
3e1b2b0
1 Parent(s): 805fc7d

updated schema_power

Browse files
Files changed (1) hide show
  1. arible_schema_power.json +114 -44
arible_schema_power.json CHANGED
@@ -1,7 +1,113 @@
1
  {
2
  "title": "AI Voice Cloner",
3
- "description": "Clone a voice using AI",
4
  "inputs": [
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  {
6
  "name": "text",
7
  "type": "text",
@@ -13,34 +119,15 @@
13
  },
14
  "title": "Content"
15
  },
16
- {
17
- "name": "audio_urls",
18
- "type": "constant",
19
- "value": [
20
- "https://pub-93685b189ac24b30839990a7d9a14391.r2.dev/attenborough_short.wav"
21
- ]
22
- },
23
  {
24
  "name": "gpt_cond_len",
25
- "type": "number",
26
- "description": "Length of audio used for gpt latents.",
27
- "title": "GPT Conditioning Length",
28
- "options": {
29
- "min": 6,
30
- "max": 60
31
- },
32
- "slider_step": 0.5
33
  },
34
  {
35
  "name": "gpt_cond_chunk_len",
36
- "type": "number",
37
- "description": "Length of audio chunks used for gpt latents.",
38
- "title": "GPT Conditioning Chunk Length",
39
- "options": {
40
- "min": 6,
41
- "max": 60
42
- },
43
- "slider_step": 0.5
44
  },
45
  {
46
  "name": "max_ref_length",
@@ -49,30 +136,13 @@
49
  },
50
  {
51
  "name": "temperature",
52
- "type": "number",
53
- "description": "Temperature for sampling.",
54
- "title": "Temperature",
55
- "options": {
56
- "min": 0.0,
57
- "max": 1.0
58
- },
59
- "slider_step": 0.1
60
  },
61
  {
62
  "name": "repetition_penalty",
63
- "type": "number",
64
- "description": "Penalty for repetition.",
65
- "title": "Repetition Penalty",
66
- "options": {
67
- "min": 1.0,
68
- "max": 10.0
69
- },
70
- "slider_step": 0.1
71
- },
72
- {
73
- "name": "language",
74
  "type": "constant",
75
- "value": "en"
76
  }
77
  ]
78
  }
 
1
  {
2
  "title": "AI Voice Cloner",
3
+ "description": "Clone any voice sample in under 10 minutes",
4
  "inputs": [
5
+ {
6
+ "name": "language",
7
+ "type": "text",
8
+ "description": "Language of the voice you want to clone",
9
+ "title": "Language",
10
+ "options": {
11
+ "min": 1,
12
+ "max": 1,
13
+ "items": [
14
+ {
15
+ "title": "English",
16
+ "value": "en",
17
+ "description": "English"
18
+ },
19
+ {
20
+ "title": "Spanish",
21
+ "value": "es",
22
+ "description": "Spanish"
23
+ },
24
+ {
25
+ "title": "French",
26
+ "value": "fr",
27
+ "description": "French"
28
+ },
29
+ {
30
+ "title": "German",
31
+ "value": "de",
32
+ "description": "German"
33
+ },
34
+ {
35
+ "title": "Italian",
36
+ "value": "it",
37
+ "description": "Italian"
38
+ },
39
+ {
40
+ "title": "Portuguese",
41
+ "value": "pt",
42
+ "description": "Portuguese"
43
+ },
44
+ {
45
+ "title": "Polish",
46
+ "value": "pl",
47
+ "description": "Polish"
48
+ },
49
+ {
50
+ "title": "Turkish",
51
+ "value": "tr",
52
+ "description": "Turkish"
53
+ },
54
+ {
55
+ "title": "Russian",
56
+ "value": "ru",
57
+ "description": "Russian"
58
+ },
59
+ {
60
+ "title": "Dutch",
61
+ "value": "nl",
62
+ "description": "Dutch"
63
+ },
64
+ {
65
+ "title": "Czech",
66
+ "value": "cs",
67
+ "description": "Czech"
68
+ },
69
+ {
70
+ "title": "Arabic",
71
+ "value": "ar",
72
+ "description": "Arabic"
73
+ },
74
+ {
75
+ "title": "Japanese",
76
+ "value": "ja",
77
+ "description": "Japanese"
78
+ },
79
+ {
80
+ "title": "Hindi",
81
+ "value": "hi",
82
+ "description": "Hindi"
83
+ },
84
+ {
85
+ "title": "Chinese",
86
+ "value": "zh-cn",
87
+ "description": "Chinese"
88
+ },
89
+ {
90
+ "title": "Korean",
91
+ "value": "ko",
92
+ "description": "Korean"
93
+ }
94
+ ]
95
+ }
96
+ },
97
+ {
98
+ "name": "audio_urls",
99
+ "type": "file",
100
+ "description": "Upload audio samples of the voice you want to clone. Supports .wav and .mp3 files.",
101
+ "title": "Audio Samples",
102
+ "mimeTypes": [
103
+ "audio/wav",
104
+ "audio/mp3"
105
+ ],
106
+ "options": {
107
+ "min": 1,
108
+ "max": 5
109
+ }
110
+ },
111
  {
112
  "name": "text",
113
  "type": "text",
 
119
  },
120
  "title": "Content"
121
  },
 
 
 
 
 
 
 
122
  {
123
  "name": "gpt_cond_len",
124
+ "type": "constant",
125
+ "value": 30
 
 
 
 
 
 
126
  },
127
  {
128
  "name": "gpt_cond_chunk_len",
129
+ "type": "constant",
130
+ "value": 25
 
 
 
 
 
 
131
  },
132
  {
133
  "name": "max_ref_length",
 
136
  },
137
  {
138
  "name": "temperature",
139
+ "type": "constant",
140
+ "value": 0.6
 
 
 
 
 
 
141
  },
142
  {
143
  "name": "repetition_penalty",
 
 
 
 
 
 
 
 
 
 
 
144
  "type": "constant",
145
+ "value": 5.0
146
  }
147
  ]
148
  }