Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .fern/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@
}
]
},
"originGitCommit": "085495d2c98acb98352c8413534b07ef7d52e7e4"
"originGitCommit": "6c42e37ab55baee85654fffddd43af522c9fd27b"
}
6 changes: 3 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dynamic = ["version"]

[tool.poetry]
name = "elevenlabs"
version = "2.47.0"
version = "2.48.0"
description = ""
readme = "README.md"
authors = []
Expand Down Expand Up @@ -43,7 +43,7 @@ pydantic = ">= 1.9.2"
pydantic-core = ">=2.18.2"
requests = ">=2.20"
typing_extensions = ">= 4.0.0"
websockets = ">=13.0"
websockets = ">=11.0"

[tool.poetry.group.dev.dependencies]
mypy = "==1.13.0"
Expand Down
180 changes: 180 additions & 0 deletions reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -8643,6 +8643,7 @@ client.conversational_ai.conversations.list(
summary_mode="exclude",
search="search",
conversation_initiation_source="unknown",
text_only=True,
branch_id="branch_id",
topic_ids=["topic_ids"],
exclude_statuses=["initiated"],
Expand Down Expand Up @@ -8831,6 +8832,14 @@ client.conversational_ai.conversations.list(
<dl>
<dd>

**text_only:** `typing.Optional[bool]`

</dd>
</dl>

<dl>
<dd>

**branch_id:** `typing.Optional[str]` — Filter conversations by branch ID.

</dd>
Expand Down Expand Up @@ -15663,6 +15672,86 @@ client.conversational_ai.agents.branches.merge(
</dl>


</dd>
</dl>
</details>

## ConversationalAi Agents Versions
<details><summary><code>client.conversational_ai.agents.versions.<a href="src/elevenlabs/conversational_ai/agents/versions/client.py">get</a>(...)</code></summary>
<dl>
<dd>

#### 📝 Description

<dl>
<dd>

<dl>
<dd>

Get metadata for a specific agent version
</dd>
</dl>
</dd>
</dl>

#### 🔌 Usage

<dl>
<dd>

<dl>
<dd>

```python
from elevenlabs import ElevenLabs

client = ElevenLabs(
api_key="YOUR_API_KEY",
)
client.conversational_ai.agents.versions.get(
agent_id="agent_3701k3ttaq12ewp8b7qv5rfyszkz",
version_id="agtvrsn_0901k4aafjxxfxt93gd841r7tv5t",
)

```
</dd>
</dl>
</dd>
</dl>

#### ⚙️ Parameters

<dl>
<dd>

<dl>
<dd>

**agent_id:** `str` — The id of an agent. This is returned on agent creation.

</dd>
</dl>

<dl>
<dd>

**version_id:** `str` — Unique identifier for the version.

</dd>
</dl>

<dl>
<dd>

**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.

</dd>
</dl>
</dd>
</dl>


</dd>
</dl>
</details>
Expand Down Expand Up @@ -16414,6 +16503,7 @@ client.conversational_ai.conversations.messages.text_search(
page_size=1,
summary_mode="exclude",
conversation_initiation_source="unknown",
text_only=True,
branch_id="branch_id",
sort_by="search_score",
cursor="cursor",
Expand Down Expand Up @@ -16593,6 +16683,14 @@ client.conversational_ai.conversations.messages.text_search(
<dl>
<dd>

**text_only:** `typing.Optional[bool]`

</dd>
</dl>

<dl>
<dd>

**branch_id:** `typing.Optional[str]` — Filter conversations by branch ID.

</dd>
Expand Down Expand Up @@ -27343,6 +27441,88 @@ client.workspace.auth_connections.delete(
</dl>


</dd>
</dl>
</details>

<details><summary><code>client.workspace.auth_connections.<a href="src/elevenlabs/workspace/auth_connections/client.py">update</a>(...)</code></summary>
<dl>
<dd>

#### 📝 Description

<dl>
<dd>

<dl>
<dd>

Update an auth connection
</dd>
</dl>
</dd>
</dl>

#### 🔌 Usage

<dl>
<dd>

<dl>
<dd>

```python
from elevenlabs import ElevenLabs
from elevenlabs.workspace.auth_connections import (
AuthConnectionsUpdateRequestBody_Oauth2ClientCredentials,
)

client = ElevenLabs(
api_key="YOUR_API_KEY",
)
client.workspace.auth_connections.update(
auth_connection_id="auth_connection_id",
request=AuthConnectionsUpdateRequestBody_Oauth2ClientCredentials(),
)

```
</dd>
</dl>
</dd>
</dl>

#### ⚙️ Parameters

<dl>
<dd>

<dl>
<dd>

**auth_connection_id:** `str`

</dd>
</dl>

<dl>
<dd>

**request:** `AuthConnectionsUpdateRequestBody`

</dd>
</dl>

<dl>
<dd>

**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.

</dd>
</dl>
</dd>
</dl>


</dd>
</dl>
</details>
Expand Down
Loading
Loading