@@ -49,7 +49,6 @@ def create(
49
49
self ,
50
50
* ,
51
51
prompt : str ,
52
- creator_wallet_address : str | NotGiven = NOT_GIVEN ,
53
52
genre : str | NotGiven = NOT_GIVEN ,
54
53
is_instrumental : bool | NotGiven = NOT_GIVEN ,
55
54
lyrics : str | NotGiven = NOT_GIVEN ,
@@ -67,15 +66,15 @@ def create(
67
66
hour per API key.
68
67
69
68
Args:
70
- prompt: Text prompt for song generation
71
-
72
- creator_wallet_address: Wallet address of the creator
69
+ prompt: Text prompt for song generation (max 200 characters)
73
70
74
71
genre: Musical genre
75
72
76
- is_instrumental: Whether the song should be instrumental
73
+ is_instrumental: Whether the song should be instrumental. If the song is instrumental, the lyrics
74
+ will be ignored.
77
75
78
- lyrics: Optional lyrics for the song
76
+ lyrics: Optional lyrics for the song. If not provided, the prompt will be used to
77
+ generate lyrics.
79
78
80
79
mood: Mood of the song
81
80
@@ -92,7 +91,6 @@ def create(
92
91
body = maybe_transform (
93
92
{
94
93
"prompt" : prompt ,
95
- "creator_wallet_address" : creator_wallet_address ,
96
94
"genre" : genre ,
97
95
"is_instrumental" : is_instrumental ,
98
96
"lyrics" : lyrics ,
@@ -210,7 +208,6 @@ async def create(
210
208
self ,
211
209
* ,
212
210
prompt : str ,
213
- creator_wallet_address : str | NotGiven = NOT_GIVEN ,
214
211
genre : str | NotGiven = NOT_GIVEN ,
215
212
is_instrumental : bool | NotGiven = NOT_GIVEN ,
216
213
lyrics : str | NotGiven = NOT_GIVEN ,
@@ -228,15 +225,15 @@ async def create(
228
225
hour per API key.
229
226
230
227
Args:
231
- prompt: Text prompt for song generation
232
-
233
- creator_wallet_address: Wallet address of the creator
228
+ prompt: Text prompt for song generation (max 200 characters)
234
229
235
230
genre: Musical genre
236
231
237
- is_instrumental: Whether the song should be instrumental
232
+ is_instrumental: Whether the song should be instrumental. If the song is instrumental, the lyrics
233
+ will be ignored.
238
234
239
- lyrics: Optional lyrics for the song
235
+ lyrics: Optional lyrics for the song. If not provided, the prompt will be used to
236
+ generate lyrics.
240
237
241
238
mood: Mood of the song
242
239
@@ -253,7 +250,6 @@ async def create(
253
250
body = await async_maybe_transform (
254
251
{
255
252
"prompt" : prompt ,
256
- "creator_wallet_address" : creator_wallet_address ,
257
253
"genre" : genre ,
258
254
"is_instrumental" : is_instrumental ,
259
255
"lyrics" : lyrics ,
0 commit comments