Skip to content

Commit abe66f1

Browse files
feat(api): api update (#8)
1 parent 94dcca5 commit abe66f1

File tree

4 files changed

+20
-23
lines changed

4 files changed

+20
-23
lines changed

.stats.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 3
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/beats-ai-beatsfoundation%2Fbeats-foundation-f711efcd99b00b3dc26c741770eecb8c17dc76bac1372c192aa232b4aae417e9.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/beats-ai-beatsfoundation%2Fbeats-foundation-a9c1eafa5562186e8548b92140925552d512f52e1b9cedd337bef8544e437c15.yml

src/beats_foundation/resources/songs.py

+10-14
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ def create(
4949
self,
5050
*,
5151
prompt: str,
52-
creator_wallet_address: str | NotGiven = NOT_GIVEN,
5352
genre: str | NotGiven = NOT_GIVEN,
5453
is_instrumental: bool | NotGiven = NOT_GIVEN,
5554
lyrics: str | NotGiven = NOT_GIVEN,
@@ -67,15 +66,15 @@ def create(
6766
hour per API key.
6867
6968
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)
7370
7471
genre: Musical genre
7572
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.
7775
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.
7978
8079
mood: Mood of the song
8180
@@ -92,7 +91,6 @@ def create(
9291
body=maybe_transform(
9392
{
9493
"prompt": prompt,
95-
"creator_wallet_address": creator_wallet_address,
9694
"genre": genre,
9795
"is_instrumental": is_instrumental,
9896
"lyrics": lyrics,
@@ -210,7 +208,6 @@ async def create(
210208
self,
211209
*,
212210
prompt: str,
213-
creator_wallet_address: str | NotGiven = NOT_GIVEN,
214211
genre: str | NotGiven = NOT_GIVEN,
215212
is_instrumental: bool | NotGiven = NOT_GIVEN,
216213
lyrics: str | NotGiven = NOT_GIVEN,
@@ -228,15 +225,15 @@ async def create(
228225
hour per API key.
229226
230227
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)
234229
235230
genre: Musical genre
236231
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.
238234
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.
240237
241238
mood: Mood of the song
242239
@@ -253,7 +250,6 @@ async def create(
253250
body=await async_maybe_transform(
254251
{
255252
"prompt": prompt,
256-
"creator_wallet_address": creator_wallet_address,
257253
"genre": genre,
258254
"is_instrumental": is_instrumental,
259255
"lyrics": lyrics,

src/beats_foundation/types/song_create_params.py

+9-6
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,22 @@
1111

1212
class SongCreateParams(TypedDict, total=False):
1313
prompt: Required[str]
14-
"""Text prompt for song generation"""
15-
16-
creator_wallet_address: Annotated[str, PropertyInfo(alias="creatorWalletAddress")]
17-
"""Wallet address of the creator"""
14+
"""Text prompt for song generation (max 200 characters)"""
1815

1916
genre: str
2017
"""Musical genre"""
2118

2219
is_instrumental: Annotated[bool, PropertyInfo(alias="isInstrumental")]
23-
"""Whether the song should be instrumental"""
20+
"""Whether the song should be instrumental.
21+
22+
If the song is instrumental, the lyrics will be ignored.
23+
"""
2424

2525
lyrics: str
26-
"""Optional lyrics for the song"""
26+
"""Optional lyrics for the song.
27+
28+
If not provided, the prompt will be used to generate lyrics.
29+
"""
2730

2831
mood: str
2932
"""Mood of the song"""

tests/api_resources/test_songs.py

-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ def test_method_create(self, client: Beatsfoundation) -> None:
2828
def test_method_create_with_all_params(self, client: Beatsfoundation) -> None:
2929
song = client.songs.create(
3030
prompt="prompt",
31-
creator_wallet_address="creatorWalletAddress",
3231
genre="genre",
3332
is_instrumental=True,
3433
lyrics="lyrics",
@@ -146,7 +145,6 @@ async def test_method_create(self, async_client: AsyncBeatsfoundation) -> None:
146145
async def test_method_create_with_all_params(self, async_client: AsyncBeatsfoundation) -> None:
147146
song = await async_client.songs.create(
148147
prompt="prompt",
149-
creator_wallet_address="creatorWalletAddress",
150148
genre="genre",
151149
is_instrumental=True,
152150
lyrics="lyrics",

0 commit comments

Comments
 (0)