code stringlengths 66 870k | docstring stringlengths 19 26.7k | func_name stringlengths 1 138 | language stringclasses 1
value | repo stringlengths 7 68 | path stringlengths 5 324 | url stringlengths 46 389 | license stringclasses 7
values |
|---|---|---|---|---|---|---|---|
async def delete(
self, agent_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> AsyncHttpResponse[None]:
"""
Delete an agent
Parameters
----------
agent_id : str
The id of an agent. This is returned on agent creation.
reque... |
Delete an agent
Parameters
----------
agent_id : str
The id of an agent. This is returned on agent creation.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
AsyncHttpResponse[Non... | delete | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/agents/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/agents/raw_client.py | MIT |
async def update(
self,
agent_id: str,
*,
conversation_config: typing.Optional[ConversationalConfig] = OMIT,
platform_settings: typing.Optional[AgentPlatformSettingsRequestModel] = OMIT,
name: typing.Optional[str] = OMIT,
tags: typing.Optional[typing.Sequence[str]... |
Patches an Agent settings
Parameters
----------
agent_id : str
The id of an agent. This is returned on agent creation.
conversation_config : typing.Optional[ConversationalConfig]
Conversation configuration for an agent
platform_settings : typin... | update | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/agents/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/agents/raw_client.py | MIT |
async def list(
self,
*,
cursor: typing.Optional[str] = None,
page_size: typing.Optional[int] = None,
search: typing.Optional[str] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> AsyncHttpResponse[GetAgentsPageResponseModel]:
"""
... |
Returns a list of your agents and their metadata.
Parameters
----------
cursor : typing.Optional[str]
Used for fetching next page. Cursor is returned in the response.
page_size : typing.Optional[int]
How many Agents to return at maximum. Can not exceed ... | list | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/agents/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/agents/raw_client.py | MIT |
async def simulate_conversation(
self,
agent_id: str,
*,
simulation_specification: ConversationSimulationSpecification,
extra_evaluation_criteria: typing.Optional[typing.Sequence[PromptEvaluationCriteria]] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
... |
Run a conversation between the agent and a simulated user.
Parameters
----------
agent_id : str
The id of an agent. This is returned on agent creation.
simulation_specification : ConversationSimulationSpecification
A specification detailing how the conv... | simulate_conversation | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/agents/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/agents/raw_client.py | MIT |
async def simulate_conversation_stream(
self,
agent_id: str,
*,
simulation_specification: ConversationSimulationSpecification,
extra_evaluation_criteria: typing.Optional[typing.Sequence[PromptEvaluationCriteria]] = OMIT,
request_options: typing.Optional[RequestOptions] = ... |
Run a conversation between the agent and a simulated user and stream back the response. Response is streamed back as partial lists of messages that should be concatenated and once the conversation has complete a single final message with the conversation analysis will be sent.
Parameters
-----... | simulate_conversation_stream | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/agents/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/agents/raw_client.py | MIT |
def size(
self, agent_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> GetAgentKnowledgebaseSizeResponseModel:
"""
Returns the number of pages in the agent's knowledge base.
Parameters
----------
agent_id : str
request_options : typin... |
Returns the number of pages in the agent's knowledge base.
Parameters
----------
agent_id : str
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
GetAgentKnowledgebaseSizeResponseModel
... | size | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/agents/knowledge_base/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/agents/knowledge_base/client.py | MIT |
async def size(
self, agent_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> GetAgentKnowledgebaseSizeResponseModel:
"""
Returns the number of pages in the agent's knowledge base.
Parameters
----------
agent_id : str
request_options :... |
Returns the number of pages in the agent's knowledge base.
Parameters
----------
agent_id : str
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
GetAgentKnowledgebaseSizeResponseModel
... | size | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/agents/knowledge_base/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/agents/knowledge_base/client.py | MIT |
def size(
self, agent_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> HttpResponse[GetAgentKnowledgebaseSizeResponseModel]:
"""
Returns the number of pages in the agent's knowledge base.
Parameters
----------
agent_id : str
request_o... |
Returns the number of pages in the agent's knowledge base.
Parameters
----------
agent_id : str
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
HttpResponse[GetAgentKnowledgebaseSizeResponse... | size | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/agents/knowledge_base/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/agents/knowledge_base/raw_client.py | MIT |
async def size(
self, agent_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> AsyncHttpResponse[GetAgentKnowledgebaseSizeResponseModel]:
"""
Returns the number of pages in the agent's knowledge base.
Parameters
----------
agent_id : str
... |
Returns the number of pages in the agent's knowledge base.
Parameters
----------
agent_id : str
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
AsyncHttpResponse[GetAgentKnowledgebaseSizeRes... | size | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/agents/knowledge_base/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/agents/knowledge_base/raw_client.py | MIT |
def get(
self, agent_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> GetAgentLinkResponseModel:
"""
Get the current link used to share the agent with others
Parameters
----------
agent_id : str
The id of an agent. This is returned... |
Get the current link used to share the agent with others
Parameters
----------
agent_id : str
The id of an agent. This is returned on agent creation.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
... | get | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/agents/link/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/agents/link/client.py | MIT |
async def get(
self, agent_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> GetAgentLinkResponseModel:
"""
Get the current link used to share the agent with others
Parameters
----------
agent_id : str
The id of an agent. This is re... |
Get the current link used to share the agent with others
Parameters
----------
agent_id : str
The id of an agent. This is returned on agent creation.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
... | get | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/agents/link/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/agents/link/client.py | MIT |
def get(
self, agent_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> HttpResponse[GetAgentLinkResponseModel]:
"""
Get the current link used to share the agent with others
Parameters
----------
agent_id : str
The id of an agent. Th... |
Get the current link used to share the agent with others
Parameters
----------
agent_id : str
The id of an agent. This is returned on agent creation.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
... | get | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/agents/link/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/agents/link/raw_client.py | MIT |
async def get(
self, agent_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> AsyncHttpResponse[GetAgentLinkResponseModel]:
"""
Get the current link used to share the agent with others
Parameters
----------
agent_id : str
The id of a... |
Get the current link used to share the agent with others
Parameters
----------
agent_id : str
The id of an agent. This is returned on agent creation.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
... | get | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/agents/link/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/agents/link/raw_client.py | MIT |
def calculate(
self,
agent_id: str,
*,
prompt_length: typing.Optional[int] = OMIT,
number_of_pages: typing.Optional[int] = OMIT,
rag_enabled: typing.Optional[bool] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> LlmUsageCalculatorResponse... |
Calculates expected number of LLM tokens needed for the specified agent.
Parameters
----------
agent_id : str
prompt_length : typing.Optional[int]
Length of the prompt in characters.
number_of_pages : typing.Optional[int]
Pages of content in pd... | calculate | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/agents/llm_usage/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/agents/llm_usage/client.py | MIT |
async def calculate(
self,
agent_id: str,
*,
prompt_length: typing.Optional[int] = OMIT,
number_of_pages: typing.Optional[int] = OMIT,
rag_enabled: typing.Optional[bool] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> LlmUsageCalculatorRe... |
Calculates expected number of LLM tokens needed for the specified agent.
Parameters
----------
agent_id : str
prompt_length : typing.Optional[int]
Length of the prompt in characters.
number_of_pages : typing.Optional[int]
Pages of content in pd... | calculate | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/agents/llm_usage/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/agents/llm_usage/client.py | MIT |
def calculate(
self,
agent_id: str,
*,
prompt_length: typing.Optional[int] = OMIT,
number_of_pages: typing.Optional[int] = OMIT,
rag_enabled: typing.Optional[bool] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> HttpResponse[LlmUsageCalcu... |
Calculates expected number of LLM tokens needed for the specified agent.
Parameters
----------
agent_id : str
prompt_length : typing.Optional[int]
Length of the prompt in characters.
number_of_pages : typing.Optional[int]
Pages of content in pd... | calculate | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/agents/llm_usage/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/agents/llm_usage/raw_client.py | MIT |
async def calculate(
self,
agent_id: str,
*,
prompt_length: typing.Optional[int] = OMIT,
number_of_pages: typing.Optional[int] = OMIT,
rag_enabled: typing.Optional[bool] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> AsyncHttpResponse[Ll... |
Calculates expected number of LLM tokens needed for the specified agent.
Parameters
----------
agent_id : str
prompt_length : typing.Optional[int]
Length of the prompt in characters.
number_of_pages : typing.Optional[int]
Pages of content in pd... | calculate | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/agents/llm_usage/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/agents/llm_usage/raw_client.py | MIT |
def get(
self,
agent_id: str,
*,
conversation_signature: typing.Optional[str] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> GetAgentEmbedResponseModel:
"""
Retrieve the widget configuration for an agent
Parameters
-----... |
Retrieve the widget configuration for an agent
Parameters
----------
agent_id : str
The id of an agent. This is returned on agent creation.
conversation_signature : typing.Optional[str]
An expiring token that enables a websocket conversation to start. T... | get | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/agents/widget/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/agents/widget/client.py | MIT |
async def get(
self,
agent_id: str,
*,
conversation_signature: typing.Optional[str] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> GetAgentEmbedResponseModel:
"""
Retrieve the widget configuration for an agent
Parameters
... |
Retrieve the widget configuration for an agent
Parameters
----------
agent_id : str
The id of an agent. This is returned on agent creation.
conversation_signature : typing.Optional[str]
An expiring token that enables a websocket conversation to start. T... | get | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/agents/widget/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/agents/widget/client.py | MIT |
def get(
self,
agent_id: str,
*,
conversation_signature: typing.Optional[str] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> HttpResponse[GetAgentEmbedResponseModel]:
"""
Retrieve the widget configuration for an agent
Parameters... |
Retrieve the widget configuration for an agent
Parameters
----------
agent_id : str
The id of an agent. This is returned on agent creation.
conversation_signature : typing.Optional[str]
An expiring token that enables a websocket conversation to start. T... | get | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/agents/widget/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/agents/widget/raw_client.py | MIT |
async def get(
self,
agent_id: str,
*,
conversation_signature: typing.Optional[str] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> AsyncHttpResponse[GetAgentEmbedResponseModel]:
"""
Retrieve the widget configuration for an agent
... |
Retrieve the widget configuration for an agent
Parameters
----------
agent_id : str
The id of an agent. This is returned on agent creation.
conversation_signature : typing.Optional[str]
An expiring token that enables a websocket conversation to start. T... | get | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/agents/widget/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/agents/widget/raw_client.py | MIT |
def create(
self, agent_id: str, *, avatar_file: core.File, request_options: typing.Optional[RequestOptions] = None
) -> PostAgentAvatarResponseModel:
"""
Sets the avatar for an agent displayed in the widget
Parameters
----------
agent_id : str
The id of ... |
Sets the avatar for an agent displayed in the widget
Parameters
----------
agent_id : str
The id of an agent. This is returned on agent creation.
avatar_file : core.File
See core.File for more documentation
request_options : typing.Optional[Req... | create | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/agents/widget/avatar/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/agents/widget/avatar/client.py | MIT |
async def create(
self, agent_id: str, *, avatar_file: core.File, request_options: typing.Optional[RequestOptions] = None
) -> PostAgentAvatarResponseModel:
"""
Sets the avatar for an agent displayed in the widget
Parameters
----------
agent_id : str
The ... |
Sets the avatar for an agent displayed in the widget
Parameters
----------
agent_id : str
The id of an agent. This is returned on agent creation.
avatar_file : core.File
See core.File for more documentation
request_options : typing.Optional[Req... | create | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/agents/widget/avatar/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/agents/widget/avatar/client.py | MIT |
def create(
self, agent_id: str, *, avatar_file: core.File, request_options: typing.Optional[RequestOptions] = None
) -> HttpResponse[PostAgentAvatarResponseModel]:
"""
Sets the avatar for an agent displayed in the widget
Parameters
----------
agent_id : str
... |
Sets the avatar for an agent displayed in the widget
Parameters
----------
agent_id : str
The id of an agent. This is returned on agent creation.
avatar_file : core.File
See core.File for more documentation
request_options : typing.Optional[Req... | create | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/agents/widget/avatar/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/agents/widget/avatar/raw_client.py | MIT |
async def create(
self, agent_id: str, *, avatar_file: core.File, request_options: typing.Optional[RequestOptions] = None
) -> AsyncHttpResponse[PostAgentAvatarResponseModel]:
"""
Sets the avatar for an agent displayed in the widget
Parameters
----------
agent_id : s... |
Sets the avatar for an agent displayed in the widget
Parameters
----------
agent_id : str
The id of an agent. This is returned on agent creation.
avatar_file : core.File
See core.File for more documentation
request_options : typing.Optional[Req... | create | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/agents/widget/avatar/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/agents/widget/avatar/raw_client.py | MIT |
def get(
self, batch_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> BatchCallDetailedResponse:
"""
Get detailed information about a batch call including all recipients.
Parameters
----------
batch_id : str
request_options : typing.O... |
Get detailed information about a batch call including all recipients.
Parameters
----------
batch_id : str
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
BatchCallDetailedResponse
... | get | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/batch_calls/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/batch_calls/client.py | MIT |
async def get(
self, batch_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> BatchCallDetailedResponse:
"""
Get detailed information about a batch call including all recipients.
Parameters
----------
batch_id : str
request_options : ty... |
Get detailed information about a batch call including all recipients.
Parameters
----------
batch_id : str
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
BatchCallDetailedResponse
... | get | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/batch_calls/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/batch_calls/client.py | MIT |
async def cancel(
self, batch_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> BatchCallResponse:
"""
Cancel a running batch call and set all recipients to cancelled status.
Parameters
----------
batch_id : str
request_options : typin... |
Cancel a running batch call and set all recipients to cancelled status.
Parameters
----------
batch_id : str
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
BatchCallResponse
Suc... | cancel | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/batch_calls/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/batch_calls/client.py | MIT |
async def retry(
self, batch_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> BatchCallResponse:
"""
Retry a batch call by setting completed recipients back to pending status.
Parameters
----------
batch_id : str
request_options : typ... |
Retry a batch call by setting completed recipients back to pending status.
Parameters
----------
batch_id : str
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
BatchCallResponse
... | retry | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/batch_calls/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/batch_calls/client.py | MIT |
def get(
self, batch_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> HttpResponse[BatchCallDetailedResponse]:
"""
Get detailed information about a batch call including all recipients.
Parameters
----------
batch_id : str
request_opti... |
Get detailed information about a batch call including all recipients.
Parameters
----------
batch_id : str
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
HttpResponse[BatchCallDetailedRespo... | get | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/batch_calls/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/batch_calls/raw_client.py | MIT |
def cancel(
self, batch_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> HttpResponse[BatchCallResponse]:
"""
Cancel a running batch call and set all recipients to cancelled status.
Parameters
----------
batch_id : str
request_options... |
Cancel a running batch call and set all recipients to cancelled status.
Parameters
----------
batch_id : str
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
HttpResponse[BatchCallResponse]
... | cancel | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/batch_calls/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/batch_calls/raw_client.py | MIT |
def retry(
self, batch_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> HttpResponse[BatchCallResponse]:
"""
Retry a batch call by setting completed recipients back to pending status.
Parameters
----------
batch_id : str
request_optio... |
Retry a batch call by setting completed recipients back to pending status.
Parameters
----------
batch_id : str
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
HttpResponse[BatchCallResponse... | retry | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/batch_calls/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/batch_calls/raw_client.py | MIT |
async def get(
self, batch_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> AsyncHttpResponse[BatchCallDetailedResponse]:
"""
Get detailed information about a batch call including all recipients.
Parameters
----------
batch_id : str
r... |
Get detailed information about a batch call including all recipients.
Parameters
----------
batch_id : str
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
AsyncHttpResponse[BatchCallDetailed... | get | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/batch_calls/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/batch_calls/raw_client.py | MIT |
async def cancel(
self, batch_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> AsyncHttpResponse[BatchCallResponse]:
"""
Cancel a running batch call and set all recipients to cancelled status.
Parameters
----------
batch_id : str
requ... |
Cancel a running batch call and set all recipients to cancelled status.
Parameters
----------
batch_id : str
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
AsyncHttpResponse[BatchCallRespon... | cancel | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/batch_calls/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/batch_calls/raw_client.py | MIT |
async def retry(
self, batch_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> AsyncHttpResponse[BatchCallResponse]:
"""
Retry a batch call by setting completed recipients back to pending status.
Parameters
----------
batch_id : str
re... |
Retry a batch call by setting completed recipients back to pending status.
Parameters
----------
batch_id : str
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
AsyncHttpResponse[BatchCallRes... | retry | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/batch_calls/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/batch_calls/raw_client.py | MIT |
def get_signed_url(
self, *, agent_id: str, request_options: typing.Optional[RequestOptions] = None
) -> ConversationSignedUrlResponseModel:
"""
Get a signed url to start a conversation with an agent with an agent that requires authorization
Parameters
----------
age... |
Get a signed url to start a conversation with an agent with an agent that requires authorization
Parameters
----------
agent_id : str
The id of the agent you're taking the action on.
request_options : typing.Optional[RequestOptions]
Request-specific con... | get_signed_url | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/conversations/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/conversations/client.py | MIT |
def list(
self,
*,
cursor: typing.Optional[str] = None,
agent_id: typing.Optional[str] = None,
call_successful: typing.Optional[EvaluationSuccessResult] = None,
call_start_before_unix: typing.Optional[int] = None,
call_start_after_unix: typing.Optional[int] = None... |
Get all conversations of agents that user owns. With option to restrict to a specific agent.
Parameters
----------
cursor : typing.Optional[str]
Used for fetching next page. Cursor is returned in the response.
agent_id : typing.Optional[str]
The id of t... | list | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/conversations/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/conversations/client.py | MIT |
def get(
self, conversation_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> GetConversationResponseModel:
"""
Get the details of a particular conversation
Parameters
----------
conversation_id : str
The id of the conversation you'... |
Get the details of a particular conversation
Parameters
----------
conversation_id : str
The id of the conversation you're taking the action on.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-... | get | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/conversations/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/conversations/client.py | MIT |
def delete(
self, conversation_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> typing.Optional[typing.Any]:
"""
Delete a particular conversation
Parameters
----------
conversation_id : str
The id of the conversation you're taking ... |
Delete a particular conversation
Parameters
----------
conversation_id : str
The id of the conversation you're taking the action on.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
... | delete | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/conversations/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/conversations/client.py | MIT |
async def get_signed_url(
self, *, agent_id: str, request_options: typing.Optional[RequestOptions] = None
) -> ConversationSignedUrlResponseModel:
"""
Get a signed url to start a conversation with an agent with an agent that requires authorization
Parameters
----------
... |
Get a signed url to start a conversation with an agent with an agent that requires authorization
Parameters
----------
agent_id : str
The id of the agent you're taking the action on.
request_options : typing.Optional[RequestOptions]
Request-specific con... | get_signed_url | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/conversations/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/conversations/client.py | MIT |
async def list(
self,
*,
cursor: typing.Optional[str] = None,
agent_id: typing.Optional[str] = None,
call_successful: typing.Optional[EvaluationSuccessResult] = None,
call_start_before_unix: typing.Optional[int] = None,
call_start_after_unix: typing.Optional[int] ... |
Get all conversations of agents that user owns. With option to restrict to a specific agent.
Parameters
----------
cursor : typing.Optional[str]
Used for fetching next page. Cursor is returned in the response.
agent_id : typing.Optional[str]
The id of t... | list | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/conversations/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/conversations/client.py | MIT |
async def get(
self, conversation_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> GetConversationResponseModel:
"""
Get the details of a particular conversation
Parameters
----------
conversation_id : str
The id of the conversatio... |
Get the details of a particular conversation
Parameters
----------
conversation_id : str
The id of the conversation you're taking the action on.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-... | get | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/conversations/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/conversations/client.py | MIT |
async def delete(
self, conversation_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> typing.Optional[typing.Any]:
"""
Delete a particular conversation
Parameters
----------
conversation_id : str
The id of the conversation you're t... |
Delete a particular conversation
Parameters
----------
conversation_id : str
The id of the conversation you're taking the action on.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
... | delete | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/conversations/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/conversations/client.py | MIT |
def get_signed_url(
self, *, agent_id: str, request_options: typing.Optional[RequestOptions] = None
) -> HttpResponse[ConversationSignedUrlResponseModel]:
"""
Get a signed url to start a conversation with an agent with an agent that requires authorization
Parameters
--------... |
Get a signed url to start a conversation with an agent with an agent that requires authorization
Parameters
----------
agent_id : str
The id of the agent you're taking the action on.
request_options : typing.Optional[RequestOptions]
Request-specific con... | get_signed_url | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/conversations/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/conversations/raw_client.py | MIT |
def list(
self,
*,
cursor: typing.Optional[str] = None,
agent_id: typing.Optional[str] = None,
call_successful: typing.Optional[EvaluationSuccessResult] = None,
call_start_before_unix: typing.Optional[int] = None,
call_start_after_unix: typing.Optional[int] = None... |
Get all conversations of agents that user owns. With option to restrict to a specific agent.
Parameters
----------
cursor : typing.Optional[str]
Used for fetching next page. Cursor is returned in the response.
agent_id : typing.Optional[str]
The id of t... | list | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/conversations/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/conversations/raw_client.py | MIT |
def get(
self, conversation_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> HttpResponse[GetConversationResponseModel]:
"""
Get the details of a particular conversation
Parameters
----------
conversation_id : str
The id of the con... |
Get the details of a particular conversation
Parameters
----------
conversation_id : str
The id of the conversation you're taking the action on.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-... | get | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/conversations/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/conversations/raw_client.py | MIT |
def delete(
self, conversation_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> HttpResponse[typing.Optional[typing.Any]]:
"""
Delete a particular conversation
Parameters
----------
conversation_id : str
The id of the conversation ... |
Delete a particular conversation
Parameters
----------
conversation_id : str
The id of the conversation you're taking the action on.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
... | delete | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/conversations/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/conversations/raw_client.py | MIT |
async def get_signed_url(
self, *, agent_id: str, request_options: typing.Optional[RequestOptions] = None
) -> AsyncHttpResponse[ConversationSignedUrlResponseModel]:
"""
Get a signed url to start a conversation with an agent with an agent that requires authorization
Parameters
... |
Get a signed url to start a conversation with an agent with an agent that requires authorization
Parameters
----------
agent_id : str
The id of the agent you're taking the action on.
request_options : typing.Optional[RequestOptions]
Request-specific con... | get_signed_url | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/conversations/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/conversations/raw_client.py | MIT |
async def list(
self,
*,
cursor: typing.Optional[str] = None,
agent_id: typing.Optional[str] = None,
call_successful: typing.Optional[EvaluationSuccessResult] = None,
call_start_before_unix: typing.Optional[int] = None,
call_start_after_unix: typing.Optional[int] ... |
Get all conversations of agents that user owns. With option to restrict to a specific agent.
Parameters
----------
cursor : typing.Optional[str]
Used for fetching next page. Cursor is returned in the response.
agent_id : typing.Optional[str]
The id of t... | list | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/conversations/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/conversations/raw_client.py | MIT |
async def get(
self, conversation_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> AsyncHttpResponse[GetConversationResponseModel]:
"""
Get the details of a particular conversation
Parameters
----------
conversation_id : str
The id... |
Get the details of a particular conversation
Parameters
----------
conversation_id : str
The id of the conversation you're taking the action on.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-... | get | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/conversations/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/conversations/raw_client.py | MIT |
async def delete(
self, conversation_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> AsyncHttpResponse[typing.Optional[typing.Any]]:
"""
Delete a particular conversation
Parameters
----------
conversation_id : str
The id of the co... |
Delete a particular conversation
Parameters
----------
conversation_id : str
The id of the conversation you're taking the action on.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
... | delete | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/conversations/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/conversations/raw_client.py | MIT |
def get(
self, conversation_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> typing.Iterator[bytes]:
"""
Get the audio recording of a particular conversation
Parameters
----------
conversation_id : str
The id of the conversation yo... |
Get the audio recording of a particular conversation
Parameters
----------
conversation_id : str
The id of the conversation you're taking the action on.
request_options : typing.Optional[RequestOptions]
Request-specific configuration. You can pass in co... | get | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/conversations/audio/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/conversations/audio/client.py | MIT |
async def get(
self, conversation_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> typing.AsyncIterator[bytes]:
"""
Get the audio recording of a particular conversation
Parameters
----------
conversation_id : str
The id of the conv... |
Get the audio recording of a particular conversation
Parameters
----------
conversation_id : str
The id of the conversation you're taking the action on.
request_options : typing.Optional[RequestOptions]
Request-specific configuration. You can pass in co... | get | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/conversations/audio/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/conversations/audio/client.py | MIT |
def get(
self, conversation_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> typing.Iterator[HttpResponse[typing.Iterator[bytes]]]:
"""
Get the audio recording of a particular conversation
Parameters
----------
conversation_id : str
... |
Get the audio recording of a particular conversation
Parameters
----------
conversation_id : str
The id of the conversation you're taking the action on.
request_options : typing.Optional[RequestOptions]
Request-specific configuration. You can pass in co... | get | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/conversations/audio/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/conversations/audio/raw_client.py | MIT |
async def get(
self, conversation_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> typing.AsyncIterator[AsyncHttpResponse[typing.AsyncIterator[bytes]]]:
"""
Get the audio recording of a particular conversation
Parameters
----------
conversatio... |
Get the audio recording of a particular conversation
Parameters
----------
conversation_id : str
The id of the conversation you're taking the action on.
request_options : typing.Optional[RequestOptions]
Request-specific configuration. You can pass in co... | get | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/conversations/audio/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/conversations/audio/raw_client.py | MIT |
def create(
self,
conversation_id: str,
*,
feedback: UserFeedbackScore,
request_options: typing.Optional[RequestOptions] = None,
) -> typing.Optional[typing.Any]:
"""
Send the feedback for the given conversation
Parameters
----------
c... |
Send the feedback for the given conversation
Parameters
----------
conversation_id : str
The id of the conversation you're taking the action on.
feedback : UserFeedbackScore
Either 'like' or 'dislike' to indicate the feedback for the conversation.
... | create | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/conversations/feedback/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/conversations/feedback/client.py | MIT |
async def create(
self,
conversation_id: str,
*,
feedback: UserFeedbackScore,
request_options: typing.Optional[RequestOptions] = None,
) -> typing.Optional[typing.Any]:
"""
Send the feedback for the given conversation
Parameters
----------
... |
Send the feedback for the given conversation
Parameters
----------
conversation_id : str
The id of the conversation you're taking the action on.
feedback : UserFeedbackScore
Either 'like' or 'dislike' to indicate the feedback for the conversation.
... | create | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/conversations/feedback/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/conversations/feedback/client.py | MIT |
def create(
self,
conversation_id: str,
*,
feedback: UserFeedbackScore,
request_options: typing.Optional[RequestOptions] = None,
) -> HttpResponse[typing.Optional[typing.Any]]:
"""
Send the feedback for the given conversation
Parameters
------... |
Send the feedback for the given conversation
Parameters
----------
conversation_id : str
The id of the conversation you're taking the action on.
feedback : UserFeedbackScore
Either 'like' or 'dislike' to indicate the feedback for the conversation.
... | create | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/conversations/feedback/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/conversations/feedback/raw_client.py | MIT |
async def create(
self,
conversation_id: str,
*,
feedback: UserFeedbackScore,
request_options: typing.Optional[RequestOptions] = None,
) -> AsyncHttpResponse[typing.Optional[typing.Any]]:
"""
Send the feedback for the given conversation
Parameters
... |
Send the feedback for the given conversation
Parameters
----------
conversation_id : str
The id of the conversation you're taking the action on.
feedback : UserFeedbackScore
Either 'like' or 'dislike' to indicate the feedback for the conversation.
... | create | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/conversations/feedback/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/conversations/feedback/raw_client.py | MIT |
def get(
self, *, request_options: typing.Optional[RequestOptions] = None
) -> GetConvAiDashboardSettingsResponseModel:
"""
Retrieve Convai dashboard settings for the workspace
Parameters
----------
request_options : typing.Optional[RequestOptions]
Reques... |
Retrieve Convai dashboard settings for the workspace
Parameters
----------
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
GetConvAiDashboardSettingsResponseModel
Successful Response
... | get | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/dashboard/settings/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/dashboard/settings/client.py | MIT |
def update(
self,
*,
charts: typing.Optional[typing.Sequence[PatchConvAiDashboardSettingsRequestChartsItem]] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> GetConvAiDashboardSettingsResponseModel:
"""
Update Convai dashboard settings for the wor... |
Update Convai dashboard settings for the workspace
Parameters
----------
charts : typing.Optional[typing.Sequence[PatchConvAiDashboardSettingsRequestChartsItem]]
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
... | update | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/dashboard/settings/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/dashboard/settings/client.py | MIT |
async def get(
self, *, request_options: typing.Optional[RequestOptions] = None
) -> GetConvAiDashboardSettingsResponseModel:
"""
Retrieve Convai dashboard settings for the workspace
Parameters
----------
request_options : typing.Optional[RequestOptions]
... |
Retrieve Convai dashboard settings for the workspace
Parameters
----------
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
GetConvAiDashboardSettingsResponseModel
Successful Response
... | get | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/dashboard/settings/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/dashboard/settings/client.py | MIT |
async def update(
self,
*,
charts: typing.Optional[typing.Sequence[PatchConvAiDashboardSettingsRequestChartsItem]] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> GetConvAiDashboardSettingsResponseModel:
"""
Update Convai dashboard settings for t... |
Update Convai dashboard settings for the workspace
Parameters
----------
charts : typing.Optional[typing.Sequence[PatchConvAiDashboardSettingsRequestChartsItem]]
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
... | update | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/dashboard/settings/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/dashboard/settings/client.py | MIT |
def get(
self, *, request_options: typing.Optional[RequestOptions] = None
) -> HttpResponse[GetConvAiDashboardSettingsResponseModel]:
"""
Retrieve Convai dashboard settings for the workspace
Parameters
----------
request_options : typing.Optional[RequestOptions]
... |
Retrieve Convai dashboard settings for the workspace
Parameters
----------
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
HttpResponse[GetConvAiDashboardSettingsResponseModel]
Successful... | get | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/dashboard/settings/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/dashboard/settings/raw_client.py | MIT |
def update(
self,
*,
charts: typing.Optional[typing.Sequence[PatchConvAiDashboardSettingsRequestChartsItem]] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> HttpResponse[GetConvAiDashboardSettingsResponseModel]:
"""
Update Convai dashboard settin... |
Update Convai dashboard settings for the workspace
Parameters
----------
charts : typing.Optional[typing.Sequence[PatchConvAiDashboardSettingsRequestChartsItem]]
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
... | update | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/dashboard/settings/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/dashboard/settings/raw_client.py | MIT |
async def get(
self, *, request_options: typing.Optional[RequestOptions] = None
) -> AsyncHttpResponse[GetConvAiDashboardSettingsResponseModel]:
"""
Retrieve Convai dashboard settings for the workspace
Parameters
----------
request_options : typing.Optional[RequestOp... |
Retrieve Convai dashboard settings for the workspace
Parameters
----------
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
AsyncHttpResponse[GetConvAiDashboardSettingsResponseModel]
Succe... | get | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/dashboard/settings/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/dashboard/settings/raw_client.py | MIT |
async def update(
self,
*,
charts: typing.Optional[typing.Sequence[PatchConvAiDashboardSettingsRequestChartsItem]] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> AsyncHttpResponse[GetConvAiDashboardSettingsResponseModel]:
"""
Update Convai dashb... |
Update Convai dashboard settings for the workspace
Parameters
----------
charts : typing.Optional[typing.Sequence[PatchConvAiDashboardSettingsRequestChartsItem]]
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
... | update | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/dashboard/settings/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/dashboard/settings/raw_client.py | MIT |
def list(
self,
*,
cursor: typing.Optional[str] = None,
page_size: typing.Optional[int] = None,
search: typing.Optional[str] = None,
show_only_owned_documents: typing.Optional[bool] = None,
types: typing.Optional[
typing.Union[KnowledgeBaseDocumentType... |
Get a list of available knowledge base documents
Parameters
----------
cursor : typing.Optional[str]
Used for fetching next page. Cursor is returned in the response.
page_size : typing.Optional[int]
How many documents to return at maximum. Can not excee... | list | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/client.py | MIT |
async def list(
self,
*,
cursor: typing.Optional[str] = None,
page_size: typing.Optional[int] = None,
search: typing.Optional[str] = None,
show_only_owned_documents: typing.Optional[bool] = None,
types: typing.Optional[
typing.Union[KnowledgeBaseDocume... |
Get a list of available knowledge base documents
Parameters
----------
cursor : typing.Optional[str]
Used for fetching next page. Cursor is returned in the response.
page_size : typing.Optional[int]
How many documents to return at maximum. Can not excee... | list | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/client.py | MIT |
def list(
self,
*,
cursor: typing.Optional[str] = None,
page_size: typing.Optional[int] = None,
search: typing.Optional[str] = None,
show_only_owned_documents: typing.Optional[bool] = None,
types: typing.Optional[
typing.Union[KnowledgeBaseDocumentType... |
Get a list of available knowledge base documents
Parameters
----------
cursor : typing.Optional[str]
Used for fetching next page. Cursor is returned in the response.
page_size : typing.Optional[int]
How many documents to return at maximum. Can not excee... | list | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/raw_client.py | MIT |
async def list(
self,
*,
cursor: typing.Optional[str] = None,
page_size: typing.Optional[int] = None,
search: typing.Optional[str] = None,
show_only_owned_documents: typing.Optional[bool] = None,
types: typing.Optional[
typing.Union[KnowledgeBaseDocume... |
Get a list of available knowledge base documents
Parameters
----------
cursor : typing.Optional[str]
Used for fetching next page. Cursor is returned in the response.
page_size : typing.Optional[int]
How many documents to return at maximum. Can not excee... | list | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/raw_client.py | MIT |
def compute_rag_index(
self,
documentation_id: str,
*,
model: EmbeddingModelEnum,
request_options: typing.Optional[RequestOptions] = None,
) -> RagDocumentIndexResponseModel:
"""
In case the document is not RAG indexed, it triggers rag indexing task, otherwise... |
In case the document is not RAG indexed, it triggers rag indexing task, otherwise it just returns the current status.
Parameters
----------
documentation_id : str
The id of a document from the knowledge base. This is returned on document addition.
model : Embedding... | compute_rag_index | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/document/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/document/client.py | MIT |
async def compute_rag_index(
self,
documentation_id: str,
*,
model: EmbeddingModelEnum,
request_options: typing.Optional[RequestOptions] = None,
) -> RagDocumentIndexResponseModel:
"""
In case the document is not RAG indexed, it triggers rag indexing task, oth... |
In case the document is not RAG indexed, it triggers rag indexing task, otherwise it just returns the current status.
Parameters
----------
documentation_id : str
The id of a document from the knowledge base. This is returned on document addition.
model : Embedding... | compute_rag_index | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/document/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/document/client.py | MIT |
def compute_rag_index(
self,
documentation_id: str,
*,
model: EmbeddingModelEnum,
request_options: typing.Optional[RequestOptions] = None,
) -> HttpResponse[RagDocumentIndexResponseModel]:
"""
In case the document is not RAG indexed, it triggers rag indexing t... |
In case the document is not RAG indexed, it triggers rag indexing task, otherwise it just returns the current status.
Parameters
----------
documentation_id : str
The id of a document from the knowledge base. This is returned on document addition.
model : Embedding... | compute_rag_index | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/document/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/document/raw_client.py | MIT |
async def compute_rag_index(
self,
documentation_id: str,
*,
model: EmbeddingModelEnum,
request_options: typing.Optional[RequestOptions] = None,
) -> AsyncHttpResponse[RagDocumentIndexResponseModel]:
"""
In case the document is not RAG indexed, it triggers rag... |
In case the document is not RAG indexed, it triggers rag indexing task, otherwise it just returns the current status.
Parameters
----------
documentation_id : str
The id of a document from the knowledge base. This is returned on document addition.
model : Embedding... | compute_rag_index | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/document/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/document/raw_client.py | MIT |
def create_from_url(
self, *, url: str, name: typing.Optional[str] = OMIT, request_options: typing.Optional[RequestOptions] = None
) -> AddKnowledgeBaseResponseModel:
"""
Create a knowledge base document generated by scraping the given webpage.
Parameters
----------
... |
Create a knowledge base document generated by scraping the given webpage.
Parameters
----------
url : str
URL to a page of documentation that the agent will have access to in order to interact with users.
name : typing.Optional[str]
A custom, human-read... | create_from_url | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | MIT |
def create_from_file(
self,
*,
file: core.File,
name: typing.Optional[str] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> AddKnowledgeBaseResponseModel:
"""
Create a knowledge base document generated form the uploaded file.
Para... |
Create a knowledge base document generated form the uploaded file.
Parameters
----------
file : core.File
See core.File for more documentation
name : typing.Optional[str]
A custom, human-readable name for the document.
request_options : typing.... | create_from_file | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | MIT |
def create_from_text(
self, *, text: str, name: typing.Optional[str] = OMIT, request_options: typing.Optional[RequestOptions] = None
) -> AddKnowledgeBaseResponseModel:
"""
Create a knowledge base document containing the provided text.
Parameters
----------
text : st... |
Create a knowledge base document containing the provided text.
Parameters
----------
text : str
Text content to be added to the knowledge base.
name : typing.Optional[str]
A custom, human-readable name for the document.
request_options : typing... | create_from_text | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | MIT |
def get(
self, documentation_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> DocumentsGetResponse:
"""
Get details about a specific documentation making up the agent's knowledge base
Parameters
----------
documentation_id : str
Th... |
Get details about a specific documentation making up the agent's knowledge base
Parameters
----------
documentation_id : str
The id of a document from the knowledge base. This is returned on document addition.
request_options : typing.Optional[RequestOptions]
... | get | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | MIT |
def delete(
self,
documentation_id: str,
*,
force: typing.Optional[bool] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> typing.Optional[typing.Any]:
"""
Delete a document from the knowledge base
Parameters
----------
... |
Delete a document from the knowledge base
Parameters
----------
documentation_id : str
The id of a document from the knowledge base. This is returned on document addition.
force : typing.Optional[bool]
If set to true, the document will be deleted regard... | delete | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | MIT |
def update(
self, documentation_id: str, *, name: str, request_options: typing.Optional[RequestOptions] = None
) -> DocumentsUpdateResponse:
"""
Update the name of a document
Parameters
----------
documentation_id : str
The id of a document from the knowl... |
Update the name of a document
Parameters
----------
documentation_id : str
The id of a document from the knowledge base. This is returned on document addition.
name : str
A custom, human-readable name for the document.
request_options : typing.... | update | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | MIT |
def get_agents(
self,
documentation_id: str,
*,
cursor: typing.Optional[str] = None,
page_size: typing.Optional[int] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> GetKnowledgeBaseDependentAgentsResponseModel:
"""
Get a list of a... |
Get a list of agents depending on this knowledge base document
Parameters
----------
documentation_id : str
The id of a document from the knowledge base. This is returned on document addition.
cursor : typing.Optional[str]
Used for fetching next page. C... | get_agents | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | MIT |
async def create_from_url(
self, *, url: str, name: typing.Optional[str] = OMIT, request_options: typing.Optional[RequestOptions] = None
) -> AddKnowledgeBaseResponseModel:
"""
Create a knowledge base document generated by scraping the given webpage.
Parameters
----------
... |
Create a knowledge base document generated by scraping the given webpage.
Parameters
----------
url : str
URL to a page of documentation that the agent will have access to in order to interact with users.
name : typing.Optional[str]
A custom, human-read... | create_from_url | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | MIT |
async def create_from_file(
self,
*,
file: core.File,
name: typing.Optional[str] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> AddKnowledgeBaseResponseModel:
"""
Create a knowledge base document generated form the uploaded file.
... |
Create a knowledge base document generated form the uploaded file.
Parameters
----------
file : core.File
See core.File for more documentation
name : typing.Optional[str]
A custom, human-readable name for the document.
request_options : typing.... | create_from_file | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | MIT |
async def create_from_text(
self, *, text: str, name: typing.Optional[str] = OMIT, request_options: typing.Optional[RequestOptions] = None
) -> AddKnowledgeBaseResponseModel:
"""
Create a knowledge base document containing the provided text.
Parameters
----------
tex... |
Create a knowledge base document containing the provided text.
Parameters
----------
text : str
Text content to be added to the knowledge base.
name : typing.Optional[str]
A custom, human-readable name for the document.
request_options : typing... | create_from_text | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | MIT |
async def get(
self, documentation_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> DocumentsGetResponse:
"""
Get details about a specific documentation making up the agent's knowledge base
Parameters
----------
documentation_id : str
... |
Get details about a specific documentation making up the agent's knowledge base
Parameters
----------
documentation_id : str
The id of a document from the knowledge base. This is returned on document addition.
request_options : typing.Optional[RequestOptions]
... | get | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | MIT |
async def delete(
self,
documentation_id: str,
*,
force: typing.Optional[bool] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> typing.Optional[typing.Any]:
"""
Delete a document from the knowledge base
Parameters
--------... |
Delete a document from the knowledge base
Parameters
----------
documentation_id : str
The id of a document from the knowledge base. This is returned on document addition.
force : typing.Optional[bool]
If set to true, the document will be deleted regard... | delete | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | MIT |
async def update(
self, documentation_id: str, *, name: str, request_options: typing.Optional[RequestOptions] = None
) -> DocumentsUpdateResponse:
"""
Update the name of a document
Parameters
----------
documentation_id : str
The id of a document from the... |
Update the name of a document
Parameters
----------
documentation_id : str
The id of a document from the knowledge base. This is returned on document addition.
name : str
A custom, human-readable name for the document.
request_options : typing.... | update | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | MIT |
async def get_agents(
self,
documentation_id: str,
*,
cursor: typing.Optional[str] = None,
page_size: typing.Optional[int] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> GetKnowledgeBaseDependentAgentsResponseModel:
"""
Get a lis... |
Get a list of agents depending on this knowledge base document
Parameters
----------
documentation_id : str
The id of a document from the knowledge base. This is returned on document addition.
cursor : typing.Optional[str]
Used for fetching next page. C... | get_agents | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | MIT |
async def get_content(
self, documentation_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> None:
"""
Get the entire content of a document from the knowledge base
Parameters
----------
documentation_id : str
The id of a document fr... |
Get the entire content of a document from the knowledge base
Parameters
----------
documentation_id : str
The id of a document from the knowledge base. This is returned on document addition.
request_options : typing.Optional[RequestOptions]
Request-spec... | get_content | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/documents/client.py | MIT |
def create_from_url(
self, *, url: str, name: typing.Optional[str] = OMIT, request_options: typing.Optional[RequestOptions] = None
) -> HttpResponse[AddKnowledgeBaseResponseModel]:
"""
Create a knowledge base document generated by scraping the given webpage.
Parameters
-----... |
Create a knowledge base document generated by scraping the given webpage.
Parameters
----------
url : str
URL to a page of documentation that the agent will have access to in order to interact with users.
name : typing.Optional[str]
A custom, human-read... | create_from_url | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/documents/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/documents/raw_client.py | MIT |
def create_from_file(
self,
*,
file: core.File,
name: typing.Optional[str] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> HttpResponse[AddKnowledgeBaseResponseModel]:
"""
Create a knowledge base document generated form the uploaded file.... |
Create a knowledge base document generated form the uploaded file.
Parameters
----------
file : core.File
See core.File for more documentation
name : typing.Optional[str]
A custom, human-readable name for the document.
request_options : typing.... | create_from_file | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/documents/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/documents/raw_client.py | MIT |
def create_from_text(
self, *, text: str, name: typing.Optional[str] = OMIT, request_options: typing.Optional[RequestOptions] = None
) -> HttpResponse[AddKnowledgeBaseResponseModel]:
"""
Create a knowledge base document containing the provided text.
Parameters
----------
... |
Create a knowledge base document containing the provided text.
Parameters
----------
text : str
Text content to be added to the knowledge base.
name : typing.Optional[str]
A custom, human-readable name for the document.
request_options : typing... | create_from_text | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/documents/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/documents/raw_client.py | MIT |
def get(
self, documentation_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> HttpResponse[DocumentsGetResponse]:
"""
Get details about a specific documentation making up the agent's knowledge base
Parameters
----------
documentation_id : str
... |
Get details about a specific documentation making up the agent's knowledge base
Parameters
----------
documentation_id : str
The id of a document from the knowledge base. This is returned on document addition.
request_options : typing.Optional[RequestOptions]
... | get | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/documents/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/documents/raw_client.py | MIT |
def delete(
self,
documentation_id: str,
*,
force: typing.Optional[bool] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> HttpResponse[typing.Optional[typing.Any]]:
"""
Delete a document from the knowledge base
Parameters
... |
Delete a document from the knowledge base
Parameters
----------
documentation_id : str
The id of a document from the knowledge base. This is returned on document addition.
force : typing.Optional[bool]
If set to true, the document will be deleted regard... | delete | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/documents/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/documents/raw_client.py | MIT |
def update(
self, documentation_id: str, *, name: str, request_options: typing.Optional[RequestOptions] = None
) -> HttpResponse[DocumentsUpdateResponse]:
"""
Update the name of a document
Parameters
----------
documentation_id : str
The id of a document ... |
Update the name of a document
Parameters
----------
documentation_id : str
The id of a document from the knowledge base. This is returned on document addition.
name : str
A custom, human-readable name for the document.
request_options : typing.... | update | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/documents/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/documents/raw_client.py | MIT |
def get_agents(
self,
documentation_id: str,
*,
cursor: typing.Optional[str] = None,
page_size: typing.Optional[int] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> HttpResponse[GetKnowledgeBaseDependentAgentsResponseModel]:
"""
G... |
Get a list of agents depending on this knowledge base document
Parameters
----------
documentation_id : str
The id of a document from the knowledge base. This is returned on document addition.
cursor : typing.Optional[str]
Used for fetching next page. C... | get_agents | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/documents/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/documents/raw_client.py | MIT |
def get_content(
self, documentation_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> HttpResponse[None]:
"""
Get the entire content of a document from the knowledge base
Parameters
----------
documentation_id : str
The id of a doc... |
Get the entire content of a document from the knowledge base
Parameters
----------
documentation_id : str
The id of a document from the knowledge base. This is returned on document addition.
request_options : typing.Optional[RequestOptions]
Request-spec... | get_content | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/documents/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/documents/raw_client.py | MIT |
async def create_from_url(
self, *, url: str, name: typing.Optional[str] = OMIT, request_options: typing.Optional[RequestOptions] = None
) -> AsyncHttpResponse[AddKnowledgeBaseResponseModel]:
"""
Create a knowledge base document generated by scraping the given webpage.
Parameters
... |
Create a knowledge base document generated by scraping the given webpage.
Parameters
----------
url : str
URL to a page of documentation that the agent will have access to in order to interact with users.
name : typing.Optional[str]
A custom, human-read... | create_from_url | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/documents/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/documents/raw_client.py | MIT |
async def create_from_file(
self,
*,
file: core.File,
name: typing.Optional[str] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> AsyncHttpResponse[AddKnowledgeBaseResponseModel]:
"""
Create a knowledge base document generated form the upl... |
Create a knowledge base document generated form the uploaded file.
Parameters
----------
file : core.File
See core.File for more documentation
name : typing.Optional[str]
A custom, human-readable name for the document.
request_options : typing.... | create_from_file | python | elevenlabs/elevenlabs-python | src/elevenlabs/conversational_ai/knowledge_base/documents/raw_client.py | https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/conversational_ai/knowledge_base/documents/raw_client.py | MIT |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.