Skip to content

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

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

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

Conversation

@renovate

@renovate renovate Bot commented Sep 2, 2025

Copy link
Copy Markdown
Contributor

ℹ️ 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.6.7 age confidence
livekit-plugins-deepgram ==1.2.7==1.6.7 age confidence
livekit-plugins-openai ==1.2.7==1.6.7 age confidence
livekit-plugins-silero ==1.2.7==1.6.7 age confidence

Release Notes

livekit/agents (livekit-agents)

v1.6.7: @​livekit/agents@1.6.7

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/livekit/agents/compare/livekit-agents@1.6.6...livekit-agents@1.6.7

v1.6.6

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/livekit/agents/compare/livekit-agents@1.6.5...livekit-agents@1.6.6

v1.6.5: @​livekit/agents@1.6.5

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/livekit/agents/compare/livekit-agents@1.6.4...livekit-agents@1.6.5

v1.6.4

Compare Source

What's Changed

Bug fixes

Turn Detector

Turn handling/committing

[!WARNING]
users are advised to upgrade if you use agent handoff with STT and are on 1.5.14 ~ 1.6.3

Other updates

Core

Plugins

Version update

New Contributors

Full Changelog: https://github.com/livekit/agents/compare/livekit-agents@1.6.3...livekit-agents@1.6.4

v1.6.3

Compare Source

What's Changed

Full Changelog: https://github.com/livekit/agents/compare/livekit-agents@1.6.2...livekit-agents@1.6.3

v1.6.2

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/livekit/agents/compare/livekit-agents@1.6.1...livekit-agents@1.6.2

v1.6.1

Compare Source

Introducing LiveKit Turn Detector v1.0

Determining when the agent should respond is a delicate balance: responding too early can interrupt the user, while responding too late introduces unnecessary latency and awkward silence. We solve this with our state-of-the-art turn detector, which leverages both audio and text semantics to identify the optimal moment to respond.

Read more about our turn detector in our blog.

What's Changed

New Contributors

Full Changelog: https://github.com/livekit/agents/compare/livekit-agents@1.6.0...livekit-agents@1.6.1

v1.6.0

Introducing Asynchronous Tools

When a long-running tool is in progress, the user will be met with silence until it completes. Asynchronous tools can hand control back to the LLM before it finishes, streaming updates into the conversation as it progresses.

class TravelAgent(Agent):
    @​llm.function_tool(flags=llm.ToolFlag.CANCELLABLE, on_duplicate="confirm")
    async def book_flight(self, ctx: RunContext, origin: str, destination: str, date: str) -> str:
        """Book a flight."""
        # First update is delivered immediately and releases control back to the LLM,
        # so the agent can say e.g. "Sure, searching flights to Tokyo — this'll take a minute."
        await ctx.update(
            f"Searching flights from {origin} to {destination} on {date}. "
            "This will take a couple of minutes."
        )

        await asyncio.sleep(30)  # simulate long-running work

        # Later updates are coalesced into a deferred reply, delivered when the agent
        # is idle: "Good news — best price is $289 on Delta, confirming now."
        await ctx.update("Found 3 options. Best price $289 on Delta. Confirming now.")

        await asyncio.sleep(40)  # simulate more long-running work

        # The final return is also delivered when the agent is idle.
        return f"Booked! Confirmation FL-{random.randint(100000, 999999)}."
Filler phrases

Use filler words to break long silences via ctx.with_filler(). You can set delay to the amount of quiet seconds per interval for when the filler words are played. You can also rotate between phrases, set interval to configure the cooldown between filler fires.

        followups = [
            "Almost there, just confirming.",
            "Still working on it, won't be long.",
            "Hang tight — almost done.",
        ]
        async with ctx.with_filler(
            lambda step: followups[step], delay=5, interval=10, max_steps=len(followups)
        ):
            await asyncio.sleep(40) # simulate a long API call

Read more about async tools in our docs.

