For AI agents: a documentation index is available at the root level at /llms.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Image, video and speech generation APIs: New asynchronous Flows APIs create, list and retrieve video, image and speech generations. Generation responses expose pending, generating, completed and failed states, and requests can include a webhook target for completion events.
Reusable media assets: New asset APIs upload, list, retrieve and delete workspace media. Image, video and audio references can use an uploaded asset, a previous generation or inline base64 data, allowing generation jobs to be chained. See References and assets.
ElevenAgents
Lightweight conversation summaries: Get conversation summary returns the generated title, transcript summary, call outcome and plain user or agent messages without loading the full transcript. The optional max_messages query parameter is an integer from 1 to 200 (default 40); longer conversations set messages_omitted to true. Useful for agents that need to preserve context.
Conversation topic pagination and sorting: Get agent conversation topics adds optional cursor pagination and sorting. Use page_size (integer, 1–100), cursor (string), sort_by (conversations, sentiment or success_rate) and sort_direction (asc or desc). Responses add has_more and nullable next_cursor.
Concurrency wait queues: Agent platform settings add optional queueing (AgentQueueingConfig). Set enabled to true to hold callers when the agent reaches its concurrency limit; wait_timeout_seconds is an integer up to 1,800 (default 180).
Turn and workflow controls: Turn configuration adds merge_with_default_ignore_terms (boolean, default false) to combine custom interruption terms with curated defaults. Soft timeouts add disable_until_first_user_message (boolean, default false), and workflow tool locators add optional schema_overrides for per-node parameter overrides.
Background audio defaults: BackgroundSoundConfig.volume now defaults to 0.15 instead of 0.6, and crossfade_loop now defaults to true instead of false. Set these fields explicitly to retain the previous behavior.
SDK Releases
JavaScript SDK
v2.64.0 - Added client.assets for uploading, listing, retrieving and deleting assets, plus client.flows for asynchronous video, image and speech generation. Turn configuration adds mergeWithDefaultIgnoreTerms. Removed CustomToolApiSchemaConfig and scimExternalId from WorkspaceGroupResponseModel.
Python SDK
v2.64.0 - Added assets and Flows clients for asynchronous video, image and speech generation, plus merge_with_default_ignore_terms in turn configuration. On-prem session setup adds extra_setup_config for passing additional setup-message fields.
Added optional page_size (integer, 1–100), cursor (string), sort_by (conversations, sentiment or success_rate) and sort_direction (asc or desc)
Responses add has_more (boolean, default false) and nullable next_cursor (string)
Schema Changes
ElevenAgents
Added optional queueing (AgentQueueingConfig) to agent platform settings. It contains enabled (boolean, default false) and wait_timeout_seconds (integer greater than 0 and at most 1,800, default 180)
Added optional schema_overrides to WorkflowToolLocator; per-node constant, dynamic variable, LLM or omit overrides take precedence over tool-level overrides
Added merge_with_default_ignore_terms (boolean, default false) to turn configuration and related override schemas
Added disable_until_first_user_message (boolean, default false) to soft-timeout configuration and related override schemas
Added required read-only status (success, error, blocked or skipped) to realtime agent tool response events
Added avaya to conversation initiation sources and avaya_api_key to authorization methods
Added gemini-3.6-flash and gemini-3.7-flash to supported agent LLM values
Changed BackgroundSoundConfig.volume default from 0.6 to 0.15 and crossfade_loop default from false to true
Removed CustomToolApiSchemaConfig; generated SDK users importing this type must remove the import
Removed scim_external_id from WorkspaceGroupResponseModel