Skip to content

Update LiveKit dependencies (non-major) to v1.4.1#6

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/livekit-dependencies-(non-major)
Open

Update LiveKit dependencies (non-major) to v1.4.1#6
renovate[bot] wants to merge 1 commit intomainfrom
renovate/livekit-dependencies-(non-major)

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Sep 2, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
livekit-agents ==1.2.7==1.4.1 age confidence
livekit-plugins-deepgram ==1.2.7==1.4.1 age confidence
livekit-plugins-openai ==1.2.7==1.4.1 age confidence
livekit-plugins-silero ==1.2.7==1.4.1 age confidence

Release Notes

livekit/agents (livekit-agents)

v1.4.0

Compare Source

Python 3.14 Support & Python 3.9 Dropped

This release adds Python 3.14 support and drops Python 3.9. The minimum supported version is now Python 3.10.

Tool Improvements

Tools and toolsets now have stable unique IDs, making it possible to reference and filter tools programmatically. Changes to agent configuration (instructions, tools) are now tracked in conversation history via AgentConfigUpdate.

LLMStream.collect() API

A new LLMStream.collect() API makes it significantly easier to use LLMs outside of AgentSession. You can now call an LLM, collect the full response, and execute tool calls with a straightforward API — useful for background tasks, pre-processing, or any workflow where you need LLM capabilities without the full voice agent pipeline.

from livekit.agents import llm

response = await my_llm.chat(chat_ctx=ctx, tools=tools).collect()

for tc in response.tool_calls:
    result = await llm.execute_function_call(tc, tool_ctx)
    ctx.insert(result.fnc_call)
    if result.fnc_call_out:
        ctx.insert(result.fnc_call_out)

Manual Turn Detection for Realtime Models

Realtime models now support commit_user_turn, enabling turn_detection="manual" mode. This gives you full control over when user turns are committed — useful for push-to-talk interfaces or scenarios where automatic VAD-based turn detection isn't ideal.

@​ctx.room.local_participant.register_rpc_method("end_turn")
async def end_turn(data: rtc.RpcInvocationData):
    session.input.set_audio_enabled(False)
    session.commit_user_turn(
        transcript_timeout=10.0,
        stt_flush_duration=2.0,
    )

Job Migration on Reconnection

When the agent server temporarily loses connection and reconnects, active jobs are now automatically migrated rather than being dropped. This significantly improves reliability during transient network issues.

False Interruption Fix

Fixed a bug where late end-of-speech events could trigger duplicate false interruption timers, causing the agent to incorrectly stop speaking. The agent now properly deduplicates these events and tracks STT completion state more reliably.

New Providers & Plugins
  • xAI Responses LLM — Use xAI's Responses API via xai.responses.LLM()
  • Azure OpenAI Responses — Azure-hosted Responses API via azure.responses.LLM(), with support for deployments and Azure auth
  • Camb.ai TTS — New TTS plugin powered by the MARS model family (mars-flash, mars-pro, mars-instruct), with voice selection, language control, and style instructions
  • Avatario Avatar — Virtual avatar plugin with session management and API client

What's Changed

New Contributors

Full Changelog: https://github.com/livekit/agents/compare/livekit-agents@1.3.12...livekit-agents@1.4.0

v1.3.12

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/livekit/agents/compare/livekit-agents@1.3.11...livekit-agents@1.3.12

v1.3.11

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/livekit/agents/compare/livekit-agents@1.3.10...livekit-agents@1.3.11

v1.3.10

Compare Source

What's Changed

Provider tools

This release brings the ability to use tools that are specific to model providers with provider tools. You can now mix & match function tools and provider tools in your agent by specifying Agent(tools=[..]).

For those that were using the experimental _gemini_tools parameter with Google LLMs, that experimental parameter has been removed in favor of provider tools. See usage example here.

New Contributors

Full Changelog: https://github.com/livekit/agents/compare/livekit-agents@1.3.9...livekit-agents@1.3.10

v1.3.9

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/livekit/agents/compare/livekit-agents@1.3.8...livekit-agents@1.3.9

v1.3.8

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/livekit/agents/compare/livekit-agents@1.3.7...livekit-agents@1.3.8

v1.3.7

Compare Source

