Skip to content

Commit a8b4b1c

Browse files
SDK regeneration (#790)
Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com>
1 parent 733193b commit a8b4b1c

58 files changed

Lines changed: 1837 additions & 29 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.fern/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@
5555
}
5656
]
5757
},
58-
"originGitCommit": "085495d2c98acb98352c8413534b07ef7d52e7e4"
58+
"originGitCommit": "6c42e37ab55baee85654fffddd43af522c9fd27b"
5959
}

poetry.lock

Lines changed: 3 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dynamic = ["version"]
44

55
[tool.poetry]
66
name = "elevenlabs"
7-
version = "2.47.0"
7+
version = "2.48.0"
88
description = ""
99
readme = "README.md"
1010
authors = []
@@ -43,7 +43,7 @@ pydantic = ">= 1.9.2"
4343
pydantic-core = ">=2.18.2"
4444
requests = ">=2.20"
4545
typing_extensions = ">= 4.0.0"
46-
websockets = ">=13.0"
46+
websockets = ">=11.0"
4747

4848
[tool.poetry.group.dev.dependencies]
4949
mypy = "==1.13.0"

reference.md

Lines changed: 180 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8643,6 +8643,7 @@ client.conversational_ai.conversations.list(
86438643
summary_mode="exclude",
86448644
search="search",
86458645
conversation_initiation_source="unknown",
8646+
text_only=True,
86468647
branch_id="branch_id",
86478648
topic_ids=["topic_ids"],
86488649
exclude_statuses=["initiated"],
@@ -8831,6 +8832,14 @@ client.conversational_ai.conversations.list(
88318832
<dl>
88328833
<dd>
88338834

8835+
**text_only:** `typing.Optional[bool]`
8836+
8837+
</dd>
8838+
</dl>
8839+
8840+
<dl>
8841+
<dd>
8842+
88348843
**branch_id:** `typing.Optional[str]` — Filter conversations by branch ID.
88358844

88368845
</dd>
@@ -15663,6 +15672,86 @@ client.conversational_ai.agents.branches.merge(
1566315672
</dl>
1566415673

1566515674

15675+
</dd>
15676+
</dl>
15677+
</details>
15678+
15679+
## ConversationalAi Agents Versions
15680+
<details><summary><code>client.conversational_ai.agents.versions.<a href="src/elevenlabs/conversational_ai/agents/versions/client.py">get</a>(...)</code></summary>
15681+
<dl>
15682+
<dd>
15683+
15684+
#### 📝 Description
15685+
15686+
<dl>
15687+
<dd>
15688+
15689+
<dl>
15690+
<dd>
15691+
15692+
Get metadata for a specific agent version
15693+
</dd>
15694+
</dl>
15695+
</dd>
15696+
</dl>
15697+
15698+
#### 🔌 Usage
15699+
15700+
<dl>
15701+
<dd>
15702+
15703+
<dl>
15704+
<dd>
15705+
15706+
```python
15707+
from elevenlabs import ElevenLabs
15708+
15709+
client = ElevenLabs(
15710+
api_key="YOUR_API_KEY",
15711+
)
15712+
client.conversational_ai.agents.versions.get(
15713+
agent_id="agent_3701k3ttaq12ewp8b7qv5rfyszkz",
15714+
version_id="agtvrsn_0901k4aafjxxfxt93gd841r7tv5t",
15715+
)
15716+
15717+
```
15718+
</dd>
15719+
</dl>
15720+
</dd>
15721+
</dl>
15722+
15723+
#### ⚙️ Parameters
15724+
15725+
<dl>
15726+
<dd>
15727+
15728+
<dl>
15729+
<dd>
15730+
15731+
**agent_id:** `str` — The id of an agent. This is returned on agent creation.
15732+
15733+
</dd>
15734+
</dl>
15735+
15736+
<dl>
15737+
<dd>
15738+
15739+
**version_id:** `str` — Unique identifier for the version.
15740+
15741+
</dd>
15742+
</dl>
15743+
15744+
<dl>
15745+
<dd>
15746+
15747+
**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
15748+
15749+
</dd>
15750+
</dl>
15751+
</dd>
15752+
</dl>
15753+
15754+
1566615755
</dd>
1566715756
</dl>
1566815757
</details>
@@ -16414,6 +16503,7 @@ client.conversational_ai.conversations.messages.text_search(
1641416503
page_size=1,
1641516504
summary_mode="exclude",
1641616505
conversation_initiation_source="unknown",
16506+
text_only=True,
1641716507
branch_id="branch_id",
1641816508
sort_by="search_score",
1641916509
cursor="cursor",
@@ -16593,6 +16683,14 @@ client.conversational_ai.conversations.messages.text_search(
1659316683
<dl>
1659416684
<dd>
1659516685

16686+
**text_only:** `typing.Optional[bool]`
16687+
16688+
</dd>
16689+
</dl>
16690+
16691+
<dl>
16692+
<dd>
16693+
1659616694
**branch_id:** `typing.Optional[str]` — Filter conversations by branch ID.
1659716695

1659816696
</dd>
@@ -27343,6 +27441,88 @@ client.workspace.auth_connections.delete(
2734327441
</dl>
2734427442

2734527443

27444+
</dd>
27445+
</dl>
27446+
</details>
27447+
27448+
<details><summary><code>client.workspace.auth_connections.<a href="src/elevenlabs/workspace/auth_connections/client.py">update</a>(...)</code></summary>
27449+
<dl>
27450+
<dd>
27451+
27452+
#### 📝 Description
27453+
27454+
<dl>
27455+
<dd>
27456+
27457+
<dl>
27458+
<dd>
27459+
27460+
Update an auth connection
27461+
</dd>
27462+
</dl>
27463+
</dd>
27464+
</dl>
27465+
27466+
#### 🔌 Usage
27467+
27468+
<dl>
27469+
<dd>
27470+
27471+
<dl>
27472+
<dd>
27473+
27474+
```python
27475+
from elevenlabs import ElevenLabs
27476+
from elevenlabs.workspace.auth_connections import (
27477+
AuthConnectionsUpdateRequestBody_Oauth2ClientCredentials,
27478+
)
27479+
27480+
client = ElevenLabs(
27481+
api_key="YOUR_API_KEY",
27482+
)
27483+
client.workspace.auth_connections.update(
27484+
auth_connection_id="auth_connection_id",
27485+
request=AuthConnectionsUpdateRequestBody_Oauth2ClientCredentials(),
27486+
)
27487+
27488+
```
27489+
</dd>
27490+
</dl>
27491+
</dd>
27492+
</dl>
27493+
27494+
#### ⚙️ Parameters
27495+
27496+
<dl>
27497+
<dd>
27498+
27499+
<dl>
27500+
<dd>
27501+
27502+
**auth_connection_id:** `str`
27503+
27504+
</dd>
27505+
</dl>
27506+
27507+
<dl>
27508+
<dd>
27509+
27510+
**request:** `AuthConnectionsUpdateRequestBody`
27511+
27512+
</dd>
27513+
</dl>
27514+
27515+
<dl>
27516+
<dd>
27517+
27518+
**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
27519+
27520+
</dd>
27521+
</dl>
27522+
</dd>
27523+
</dl>
27524+
27525+
2734627526
</dd>
2734727527
</dl>
2734827528
</details>

0 commit comments

Comments
 (0)