You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: reference.md
+236-5Lines changed: 236 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6285,7 +6285,7 @@ client = ElevenLabs(
6285
6285
)
6286
6286
client.speech_to_text.convert(
6287
6287
enable_logging=True,
6288
-
model_id="scribe_v1",
6288
+
model_id="scribe_v2",
6289
6289
)
6290
6290
6291
6291
```
@@ -6984,7 +6984,7 @@ client.music.compose()
6984
6984
<dl>
6985
6985
<dd>
6986
6986
6987
-
**store_for_inpainting:** `typing.Optional[bool]` — Whether to store the generated song for inpainting. Only available to enterprise clients with access to the inpainting API.
6987
+
**store_for_inpainting:** `typing.Optional[bool]` — Whether to store the generated song for inpainting. Only available to enterprise clients with access to the inpainting feature.
**store_for_inpainting:** `typing.Optional[bool]` — Whether to store the generated song for inpainting. Only available to enterprise clients with access to the inpainting API.
7119
+
**store_for_inpainting:** `typing.Optional[bool]` — Whether to store the generated song for inpainting. Only available to enterprise clients with access to the inpainting feature.
7120
7120
7121
7121
</dd>
7122
7122
</dl>
@@ -7256,7 +7256,7 @@ client.music.stream()
7256
7256
<dl>
7257
7257
<dd>
7258
7258
7259
-
**store_for_inpainting:** `typing.Optional[bool]` — Whether to store the generated song for inpainting. Only available to enterprise clients with access to the inpainting API.
7259
+
**store_for_inpainting:** `typing.Optional[bool]` — Whether to store the generated song for inpainting. Only available to enterprise clients with access to the inpainting feature.
Upload a music file to be later used for inpainting. Only available to enterprise clients with access to the inpainting feature.
7292
+
</dd>
7293
+
</dl>
7294
+
</dd>
7295
+
</dl>
7296
+
7297
+
#### 🔌 Usage
7298
+
7299
+
<dl>
7300
+
<dd>
7301
+
7302
+
<dl>
7303
+
<dd>
7304
+
7305
+
```python
7306
+
from elevenlabs import ElevenLabs
7307
+
7308
+
client = ElevenLabs(
7309
+
api_key="YOUR_API_KEY",
7310
+
)
7311
+
client.music.upload()
7312
+
7313
+
```
7314
+
</dd>
7315
+
</dl>
7316
+
</dd>
7317
+
</dl>
7318
+
7319
+
#### ⚙️ Parameters
7320
+
7321
+
<dl>
7322
+
<dd>
7323
+
7324
+
<dl>
7325
+
<dd>
7326
+
7327
+
**file:** `from __future__ import annotations
7328
+
7329
+
core.File` — See core.File for more documentation
7330
+
7331
+
</dd>
7332
+
</dl>
7333
+
7334
+
<dl>
7335
+
<dd>
7336
+
7337
+
**extract_composition_plan:** `typing.Optional[bool]` — Whether to generate and return the composition plan for the uploaded song. If True, the response will include the composition_plan but will increase the latency.
**enable_versioning:** `typing.Optional[bool]` — Enable versioning for the agent
8442
+
8443
+
</dd>
8444
+
</dl>
8445
+
8446
+
<dl>
8447
+
<dd>
8448
+
8354
8449
**platform_settings:** `typing.Optional[AgentPlatformSettingsRequestModel]` — Platform settings for the agent are all settings that aren't related to the conversation orchestration and content.
**include_folders:** `typing.Optional[bool]` — Whether to include folders in the response. Defaults to false.
9769
+
**types:** `typing.Optional[typing.Union[TestType, typing.Sequence[TestType]]]` — If present, the endpoint will return only tests/folders of the given types.
9770
+
9771
+
</dd>
9772
+
</dl>
9773
+
9774
+
<dl>
9775
+
<dd>
9776
+
9777
+
**include_folders:** `typing.Optional[bool]` — Deprecated. Use the `types` query param and include `folder` instead.
0 commit comments