Skip to content

Commit a1cb820

Browse files
committed
Release 1.2.3
1 parent 0bc5fde commit a1cb820

File tree

6 files changed

+17
-14
lines changed

6 files changed

+17
-14
lines changed

poetry.lock

Lines changed: 6 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "murf"
33

44
[tool.poetry]
55
name = "murf"
6-
version = "1.2.2"
6+
version = "1.2.3"
77
description = ""
88
readme = "README.md"
99
authors = []

reference.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ client.text_to_speech.generate(
122122
<dl>
123123
<dd>
124124

125-
**voice_id:** `str` — Use the GET /v1/speech/voices api to find supported voiceIds.
125+
**voice_id:** `str` — Use the GET /v1/speech/voices API to find supported voiceIds. You can use either the voiceId (e.g. en-US-natalie) or just the voice actor's name (e.g. natalie).
126126

127127
</dd>
128128
</dl>
@@ -303,7 +303,7 @@ client.text_to_speech.stream()
303303
<dl>
304304
<dd>
305305

306-
**voice_id:** `str` — Use the GET /v1/speech/voices api to find supported voiceIds.
306+
**voice_id:** `str` — Use the GET /v1/speech/voices API to find supported voiceIds. You can use either the voiceId (e.g. en-US-natalie) or just the voice actor's name (e.g. natalie).
307307

308308
</dd>
309309
</dl>
@@ -722,7 +722,7 @@ Example 2: '{"2022": {"type": "SAY_AS", "pronunciation": "twenty twenty two"}}'
722722
<dl>
723723
<dd>
724724

725-
**voice_id:** `typing.Optional[str]` — Use the GET /v1/speech/voices api to find supported voiceIds.
725+
**voice_id:** `typing.Optional[str]` — Use the GET /v1/speech/voices API to find supported voiceIds. You can use either the voiceId (e.g. en-US-natalie) or just the voice actor's name (e.g. natalie).
726726

727727
</dd>
728728
</dl>

src/murf/core/client_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def get_headers(self) -> typing.Dict[str, str]:
1616
headers: typing.Dict[str, str] = {
1717
"X-Fern-Language": "Python",
1818
"X-Fern-SDK-Name": "murf",
19-
"X-Fern-SDK-Version": "1.2.2",
19+
"X-Fern-SDK-Version": "1.2.3",
2020
}
2121
if self._api_key is not None:
2222
headers["api-key"] = self._api_key

src/murf/text_to_speech/client.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def generate(
5454
The text that is to be synthesised. e.g. 'Hello there [pause 1s] friend'
5555
5656
voice_id : str
57-
Use the GET /v1/speech/voices api to find supported voiceIds.
57+
Use the GET /v1/speech/voices API to find supported voiceIds. You can use either the voiceId (e.g. en-US-natalie) or just the voice actor's name (e.g. natalie).
5858
5959
audio_duration : typing.Optional[float]
6060
This parameter allows specifying the duration (in seconds) for the generated audio. If the value is 0, this parameter will be ignored. Only available for Gen2 model.
@@ -234,7 +234,7 @@ def stream(
234234
The text that is to be synthesised. e.g. 'Hello there [pause 1s] friend'
235235
236236
voice_id : str
237-
Use the GET /v1/speech/voices api to find supported voiceIds.
237+
Use the GET /v1/speech/voices API to find supported voiceIds. You can use either the voiceId (e.g. en-US-natalie) or just the voice actor's name (e.g. natalie).
238238
239239
channel_type : typing.Optional[str]
240240
Valid values: STEREO, MONO
@@ -483,7 +483,7 @@ async def generate(
483483
The text that is to be synthesised. e.g. 'Hello there [pause 1s] friend'
484484
485485
voice_id : str
486-
Use the GET /v1/speech/voices api to find supported voiceIds.
486+
Use the GET /v1/speech/voices API to find supported voiceIds. You can use either the voiceId (e.g. en-US-natalie) or just the voice actor's name (e.g. natalie).
487487
488488
audio_duration : typing.Optional[float]
489489
This parameter allows specifying the duration (in seconds) for the generated audio. If the value is 0, this parameter will be ignored. Only available for Gen2 model.
@@ -671,7 +671,7 @@ async def stream(
671671
The text that is to be synthesised. e.g. 'Hello there [pause 1s] friend'
672672
673673
voice_id : str
674-
Use the GET /v1/speech/voices api to find supported voiceIds.
674+
Use the GET /v1/speech/voices API to find supported voiceIds. You can use either the voiceId (e.g. en-US-natalie) or just the voice actor's name (e.g. natalie).
675675
676676
channel_type : typing.Optional[str]
677677
Valid values: STEREO, MONO

src/murf/voice_changer/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def convert(
109109
Higher values will add more variation in terms of Pause, Pitch, and Speed to the voice. Only available for Gen2 model.
110110
111111
voice_id : typing.Optional[str]
112-
Use the GET /v1/speech/voices api to find supported voiceIds.
112+
Use the GET /v1/speech/voices API to find supported voiceIds. You can use either the voiceId (e.g. en-US-natalie) or just the voice actor's name (e.g. natalie).
113113
114114
request_options : typing.Optional[RequestOptions]
115115
Request-specific configuration.
@@ -311,7 +311,7 @@ async def convert(
311311
Higher values will add more variation in terms of Pause, Pitch, and Speed to the voice. Only available for Gen2 model.
312312
313313
voice_id : typing.Optional[str]
314-
Use the GET /v1/speech/voices api to find supported voiceIds.
314+
Use the GET /v1/speech/voices API to find supported voiceIds. You can use either the voiceId (e.g. en-US-natalie) or just the voice actor's name (e.g. natalie).
315315
316316
request_options : typing.Optional[RequestOptions]
317317
Request-specific configuration.

0 commit comments

Comments
 (0)