Releases: pipecat-ai/pipecat
v0.0.56
Changed
-
Use
gemini-2.0-flash-001
as the default model forGoogleLLMSerivce
. -
Improved foundational examples 22b, 22c, and 22d to support function calling. With these base examples,
FunctionCallInProgressFrame
andFunctionCallResultFrame
will no longer be blocked by the gates.
Fixed
-
Fixed a
TkLocalTransport
andLocalAudioTransport
issues that was causing errors on cleanup. -
Fixed an issue that was causing
tests.utils
import to fail because of logging setup. -
Fixed a
SentryMetrics
issue that was preventing any metrics to be sent to Sentry and also was preventing from metrics frames to be pushed to the pipeline. -
Fixed an issue in
BaseOutputTransport
where incoming audio would not be resampled to the desired output sample rate. -
Fixed an issue with the
TwilioFrameSerializer
andTelnyxFrameSerializer
wheretwilio_sample_rate
andtelnyx_sample_rate
were incorrectly initialized toaudio_in_sample_rate
. Those values currently default to 8000 and should be set manually from the serializer constructor if a different value is needed.
Other
- Added a new
sentry-metrics
example.
v0.0.55
Added
-
Added a new
start_metadata
field toPipelineParams
. The provided metadata will be set to the initialStartFrame
being pushed from thePipelineTask
. -
Added new fields to
PipelineParams
to control audio input and output sample rates for the whole pipeline. This allows controlling sample rates from a single place instead of having to specify sample rates in each service. Setting a sample rate to a service is still possible and will override the value fromPipelineParams
. -
Introduce audio resamplers (
BaseAudioResampler
). This is just a base class to implement audio resamplers. Currently, two implementations are providedSOXRAudioResampler
andResampyResampler
. A newcreate_default_resampler()
has been added (replacing the now deprecatedresample_audio()
). -
It is now possible to specify the asyncio event loop that a
PipelineTask
and all the processors should run on by passing it as a new argument to thePipelineRunner
. This could allow running pipelines in multiple threads each one with its own event loop. -
Added a new
utils.TaskManager
. Instead of a global task manager we now have a task manager perPipelineTask
. In the previous version the task manager was global, so running multiple simultaneousPipelineTask
s could result in dangling task warnings which were not actually true. In order, for all the processors to know about the task manager, we pass it through theStartFrame
. This means that processors should create tasks when they receive aStartFrame
but not before (because they don't have a task manager yet). -
Added
TelnyxFrameSerializer
to support Telnyx calls. A full running example has also been added toexamples/telnyx-chatbot
. -
Allow pushing silence audio frames before
TTSStoppedFrame
. This might be useful for testing purposes, for example, passing bot audio to an STT service which usually needs additional audio data to detect the utterance stopped. -
TwilioSerializer
now supports transport message frames. With this we can create Twilio emulators. -
Added a new transport:
WebsocketClientTransport
. -
Added a
metadata
field toFrame
which makes it possible to pass custom data to all frames. -
Added
test/utils.py
inside of pipecat package.
Changed
-
GatedOpenAILLMContextAggregator
now require keyword arguments. Also, a newstart_open
argument has been added to set the initial state of the gate. -
Added
organization
andproject
level authentication toOpenAILLMService
. -
Improved the language checking logic in
ElevenLabsTTSService
andElevenLabsHttpTTSService
to properly handle language codes based on model compatibility, with appropriate warnings when language codes cannot be applied. -
Updated
GoogleLLMContext
to support pushingLLMMessagesUpdateFrame
s that contain a combination of function calls, function call responses, system messages, or just messages. -
InputDTMFFrame
is now based onDTMFFrame
. There's also a newOutputDTMFFrame
frame.
Deprecated
resample_audio()
is now deprecated, usecreate_default_resampler()
instead.
Removed
AudioBufferProcessor.reset_audio_buffers()
has been removed, useAudioBufferProcessor.start_recording()
andAudioBufferProcessor.stop_recording()
instead.
Fixed
-
Fixed a
AudioBufferProcessor
that would cause crackling in some recordings. -
Fixed an issue in
AudioBufferProcessor
where user callback would not be called on task cancellation. -
Fixed an issue in
AudioBufferProcessor
that would cause wrong silence padding in some cases. -
Fixed an issue where
ElevenLabsTTSService
messages would return a 1009 websocket error by increasing the max message size limit to 16MB. -
Fixed a
DailyTransport
issue that would cause events to be triggered before join finished. -
Fixed a
PipelineTask
issue that was preventing processors to be cleaned up after cancelling the task. -
Fixed an issue where queuing a
CancelFrame
to a pipeline task would not cause the task to finish. However, usingPipelineTask.cancel()
is still the recommended way to cancel a task.
Other
-
Improved Unit Test
run_test()
to usePipelineTask
andPipelineRunner
. There's now also some control aroundStartFrame
andEndFrame
. TheEndTaskFrame
has been removed since it doesn't seem necessary with this new approach. -
Updated
twilio-chatbot
with a few new features: use 8000 sample rate and avoid resampling, a new client useful for stress testing and testing locally without the need to make phone calls. Also, added audio recording on both the client and the server to make sure the audio sounds good. -
Updated examples to use
task.cancel()
to immediately exit the example when a participant leaves or disconnects, instead of pushing anEndFrame
. Pushing anEndFrame
causes the bot to run through everything that is internally queued (which could take some seconds). Note that usingtask.cancel()
might not always be the best option and pushing anEndFrame
could still be desirable to make sure all the pipeline is flushed.
v0.0.54
Added
-
In order to create tasks in Pipecat frame processors it is now recommended to use
FrameProcessor.create_task()
(which uses the newutils.asyncio.create_task()
). It takes care of uncaught exceptions, task cancellation handling and task management. To cancel or wait for a task there isFrameProcessor.cancel_task()
andFrameProcessor.wait_for_task()
. All of Pipecat processors have been updated accordingly. Also, when a pipeline runner finishes, a warning about dangling tasks might appear, which indicates if any of the created tasks was never cancelled or awaited for (using these new functions). -
It is now possible to specify the period of the
PipelineTask
heartbeat frames withheartbeats_period_secs
. -
Added
DailyMeetingTokenProperties
andDailyMeetingTokenParams
Pydantic models for meeting token creation inget_token
method ofDailyRESTHelper
. -
Added
enable_recording
andgeo
parameters toDailyRoomProperties
. -
Added
RecordingsBucketConfig
toDailyRoomProperties
to upload recordings to a custom AWS bucket.
Changed
-
Enhanced
UserIdleProcessor
with retry functionality and control over idle monitoring via new callback signature(processor, retry_count) -> bool
. Updated the17-detect-user-idle.py
to show how to use theretry_count
. -
Add defensive error handling for
OpenAIRealtimeBetaLLMService
's audio truncation. Audio truncation errors during interruptions now log a warning and allow the session to continue instead of throwing an exception. -
Modified
TranscriptProcessor
to use TTS text frames for more accurate assistant transcripts. Assistant messages are now aggregated based on bot speaking boundaries rather than LLM context, providing better handling of interruptions and partial utterances. -
Updated foundational examples
28a-transcription-processor-openai.py
,28b-transcript-processor-anthropic.py
, and28c-transcription-processor-gemini.py
to use the updatedTranscriptProcessor
.
Fixed
-
Fixed an
GeminiMultimodalLiveLLMService
issue that was preventing the user to push initial LLM assistant messages (usingLLMMessagesAppendFrame
). -
Added missing
FrameProcessor.cleanup()
calls toPipeline
,ParallelPipeline
andUserIdleProcessor
. -
Fixed a type error when using
voice_settings
inElevenLabsHttpTTSService
. -
Fixed an issue where
OpenAIRealtimeBetaLLMService
function calling resulted in an error. -
Fixed an issue in
AudioBufferProcessor
where the last audio buffer was not being processed, in cases where the_user_audio_buffer
was smaller than the buffer size.
Performance
- Replaced audio resampling library
resampy
withsoxr
. Resampling a 2:21s audio file from 24KHz to 16KHz took 1.41s withresampy
and 0.031s withsoxr
with similar audio quality.
Other
- Added initial unit test infrastructure.
v0.0.53
Added
-
Added
ElevenLabsHttpTTSService
which uses EleveLabs' HTTP API instead of the websocket one. -
Introduced pipeline frame observers. Observers can view all the frames that go through the pipeline without the need to inject processors in the pipeline. This can be useful, for example, to implement frame loggers or debuggers among other things. The example
examples/foundational/30-observer.py
shows how to add an observer to a pipeline for debugging. -
Introduced heartbeat frames. The pipeline task can now push periodic heartbeats down the pipeline when
enable_heartbeats=True
. Heartbeats are system frames that are supposed to make it all the way to the end of the pipeline. When a heartbeat frame is received the traversing time (i.e. the time it took to go through the whole pipeline) will be displayed (with TRACE logging) otherwise a warning will be shown. The exampleexamples/foundational/31-heartbeats.py
shows how to enable heartbeats and forces warnings to be displayed. -
Added
LLMTextFrame
andTTSTextFrame
which should be pushed by LLM and TTS services respectively instead ofTextFrame
s. -
Added
OpenRouter
for OpenRouter integration with an OpenAI-compatible interface. Added foundational example14m-function-calling-openrouter.py
. -
Added a new
WebsocketService
based class for TTS services, containing base functions and retry logic. -
Added
DeepSeekLLMService
for DeepSeek integration with an OpenAI-compatible interface. Added foundational example14l-function-calling-deepseek.py
. -
Added
FunctionCallResultProperties
dataclass to provide a structured way to control function call behavior, including:run_llm
: Controls whether to trigger LLM completionon_context_updated
: Optional callback triggered after context update
-
Added a new foundational example
07e-interruptible-playht-http.py
for easy testing ofPlayHTHttpTTSService
. -
Added support for Google TTS Journey voices in
GoogleTTSService
. -
Added
29-livekit-audio-chat.py
, as a new foundational examples forLiveKitTransportLayer
. -
Added
enable_prejoin_ui
,max_participants
andstart_video_off
params toDailyRoomProperties
. -
Added
session_timeout
toFastAPIWebsocketTransport
andWebsocketServerTransport
for configuring session timeouts (in seconds). Triggerson_session_timeout
for custom timeout handling.
See examples/websocket-server/bot.py. -
Added the new modalities option and helper function to set Gemini output modalities.
-
Added
examples/foundational/26d-gemini-multimodal-live-text.py
which is using Gemini as TEXT modality and using another TTS provider for TTS process.
Changed
-
Modified
UserIdleProcessor
to start monitoring only after first conversation activity (UserStartedSpeakingFrame
orBotStartedSpeakingFrame
) instead of immediately. -
Modified
OpenAIAssistantContextAggregator
to support controlled completions and to emit context update callbacks viaFunctionCallResultProperties
. -
Added
aws_session_token
to thePollyTTSService
. -
Changed the default model for
PlayHTHttpTTSService
toPlay3.0-mini-http
. -
api_key
,aws_access_key_id
andregion
are no longer required parameters for the PollyTTSService (AWSTTSService) -
Added
session_timeout
example inexamples/websocket-server/bot.py
to handle session timeout event. -
Changed
InputParams
insrc/pipecat/services/gemini_multimodal_live/gemini.py
to support different modalities. -
Changed
DeepgramSTTService
to sendfinalize
event whenever VAD detectsUserStoppedSpeakingFrame
. This helps in faster transcriptions and clearing theDeepgram
audio buffer.
Fixed
-
Fixed an issue where
DeepgramSTTService
was not generating metrics using pipeline's VAD. -
Fixed
UserIdleProcessor
not properly propagatingEndFrame
s through the pipeline. -
Fixed an issue where websocket based TTS services could incorrectly terminate their connection due to a retry counter not resetting.
-
Fixed a
PipelineTask
issue that would cause a dangling task after stopping the pipeline with anEndFrame
. -
Fixed an import issue for
PlayHTHttpTTSService
. -
Fixed an issue where languages couldn't be used with the
PlayHTHttpTTSService
. -
Fixed an issue where
OpenAIRealtimeBetaLLMService
audio chunks were hitting an error when truncating audio content. -
Fixed an issue where setting the voice and model for
RimeHttpTTSService
wasn't working. -
Fixed an issue where
IdleFrameProcessor
andUserIdleProcessor
were getting initialized before the start of the pipeline.
v0.0.52
Added
-
Constructor arguments for GoogleLLMService to directly set tools and tool_config.
-
Smart turn detection example (
22d-natural-conversation-gemini-audio.py
) that leverages Gemini 2.0 capabilities ().
(see https://x.com/kwindla/status/1870974144831275410) -
Added
DailyTransport.send_dtmf()
to send dial-out DTMF tones. -
Added
DailyTransport.sip_call_transfer()
to forward SIP and PSTN calls to another address or number. For example, transfer a SIP call to a different SIP address or transfer a PSTN phone number to a different PSTN phone number. -
Added
DailyTransport.sip_refer()
to transfer incoming SIP/PSTN calls from outside Daily to another SIP/PSTN address. -
Added an
auto_mode
input parameter toElevenLabsTTSService
.auto_mode
is set toTrue
by default. Enabling this setting disables the chunk schedule and all buffers, which reduces latency. -
Added
KoalaFilter
which implement on device noise reduction using Koala Noise Suppression.
(see https://picovoice.ai/platform/koala/) -
Added
CerebrasLLMService
for Cerebras integration with an OpenAI-compatible interface. Added foundational example14k-function-calling-cerebras.py
. -
Pipecat now supports Python 3.13. We had a dependency on the
audioop
package which was deprecated and now removed on Python 3.13. We are now usingaudioop-lts
(https://github.com/AbstractUmbra/audioop) to provide the same functionality. -
Added timestamped conversation transcript support:
- New
TranscriptProcessor
factory provides access to user and assistant transcript processors. UserTranscriptProcessor
processes user speech with timestamps from transcription.AssistantTranscriptProcessor
processes assistant responses with LLM context timestamps.- Messages emitted with ISO 8601 timestamps indicating when they were spoken.
- Supports all LLM formats (OpenAI, Anthropic, Google) via standard message format.
- New examples:
28a-transcription-processor-openai.py
,28b-transcription-processor-anthropic.py
, and28c-transcription-processor-gemini.py
.
- New
-
Add support for more languages to ElevenLabs (Arabic, Croatian, Filipino, Tamil) and PlayHT (Afrikans, Albanian, Amharic, Arabic, Bengali, Croatian, Galician, Hebrew, Mandarin, Serbian, Tagalog, Urdu, Xhosa).
Changed
-
PlayHTTTSService
uses the new v4 websocket API, which also fixes an issue where text inputted to the TTS didn't return audio. -
The default model for
ElevenLabsTTSService
is noweleven_flash_v2_5
. -
OpenAIRealtimeBetaLLMService
now takes amodel
parameter in the constructor. -
Updated the default model for the
OpenAIRealtimeBetaLLMService
. -
Room expiration (
exp
) inDailyRoomProperties
is now optional (None
) by default instead of automatically setting a 5-minute expiration time. You must explicitly set expiration time if desired.
Deprecated
AWSTTSService
is now deprecated, usePollyTTSService
instead.
Fixed
-
Fixed token counting in
GoogleLLMService
. Tokens were summed incorrectly (double-counted in many cases). -
Fixed an issue that could cause the bot to stop talking if there was a user interruption before getting any audio from the TTS service.
-
Fixed an issue that would cause
ParallelPipeline
to handleEndFrame
incorrectly causing the main pipeline to not terminate or terminate too early. -
Fixed an audio stuttering issue in
FastPitchTTSService
. -
Fixed a
BaseOutputTransport
issue that was causing non-audio frames being processed before the previous audio frames were played. This will allow, for example, sending a frameA
after aTTSSpeakFrame
and the frameA
will only be pushed downstream after the audio generated fromTTSSpeakFrame
has been spoken. -
Fixed a
DeepgramSTTService
issue that was causing language to be passed as an object instead of a string resulting in the connection to fail.
v0.0.51
Fixed
- Fixed an issue in websocket-based TTS services that was causing infinite reconnections (Cartesia, ElevenLabs, PlayHT and LMNT).
v0.0.50
Added
-
Added
GeminiMultimodalLiveLLMService
. This is an integration for Google's Gemini Multimodal Live API, supporting:- Real-time audio and video input processing
- Streaming text responses with TTS
- Audio transcription for both user and bot speech
- Function calling
- System instructions and context management
- Dynamic parameter updates (temperature, top_p, etc.)
-
Added
AudioTranscriber
utility class for handling audio transcription with Gemini models. -
Added new context classes for Gemini:
GeminiMultimodalLiveContext
GeminiMultimodalLiveUserContextAggregator
GeminiMultimodalLiveAssistantContextAggregator
GeminiMultimodalLiveContextAggregatorPair
-
Added new foundational examples for
GeminiMultimodalLiveLLMService
:26-gemini-multimodal-live.py
26a-gemini-multimodal-live-transcription.py
26b-gemini-multimodal-live-video.py
26c-gemini-multimodal-live-video.py
-
Added
SimliVideoService
. This is an integration for Simli AI avatars.
(see https://www.simli.com) -
Added NVIDIA Riva's
FastPitchTTSService
andParakeetSTTService
.
(see https://www.nvidia.com/en-us/ai-data-science/products/riva/) -
Added
IdentityFilter
. This is the simplest frame filter that lets through all incoming frames. -
New
STTMuteStrategy
calledFUNCTION_CALL
which mutes the STT service during LLM function calls. -
DeepgramSTTService
now exposes two event handlerson_speech_started
andon_utterance_end
that could be used to implement interruptions. See new exampleexamples/foundational/07c-interruptible-deepgram-vad.py
. -
Added
GroqLLMService
,GrokLLMService
, andNimLLMService
for Groq, Grok, and NVIDIA NIM API integration, with an OpenAI-compatible interface. -
New examples demonstrating function calling with Groq, Grok, Azure OpenAI, Fireworks, and NVIDIA NIM:
14f-function-calling-groq.py
,14g-function-calling-grok.py
,14h-function-calling-azure.py
,14i-function-calling-fireworks.py
, and14j-function-calling-nvidia.py
. -
In order to obtain the audio stored by the
AudioBufferProcessor
you can now also register anon_audio_data
event handler. Theon_audio_data
handler will be called every timebuffer_size
(a new constructor argument) is reached. Ifbuffer_size
is 0 (default) you need to manually get the audio as before usingAudioBufferProcessor.merge_audio_buffers()
.
@audiobuffer.event_handler("on_audio_data")
async def on_audio_data(processor, audio, sample_rate, num_channels):
await save_audio(audio, sample_rate, num_channels)
- Added a new RTVI message called
disconnect-bot
, which when handled pushes anEndFrame
to trigger the pipeline to stop.
Changed
-
STTMuteFilter
now supports multiple simultaneous muting strategies. -
XTTSService
language now defaults toLanguage.EN
. -
SoundfileMixer
doesn't resample input files anymore to avoid startup delays. The sample rate of the provided sound files now need to match the sample rate of the output transport. -
Input frames (audio, image and transport messages) are now system frames. This means they are processed immediately by all processors instead of being queued internally.
-
Expanded the transcriptions.language module to support a superset of languages.
-
Updated STT and TTS services with language options that match the supported languages for each service.
-
Updated the
AzureLLMService
to use theOpenAILLMService
. Updated theapi_version
to2024-09-01-preview
. -
Updated the
FireworksLLMService
to use theOpenAILLMService
. Updated the default model toaccounts/fireworks/models/firefunction-v2
. -
Updated the
simple-chatbot
example to include a Javascript and React client example, using RTVI JS and React.
Removed
- Removed
AppFrame
. This was used as a special user custom frame, but there's actually no use case for that.
Fixed
-
Fixed a
ParallelPipeline
issue that would cause system frames to be queued. -
Fixed
FastAPIWebsocketTransport
so it can work with binary data (e.g. using the protobuf serializer). -
Fixed an issue in
CartesiaTTSService
that could cause previous audio to be received after an interruption. -
Fixed Cartesia, ElevenLabs, LMNT and PlayHT TTS websocket reconnection. Before, if an error occurred no reconnection was happening.
-
Fixed a
BaseOutputTransport
issue that was causing audio to be discarded after anEndFrame
was received. -
Fixed an issue in
WebsocketServerTransport
andFastAPIWebsocketTransport
that would cause a busy loop when using audio mixer. -
Fixed a
DailyTransport
andLiveKitTransport
issue where connections were being closed in the input transport prematurely. This was causing frames queued inside the pipeline being discarded. -
Fixed an issue in
DailyTransport
that would cause some internal callbacks to not be executed. -
Fixed an issue where other frames were being processed while a
CancelFrame
was being pushed down the pipeline. -
AudioBufferProcessor
now handles interruptions properly. -
Fixed a
WebsocketServerTransport
issue that would prevent interruptions withTwilioSerializer
from working. -
DailyTransport.capture_participant_video
now allows capturing user's screen share by simply passingvideo_source="screenVideo"
. -
Fixed Google Gemini message handling to properly convert appended messages to Gemini's required format.
-
Fixed an issue with
FireworksLLMService
where chat completions were failing by removing thestream_options
from the chat completion options.
v0.0.49
Added
-
Added RTVI
on_bot_started
event which is useful in a single turn interaction. -
Added
DailyTransport
eventsdialin-connected
,dialin-stopped
,dialin-error
anddialin-warning
. Needs daily-python >= 0.13.0. -
Added
RimeHttpTTSService
and the07q-interruptible-rime.py
foundational example. -
Added
STTMuteFilter
, a general-purpose processor that combines STT muting and interruption control. When active, it prevents both transcription and interruptions during bot speech. The processor supports multiple strategies:FIRST_SPEECH
(mute only during bot's first speech),ALWAYS
(mute during all bot speech), orCUSTOM
(using provided callback). -
Added
STTMuteFrame
, a control frame that enables/disables speech transcription in STT services.
v0.0.48
Added
-
There's now an input queue in each frame processor. When you call
FrameProcessor.push_frame()
this will internally callFrameProcessor.queue_frame()
on the next processor (upstream or downstream) and the frame will be internally queued (except system frames). Then, the queued frames will get processed. With this input queue it is also possible for FrameProcessors to block processing more frames by callingFrameProcessor.pause_processing_frames()
. The way to resume processing frames is by callingFrameProcessor.resume_processing_frames()
. -
Added audio filter
NoisereduceFilter
. -
Introduce input transport audio filters (
BaseAudioFilter
). Audio filters can be used to remove background noises before audio is sent to VAD. -
Introduce output transport audio mixers (
BaseAudioMixer
). Output transport audio mixers can be used, for example, to add background sounds or any other audio mixing functionality before the output audio is actually written to the transport. -
Added
GatedOpenAILLMContextAggregator
. This aggregator keeps the last received OpenAI LLM context frame and it doesn't let it through until the notifier is notified. -
Added
WakeNotifierFilter
. This processor expects a list of frame types and will execute a given callback predicate when a frame of any of those type is being processed. If the callback returns true the notifier will be notified. -
Added
NullFilter
. A null filter doesn't push any frames upstream or downstream. This is usually used to disable one of the pipelines inParallelPipeline
. -
Added
EventNotifier
. This can be used as a very simple synchronization feature between processors. -
Added
TavusVideoService
. This is an integration for Tavus digital twins. (see https://www.tavus.io/) -
Added
DailyTransport.update_subscriptions()
. This allows you to have fine grained control of what media subscriptions you want for each participant in a room. -
Added audio filter
KrispFilter
.
Changed
-
The following
DailyTransport
functions are nowasync
which means they need to be awaited:start_dialout
,stop_dialout
,start_recording
,stop_recording
,capture_participant_transcription
andcapture_participant_video
. -
Changed default output sample rate to 24000. This changes all TTS service to output to 24000 and also the default output transport sample rate. This improves audio quality at the cost of some extra bandwidth.
-
AzureTTSService
now uses Azure websockets instead of HTTP requests. -
The previous
AzureTTSService
HTTP implementation is nowAzureHttpTTSService
.
Fixed
-
Websocket transports (FastAPI and Websocket) now synchronize with time before sending data. This allows for interruptions to just work out of the box.
-
Improved bot speaking detection for all TTS services by using actual bot audio.
-
Fixed an issue that was generating constant bot started/stopped speaking frames for HTTP TTS services.
-
Fixed an issue that was causing stuttering with AWS TTS service.
-
Fixed an issue with PlayHTTTSService, where the TTFB metrics were reporting very small time values.
-
Fixed an issue where AzureTTSService wasn't initializing the specified language.
Other
-
Add
23-bot-background-sound.py
foundational example. -
Added a new foundational example
22-natural-conversation.py
. This example shows how to achieve a more natural conversation detecting when the user ends statement.
v0.0.47
Added
-
Added
AssemblyAISTTService
and corresponding foundational examples07o-interruptible-assemblyai.py
and13d-assemblyai-transcription.py
. -
Added a foundational example for Gladia transcription:
13c-gladia-transcription.py
Changed
-
Updated
GladiaSTTService
to use the V2 API. -
Changed
DailyTransport
transcription model tonova-2-general
.
Fixed
-
Fixed an issue that would cause an import error when importing
SileroVADAnalyzer
from the old packagepipecat.vad.silero
. -
Fixed
enable_usage_metrics
to control LLM/TTS usage metrics separately fromenable_metrics
.