What's Changed


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/livekit-dependencies-(non-major) branch from 0144c82 to c2b2ee1 Compare September 15, 2025 20:56
@renovate renovate bot changed the title Update LiveKit dependencies (non-major) to v1.2.8 Update LiveKit dependencies (non-major) to v1.2.9 Sep 15, 2025
@renovate renovate bot force-pushed the renovate/livekit-dependencies-(non-major) branch from c2b2ee1 to 630b60c Compare September 18, 2025 21:07
@renovate renovate bot changed the title Update LiveKit dependencies (non-major) to v1.2.9 Update LiveKit dependencies (non-major) to v1.2.11 Sep 18, 2025
@renovate renovate bot force-pushed the renovate/livekit-dependencies-(non-major) branch from 630b60c to 0b25c00 Compare September 29, 2025 05:13
@renovate renovate bot changed the title Update LiveKit dependencies (non-major) to v1.2.11 Update LiveKit dependencies (non-major) to v1.2.12 Sep 29, 2025
@renovate renovate bot force-pushed the renovate/livekit-dependencies-(non-major) branch from 0b25c00 to 2960c42 Compare October 1, 2025 21:33
@renovate renovate bot changed the title Update LiveKit dependencies (non-major) to v1.2.12 Update LiveKit dependencies (non-major) to v1.2.14 Oct 1, 2025
@renovate renovate bot force-pushed the renovate/livekit-dependencies-(non-major) branch from 2960c42 to 6ddfcd8 Compare October 15, 2025 20:28
@renovate renovate bot changed the title Update LiveKit dependencies (non-major) to v1.2.14 Update LiveKit dependencies (non-major) to v1.2.15 Oct 15, 2025
@renovate renovate bot force-pushed the renovate/livekit-dependencies-(non-major) branch from 6ddfcd8 to fd4ed8f Compare October 27, 2025 12:42
@renovate renovate bot changed the title Update LiveKit dependencies (non-major) to v1.2.15 Update LiveKit dependencies (non-major) to v1.2.16 Oct 27, 2025
@renovate renovate bot force-pushed the renovate/livekit-dependencies-(non-major) branch from fd4ed8f to b44e2bb Compare October 29, 2025 17:39
@renovate renovate bot changed the title Update LiveKit dependencies (non-major) to v1.2.16 Update LiveKit dependencies (non-major) to v1.2.17 Oct 29, 2025
@renovate renovate bot force-pushed the renovate/livekit-dependencies-(non-major) branch from b44e2bb to f1d182d Compare November 5, 2025 21:08
@renovate renovate bot changed the title Update LiveKit dependencies (non-major) to v1.2.17 Update LiveKit dependencies (non-major) to v1.2.18 Nov 5, 2025
@renovate renovate bot force-pushed the renovate/livekit-dependencies-(non-major) branch from f1d182d to 04ef054 Compare November 17, 2025 12:42
@renovate renovate bot changed the title Update LiveKit dependencies (non-major) to v1.2.18 Update LiveKit dependencies (non-major) to v1.3.2 Nov 17, 2025
@renovate renovate bot force-pushed the renovate/livekit-dependencies-(non-major) branch from 04ef054 to 224943d Compare November 19, 2025 21:53
@renovate renovate bot changed the title Update LiveKit dependencies (non-major) to v1.3.2 Update LiveKit dependencies (non-major) to v1.3.3 Nov 19, 2025
@renovate renovate bot force-pushed the renovate/livekit-dependencies-(non-major) branch from 224943d to 9a85ca3 Compare November 25, 2025 00:40
@renovate renovate bot changed the title Update LiveKit dependencies (non-major) to v1.3.3 Update LiveKit dependencies (non-major) to v1.3.4 Nov 25, 2025
@renovate renovate bot force-pushed the renovate/livekit-dependencies-(non-major) branch from 9a85ca3 to 12a23c7 Compare November 26, 2025 02:11
@renovate renovate bot changed the title Update LiveKit dependencies (non-major) to v1.3.4 Update LiveKit dependencies (non-major) to v1.3.5 Nov 26, 2025
@renovate renovate bot force-pushed the renovate/livekit-dependencies-(non-major) branch from 12a23c7 to d5409c8 Compare December 3, 2025 21:55
@renovate renovate bot changed the title Update LiveKit dependencies (non-major) to v1.3.5 Update LiveKit dependencies (non-major) to v1.3.6 Dec 3, 2025
@renovate renovate bot force-pushed the renovate/livekit-dependencies-(non-major) branch from d5409c8 to 8a91422 Compare December 16, 2025 23:48
@renovate renovate bot changed the title Update LiveKit dependencies (non-major) to v1.3.6 Update LiveKit dependencies (non-major) to v1.3.7 Dec 16, 2025
@renovate renovate bot force-pushed the renovate/livekit-dependencies-(non-major) branch from 8a91422 to 2df591c Compare December 17, 2025 09:35
@renovate renovate bot changed the title Update LiveKit dependencies (non-major) to v1.3.7 Update LiveKit dependencies (non-major) to v1.3.8 Dec 17, 2025
@renovate renovate bot force-pushed the renovate/livekit-dependencies-(non-major) branch from 2df591c to b37b0f5 Compare December 19, 2025 08:32
@renovate renovate bot changed the title Update LiveKit dependencies (non-major) to v1.3.8 Update LiveKit dependencies (non-major) to v1.3.9 Dec 19, 2025
@renovate renovate bot force-pushed the renovate/livekit-dependencies-(non-major) branch from b37b0f5 to be72e88 Compare December 23, 2025 21:09
@renovate renovate bot changed the title Update LiveKit dependencies (non-major) to v1.3.9 Update LiveKit dependencies (non-major) to v1.3.10 Dec 23, 2025
@renovate renovate bot force-pushed the renovate/livekit-dependencies-(non-major) branch from be72e88 to bad010b Compare January 14, 2026 21:52
@renovate renovate bot changed the title Update LiveKit dependencies (non-major) to v1.3.10 Update LiveKit dependencies (non-major) to v1.3.11 Jan 14, 2026
@renovate renovate bot force-pushed the renovate/livekit-dependencies-(non-major) branch from bad010b to 0bd1d76 Compare January 22, 2026 02:42
@renovate renovate bot changed the title Update LiveKit dependencies (non-major) to v1.3.11 Update LiveKit dependencies (non-major) to v1.3.12 Jan 22, 2026
@renovate renovate bot force-pushed the renovate/livekit-dependencies-(non-major) branch from 0bd1d76 to 0533e2b Compare February 6, 2026 21:44
@renovate renovate bot changed the title Update LiveKit dependencies (non-major) to v1.3.12 Update LiveKit dependencies (non-major) to v1.4.1 Feb 6, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants