@purpleschool/ai-proxy 0.1.13 → 0.1.14
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/package.json +1 -1
- package/proto/ai-proxy.proto +11 -0
package/package.json
CHANGED
package/proto/ai-proxy.proto
CHANGED
|
@@ -182,6 +182,8 @@ message MusicGenerationRequest {
|
|
|
182
182
|
|
|
183
183
|
message MusicGenerationResponse {
|
|
184
184
|
string jobId = 1;
|
|
185
|
+
repeated MusicGenerationTrack tracks = 2;
|
|
186
|
+
optional string error = 3;
|
|
185
187
|
}
|
|
186
188
|
|
|
187
189
|
message MusicGenerationParams {
|
|
@@ -192,6 +194,15 @@ message MusicGenerationParams {
|
|
|
192
194
|
optional string vocalGender = 5;
|
|
193
195
|
}
|
|
194
196
|
|
|
197
|
+
message MusicGenerationTrack {
|
|
198
|
+
string title = 1;
|
|
199
|
+
string audioId = 2;
|
|
200
|
+
string audioUrl= 3;
|
|
201
|
+
string coverUrl = 4;
|
|
202
|
+
string tags = 5;
|
|
203
|
+
float duration = 6;
|
|
204
|
+
}
|
|
205
|
+
|
|
195
206
|
// Generate Lyrics
|
|
196
207
|
message GenerateLyricsRequest {
|
|
197
208
|
string prompt = 1;
|