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 521192b commit c940195Copy full SHA for c940195
src/elevenlabs/conversational_ai/conversation.py
@@ -229,9 +229,5 @@ def _get_wss_url(self):
229
return f"{base_ws_url}/v1/convai/conversation?agent_id={self.agent_id}"
230
231
def _get_signed_url(self):
232
- # TODO: Use generated SDK method once available.
233
- response = self.client._client_wrapper.httpx_client.request(
234
- f"v1/convai/conversation/get_signed_url?agent_id={self.agent_id}",
235
- method="GET",
236
- )
237
- return response.json()["signed_url"]
+ response = self.client.get_signed_url(agent_id=self.agent_id)
+ return response.signed_url
0 commit comments