Complete Changelog

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • 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 changed the title Update LiveKit dependencies (non-major) to v1.4.1 Update LiveKit dependencies (non-major) Feb 17, 2026
@renovate
renovate Bot force-pushed the renovate/livekit-dependencies-(non-major) branch from 8a6e343 to ea589be Compare February 17, 2026 05:57
@renovate renovate Bot changed the title Update LiveKit dependencies (non-major) Update LiveKit dependencies (non-major) to v1.4.2 Feb 17, 2026
@renovate
renovate Bot force-pushed the renovate/livekit-dependencies-(non-major) branch from ea589be to 8fab695 Compare February 23, 2026 04:45
@renovate renovate Bot changed the title Update LiveKit dependencies (non-major) to v1.4.2 Update LiveKit dependencies (non-major) to v1.4.3 Feb 23, 2026
@renovate
renovate Bot force-pushed the renovate/livekit-dependencies-(non-major) branch from 8fab695 to 442793c Compare March 3, 2026 05:16
@renovate renovate Bot changed the title Update LiveKit dependencies (non-major) to v1.4.3 Update LiveKit dependencies (non-major) to v1.4.4 Mar 3, 2026
@renovate
renovate Bot force-pushed the renovate/livekit-dependencies-(non-major) branch from 442793c to e7696b9 Compare March 11, 2026 09:40
@renovate renovate Bot changed the title Update LiveKit dependencies (non-major) to v1.4.4 Update LiveKit dependencies (non-major) to v1.4.5 Mar 11, 2026
@renovate
renovate Bot force-pushed the renovate/livekit-dependencies-(non-major) branch from e7696b9 to 8df2c02 Compare March 16, 2026 20:34
@renovate renovate Bot changed the title Update LiveKit dependencies (non-major) to v1.4.5 Update LiveKit dependencies (non-major) to v1.4.6 Mar 16, 2026
@renovate
renovate Bot force-pushed the renovate/livekit-dependencies-(non-major) branch from 8df2c02 to d001716 Compare March 19, 2026 18:11
@renovate renovate Bot changed the title Update LiveKit dependencies (non-major) to v1.4.6 Update LiveKit dependencies (non-major) to v1.5.0 Mar 19, 2026
@renovate
renovate Bot force-pushed the renovate/livekit-dependencies-(non-major) branch from d001716 to a287dab Compare March 24, 2026 00:57
@renovate renovate Bot changed the title Update LiveKit dependencies (non-major) to v1.5.0 Update LiveKit dependencies (non-major) to v1.5.1 Mar 24, 2026
@renovate
renovate Bot force-pushed the renovate/livekit-dependencies-(non-major) branch from a287dab to eba22c8 Compare April 8, 2026 23:54
@renovate renovate Bot changed the title Update LiveKit dependencies (non-major) to v1.5.1 Update LiveKit dependencies (non-major) to v1.5.2 Apr 8, 2026
@renovate
renovate Bot force-pushed the renovate/livekit-dependencies-(non-major) branch 2 times, most recently from 9c3f59e to d420959 Compare April 16, 2026 10:45
@renovate renovate Bot changed the title Update LiveKit dependencies (non-major) to v1.5.2 Update LiveKit dependencies (non-major) to v1.5.4 Apr 16, 2026
@renovate
renovate Bot force-pushed the renovate/livekit-dependencies-(non-major) branch from d420959 to 2e63b81 Compare April 20, 2026 21:39
@renovate renovate Bot changed the title Update LiveKit dependencies (non-major) to v1.5.4 Update LiveKit dependencies (non-major) to v1.5.5 Apr 20, 2026
@renovate
renovate Bot force-pushed the renovate/livekit-dependencies-(non-major) branch from 2e63b81 to fd9d43a Compare April 22, 2026 21:08
@renovate renovate Bot changed the title Update LiveKit dependencies (non-major) to v1.5.5 Update LiveKit dependencies (non-major) to v1.5.6 Apr 22, 2026
@renovate
renovate Bot force-pushed the renovate/livekit-dependencies-(non-major) branch from fd9d43a to c35dcac Compare April 30, 2026 21:36
@renovate renovate Bot changed the title Update LiveKit dependencies (non-major) to v1.5.6 Update LiveKit dependencies (non-major) to v1.5.7 Apr 30, 2026
@renovate
renovate Bot force-pushed the renovate/livekit-dependencies-(non-major) branch from c35dcac to 3718070 Compare May 5, 2026 19:37
@renovate renovate Bot changed the title Update LiveKit dependencies (non-major) to v1.5.7 Update LiveKit dependencies (non-major) to v1.5.8 May 5, 2026
@renovate
renovate Bot force-pushed the renovate/livekit-dependencies-(non-major) branch from 3718070 to 270b056 Compare May 13, 2026 21:15
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