We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dd1827 commit cb8f9d3Copy full SHA for cb8f9d3
pyproject.toml
@@ -4,7 +4,7 @@ dynamic = ["version"]
4
5
[tool.poetry]
6
name = "elevenlabs"
7
-version = "v2.26.0"
+version = "v2.26.1"
8
description = ""
9
readme = "README.md"
10
authors = []
src/elevenlabs/core/client_wrapper.py
@@ -22,10 +22,10 @@ def __init__(
22
23
def get_headers(self) -> typing.Dict[str, str]:
24
headers: typing.Dict[str, str] = {
25
- "User-Agent": "elevenlabs/v2.26.0",
+ "User-Agent": "elevenlabs/v2.26.1",
26
"X-Fern-Language": "Python",
27
"X-Fern-SDK-Name": "elevenlabs",
28
- "X-Fern-SDK-Version": "v2.26.0",
+ "X-Fern-SDK-Version": "v2.26.1",
29
**(self.get_custom_headers() or {}),
30
}
31
if self._api_key is not None:
0 commit comments