Version Packages - #2140
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
10 times, most recently
from
July 30, 2026 21:10
ba6a60c to
39df8c8
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 30, 2026 21:49
39df8c8 to
a7ba52e
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@livekit/agents@1.7.0
Minor Changes
Patch Changes
Add cloud agent id and deployment to telemetry resource attributes (
lk.cloud_agent_id/lk.deployment_id) when running on LiveKit Cloud. - #2137 (@jmcclanahan)fix(voice): defer interim transcript interruptions to local VAD when configured - #2159 (@rosetta-livekit-bot)
fix(voice): stop an interrupted reply from muting the session forever - #2127 (@toubatbrian)
A reply interrupted before its audio started playing could leave its pipeline reply task
parked in the post-interrupt
waitForPlayout(), which races only the reply's own abortsignal — a signal nothing on the ordinary interrupt path ever fires. The speech scheduling
loop waits on that reply's generation, so
_currentSpeechstayed pinned on the interruptedhandle and every later turn was queued but never authorized: the agent went silent for the
rest of the session. On the evidence so far this needs an audio sink whose playback-finished
event the pipeline does not produce itself — remote avatar outputs (
DataStreamAudioOutputand the avatar plugins built on it) and user-supplied
AudioOutputs; a plain room outputsettled both of the affected waits on its own across six live runs.
SpeechHandlenow arms a 5s watchdog when a speech is interrupted (a port of python'sINTERRUPTION_TIMEOUT): if the speech has not finished by then, its tasks are cancelled —firing exactly the abort signal those waits are already watching — and the handle is marked
done, releasing the scheduler.
Fixes AgentSession: reply interrupted before playout start wedges _currentSpeech forever (1.5.3) #2065.
Send turn finalization messages when flushing streaming STT with no buffered audio. - #2172 (@rosetta-livekit-bot)
Preserve concrete STT language hints when later transcripts report non-specific language codes. - #2149 (@rosetta-livekit-bot)
fix realtime user turns appearing after the reply they prompted, by placing the user message at the time its turn began rather than at the time the provider delivered the transcript - #2165 (@toubatbrian)
stamp a tool call's
createdAtwhen its execution begins rather than when it was parsed off the model stream, so it no longer sorts ahead of the assistant message that requested it - #2171 (@u9g)@livekit/agents-plugin-anam@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-anthropic@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-assemblyai@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-azure@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-baseten@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-bey@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-cartesia@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-cerebras@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-deepgram@1.7.0
Patch Changes
Send turn finalization messages when flushing streaming STT with no buffered audio. - #2172 (@rosetta-livekit-bot)
Updated dependencies [
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-did@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-elevenlabs@1.7.0
Patch Changes
Send turn finalization messages when flushing streaming STT with no buffered audio. - #2172 (@rosetta-livekit-bot)
Updated dependencies [
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-fishaudio@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-google@1.7.0
Patch Changes
Upgrade
@google/genaito 2.x and seed the initial chat context of Gemini 3.x live sessions with its original roles. - #2162 (@toubatbrian)Models whose chat context cannot be updated mid-session (the 3.x live models) close the socket on a prefill containing
modelturns, so an initial context had to be flattened intouserturns to survive. Those sessions now sendhistoryConfig.initialHistoryInClientContent, which tells the server the leadingclientContentis history, and the prefill keeps itsuser/assistantroles.Per the
HistoryConfigreference the seeded history never triggers a model call and the conversation then starts throughrealtimeInput, so a context ending on a user question is seeded as the completed exchanges followed by that question as realtime text. Left inside the history it would be filed away unanswered.Also report when a user turn began on the final input transcript. Gemini withholds that transcript until its reply has finished generating, which had every reply landing ahead of the question it answered in the Cloud transcript.
Updated dependencies [
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-hedra@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-hume@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-inworld@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-krisp@1.7.0
Patch Changes
Fix Krisp-processed audio being invisible to the rest of the pipeline - #2130 (@toubatbrian)
The LiveKit Cloud backend is reached through
createRequire, which resolves the internalpackage's
requirecondition and so loads the CJS build of@livekit/rtc-nodenext to theESM one the framework uses. Frames returned by that backend were instances of the CJS copy's
AudioFrame, so everyinstanceof AudioFramedownstream failed. Adaptive interruption sawzero audio and classified every barge-in as a backchannel, making it impossible to interrupt
an agent that had noise cancellation enabled. Frames are now adopted into the local binding
before leaving the filter, sharing their samples rather than copying them.
Updated dependencies [
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-lemonslice@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-liveavatar@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-livekit@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-minimax@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-mistral@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-mistralai@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-neuphonic@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-openai@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-perplexity@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-phonic@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-protoface@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-resemble@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-rime@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-runway@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-sarvam@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-silero@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-soniox@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-tavus@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-trugen@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugin-xai@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]:@livekit/agents-plugins-test@1.7.0
Patch Changes
5010952,37eda82,67620fb,fd46904,d4edb58,2446c9e,d5d8d04,f7e9c0c]: