63 KiB
Changelog
All notable changes to Pipecat will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
[Unreleased]
Added
-
It is now possible to specify the asyncio event loop that a
PipelineTaskand 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 simultaneousPipelineTasks 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 aStartFramebut not before (because they don't have a task manager yet). -
Added
TelnyxFrameSerializerto 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. -
TwilioSerializernow supports transport message frames. With this we can create Twilio emulators. -
Added a new transport:
WebsocketClientTransport. -
Added a
metadatafield toFramewhich makes it possible to pass custom data to all frames. -
Added
test/utils.pyinside of pipecat package.
Changed
-
Added
organizationandprojectlevel authentication toOpenAILLMService. -
Improved the language checking logic in
ElevenLabsTTSServiceandElevenLabsHttpTTSServiceto properly handle language codes based on model compatibility, with appropriate warnings when language codes cannot be applied. -
Updated
GoogleLLMContextto support pushingLLMMessagesUpdateFrames that contain a combination of function calls, function call responses, system messages, or just messages. -
InputDTMFFrameis now based onDTMFFrame. There's also a newOutputDTMFFrameframe.
Fixed
-
Fixed an issue where
ElevenLabsTTSServicemessages would return a 1009 websocket error by increasing the max message size limit to 16MB. -
Fixed a
DailyTransportissue that would cause events to be triggered before join finished. -
Fixed a
PipelineTaskissue that was preventing processors to be cleaned up after cancelling the task. -
Fixed an issue where queuing a
CancelFrameto a pipeline task would not cause the task to finish. However, usingPipelineTask.cancel()is still the recommended way to cancel a task.
Other
- Updated examples to use
task.cancel()to immediately exit the example when a participant leaves or disconnects, instead of pushing anEndFrame. Pushing anEndFramecauses 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 anEndFramecould still be desirable to make sure all the pipeline is flushed.
[0.0.54] - 2025-01-27
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
PipelineTaskheartbeat frames withheartbeats_period_secs. -
Added
DailyMeetingTokenPropertiesandDailyMeetingTokenParamsPydantic models for meeting token creation inget_tokenmethod ofDailyRESTHelper. -
Added
enable_recordingandgeoparameters toDailyRoomProperties. -
Added
RecordingsBucketConfigtoDailyRoomPropertiesto upload recordings to a custom AWS bucket.
Changed
-
Enhanced
UserIdleProcessorwith retry functionality and control over idle monitoring via new callback signature(processor, retry_count) -> bool. Updated the17-detect-user-idle.pyto 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
TranscriptProcessorto 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.pyto use the updatedTranscriptProcessor.
Fixed
-
Fixed an
GeminiMultimodalLiveLLMServiceissue that was preventing the user to push initial LLM assistant messages (usingLLMMessagesAppendFrame). -
Added missing
FrameProcessor.cleanup()calls toPipeline,ParallelPipelineandUserIdleProcessor. -
Fixed a type error when using
voice_settingsinElevenLabsHttpTTSService. -
Fixed an issue where
OpenAIRealtimeBetaLLMServicefunction calling resulted in an error. -
Fixed an issue in
AudioBufferProcessorwhere the last audio buffer was not being processed, in cases where the_user_audio_bufferwas smaller than the buffer size.
Performance
- Replaced audio resampling library
resampywithsoxr. Resampling a 2:21s audio file from 24KHz to 16KHz took 1.41s withresampyand 0.031s withsoxrwith similar audio quality.
Other
- Added initial unit test infrastructure.
[0.0.53] - 2025-01-18
Added
-
Added
ElevenLabsHttpTTSServicewhich 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.pyshows 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.pyshows how to enable heartbeats and forces warnings to be displayed. -
Added
LLMTextFrameandTTSTextFramewhich should be pushed by LLM and TTS services respectively instead ofTextFrames. -
Added
OpenRouterfor OpenRouter integration with an OpenAI-compatible interface. Added foundational example14m-function-calling-openrouter.py. -
Added a new
WebsocketServicebased class for TTS services, containing base functions and retry logic. -
Added
DeepSeekLLMServicefor DeepSeek integration with an OpenAI-compatible interface. Added foundational example14l-function-calling-deepseek.py. -
Added
FunctionCallResultPropertiesdataclass 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.pyfor 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_participantsandstart_video_offparams toDailyRoomProperties. -
Added
session_timeouttoFastAPIWebsocketTransportandWebsocketServerTransportfor configuring session timeouts (in seconds). Triggerson_session_timeoutfor 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.pywhich is using Gemini as TEXT modality and using another TTS provider for TTS process.
Changed
-
Modified
UserIdleProcessorto start monitoring only after first conversation activity (UserStartedSpeakingFrameorBotStartedSpeakingFrame) instead of immediately. -
Modified
OpenAIAssistantContextAggregatorto support controlled completions and to emit context update callbacks viaFunctionCallResultProperties. -
Added
aws_session_tokento thePollyTTSService. -
Changed the default model for
PlayHTHttpTTSServicetoPlay3.0-mini-http. -
api_key,aws_access_key_idandregionare no longer required parameters for the PollyTTSService (AWSTTSService) -
Added
session_timeoutexample inexamples/websocket-server/bot.pyto handle session timeout event. -
Changed
InputParamsinsrc/pipecat/services/gemini_multimodal_live/gemini.pyto support different modalities. -
Changed
DeepgramSTTServiceto sendfinalizeevent whenever VAD detectsUserStoppedSpeakingFrame. This helps in faster transcriptions and clearing theDeepgramaudio buffer.
Fixed
-
Fixed an issue where
DeepgramSTTServicewas not generating metrics using pipeline's VAD. -
Fixed
UserIdleProcessornot properly propagatingEndFrames 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
PipelineTaskissue 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
OpenAIRealtimeBetaLLMServiceaudio chunks were hitting an error when truncating audio content. -
Fixed an issue where setting the voice and model for
RimeHttpTTSServicewasn't working. -
Fixed an issue where
IdleFrameProcessorandUserIdleProcessorwere getting initialized before the start of the pipeline.
[0.0.52] - 2024-12-24
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_modeinput parameter toElevenLabsTTSService.auto_modeis set toTrueby default. Enabling this setting disables the chunk schedule and all buffers, which reduces latency. -
Added
KoalaFilterwhich implement on device noise reduction using Koala Noise Suppression. (see https://picovoice.ai/platform/koala/) -
Added
CerebrasLLMServicefor 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
audiooppackage 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
TranscriptProcessorfactory provides access to user and assistant transcript processors. UserTranscriptProcessorprocesses user speech with timestamps from transcription.AssistantTranscriptProcessorprocesses 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
-
PlayHTTTSServiceuses the new v4 websocket API, which also fixes an issue where text inputted to the TTS didn't return audio. -
The default model for
ElevenLabsTTSServiceis noweleven_flash_v2_5. -
OpenAIRealtimeBetaLLMServicenow takes amodelparameter in the constructor. -
Updated the default model for the
OpenAIRealtimeBetaLLMService. -
Room expiration (
exp) inDailyRoomPropertiesis now optional (None) by default instead of automatically setting a 5-minute expiration time. You must explicitly set expiration time if desired.
Deprecated
AWSTTSServiceis now deprecated, usePollyTTSServiceinstead.
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
ParallelPipelineto handleEndFrameincorrectly causing the main pipeline to not terminate or terminate too early. -
Fixed an audio stuttering issue in
FastPitchTTSService. -
Fixed a
BaseOutputTransportissue that was causing non-audio frames being processed before the previous audio frames were played. This will allow, for example, sending a frameAafter aTTSSpeakFrameand the frameAwill only be pushed downstream after the audio generated fromTTSSpeakFramehas been spoken. -
Fixed a
DeepgramSTTServiceissue that was causing language to be passed as an object instead of a string resulting in the connection to fail.
[0.0.51] - 2024-12-16
Fixed
- Fixed an issue in websocket-based TTS services that was causing infinite reconnections (Cartesia, ElevenLabs, PlayHT and LMNT).
[0.0.50] - 2024-12-11
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
AudioTranscriberutility class for handling audio transcription with Gemini models. -
Added new context classes for Gemini:
GeminiMultimodalLiveContextGeminiMultimodalLiveUserContextAggregatorGeminiMultimodalLiveAssistantContextAggregatorGeminiMultimodalLiveContextAggregatorPair
-
Added new foundational examples for
GeminiMultimodalLiveLLMService:26-gemini-multimodal-live.py26a-gemini-multimodal-live-transcription.py26b-gemini-multimodal-live-video.py26c-gemini-multimodal-live-video.py
-
Added
SimliVideoService. This is an integration for Simli AI avatars. (see https://www.simli.com) -
Added NVIDIA Riva's
FastPitchTTSServiceandParakeetSTTService. (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
STTMuteStrategycalledFUNCTION_CALLwhich mutes the STT service during LLM function calls. -
DeepgramSTTServicenow exposes two event handlerson_speech_startedandon_utterance_endthat could be used to implement interruptions. See new exampleexamples/foundational/07c-interruptible-deepgram-vad.py. -
Added
GroqLLMService,GrokLLMService, andNimLLMServicefor 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
AudioBufferProcessoryou can now also register anon_audio_dataevent handler. Theon_audio_datahandler will be called every timebuffer_size(a new constructor argument) is reached. Ifbuffer_sizeis 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 anEndFrameto trigger the pipeline to stop.
Changed
-
STTMuteFilternow supports multiple simultaneous muting strategies. -
XTTSServicelanguage now defaults toLanguage.EN. -
SoundfileMixerdoesn'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
AzureLLMServiceto use theOpenAILLMService. Updated theapi_versionto2024-09-01-preview. -
Updated the
FireworksLLMServiceto use theOpenAILLMService. Updated the default model toaccounts/fireworks/models/firefunction-v2. -
Updated the
simple-chatbotexample 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
ParallelPipelineissue that would cause system frames to be queued. -
Fixed
FastAPIWebsocketTransportso it can work with binary data (e.g. using the protobuf serializer). -
Fixed an issue in
CartesiaTTSServicethat 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
BaseOutputTransportissue that was causing audio to be discarded after anEndFramewas received. -
Fixed an issue in
WebsocketServerTransportandFastAPIWebsocketTransportthat would cause a busy loop when using audio mixer. -
Fixed a
DailyTransportandLiveKitTransportissue where connections were being closed in the input transport prematurely. This was causing frames queued inside the pipeline being discarded. -
Fixed an issue in
DailyTransportthat would cause some internal callbacks to not be executed. -
Fixed an issue where other frames were being processed while a
CancelFramewas being pushed down the pipeline. -
AudioBufferProcessornow handles interruptions properly. -
Fixed a
WebsocketServerTransportissue that would prevent interruptions withTwilioSerializerfrom working. -
DailyTransport.capture_participant_videonow 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
FireworksLLMServicewhere chat completions were failing by removing thestream_optionsfrom the chat completion options.
[0.0.49] - 2024-11-17
Added
-
Added RTVI
on_bot_startedevent which is useful in a single turn interaction. -
Added
DailyTransporteventsdialin-connected,dialin-stopped,dialin-erroranddialin-warning. Needs daily-python >= 0.13.0. -
Added
RimeHttpTTSServiceand the07q-interruptible-rime.pyfoundational 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.
[0.0.48] - 2024-11-10 "Antonio release"
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
DailyTransportfunctions are nowasyncwhich means they need to be awaited:start_dialout,stop_dialout,start_recording,stop_recording,capture_participant_transcriptionandcapture_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.
-
AzureTTSServicenow uses Azure websockets instead of HTTP requests. -
The previous
AzureTTSServiceHTTP 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.pyfoundational 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.
[0.0.47] - 2024-10-22
Added
-
Added
AssemblyAISTTServiceand corresponding foundational examples07o-interruptible-assemblyai.pyand13d-assemblyai-transcription.py. -
Added a foundational example for Gladia transcription:
13c-gladia-transcription.py
Changed
-
Updated
GladiaSTTServiceto use the V2 API. -
Changed
DailyTransporttranscription model tonova-2-general.
Fixed
-
Fixed an issue that would cause an import error when importing
SileroVADAnalyzerfrom the old packagepipecat.vad.silero. -
Fixed
enable_usage_metricsto control LLM/TTS usage metrics separately fromenable_metrics.
[0.0.46] - 2024-10-19
Added
-
Added
audio_passthroughparameter toSTTService. If enabled it allows audio frames to be pushed downstream in case other processors need them. -
Added input parameter options for
PlayHTTTSServiceandPlayHTHttpTTSService.
Changed
-
Changed
DeepgramSTTServicemodel tonova-2-general. -
Moved
SileroVADaudio processor toprocessors.audio.vad. -
Module
utils.audiois nowaudio.utils. A newresample_audiofunction has been added. -
PlayHTTTSServicenow uses PlayHT websockets instead of HTTP requests. -
The previous
PlayHTTTSServiceHTTP implementation is nowPlayHTHttpTTSService. -
PlayHTTTSServiceandPlayHTHttpTTSServicenow use avoice_engineofPlayHT3.0-mini, which allows for multi-lingual support. -
Renamed
OpenAILLMServiceRealtimeBetatoOpenAIRealtimeBetaLLMServiceto match other services.
Deprecated
-
LLMUserResponseAggregatorandLLMAssistantResponseAggregatorare mostly deprecated, useOpenAILLMContextinstead. -
The
vadpackage is now deprecated andaudio.vadshould be used instead. Theavdpackage will get removed in a future release.
Fixed
-
Fixed an issue that would cause an error if no VAD analyzer was passed to
LiveKitTransportparams. -
Fixed
SileroVADprocessor to support interruptions properly.
Other
- Added
examples/foundational/07-interruptible-vad.py. This is the same as07-interruptible.pybut using theSileroVADprocessor instead of passing theVADAnalyzerin the transport.
[0.0.45] - 2024-10-16
Changed
- Metrics messages have moved out from the transport's base output into RTVI.
[0.0.44] - 2024-10-15
Added
-
Added support for OpenAI Realtime API with the new
OpenAILLMServiceRealtimeBetaprocessor. (see https://platform.openai.com/docs/guides/realtime/overview) -
Added
RTVIBotTranscriptionProcessorwhich will send the RTVIbot-transcriptionprotocol message. These are TTS text aggregated (into sentences) messages. -
Added new input params to the
MarkdownTextFilterutility. You can setfilter_codeto filter code from text andfilter_tablesto filter tables from text. -
Added
CanonicalMetricsService. This processor uses the newAudioBufferProcessorto capture conversation audio and later send it to Canonical AI. (see https://canonical.chat/) -
Added
AudioBufferProcessor. This processor can be used to buffer mixed user and bot audio. This can later be saved into an audio file or processed by some audio analyzer. -
Added
on_first_participant_joinedevent toLiveKitTransport.
Changed
-
LLM text responses are now logged properly as unicode characters.
-
UserStartedSpeakingFrame,UserStoppedSpeakingFrame,BotStartedSpeakingFrame,BotStoppedSpeakingFrame,BotSpeakingFrameandUserImageRequestFrameare now based fromSystemFrame
Fixed
-
Merge
RTVIBotLLMProcessor/RTVIBotLLMTextProcessorandRTVIBotTTSProcessor/RTVIBotTTSTextProcessorto avoid out of order issues. -
Fixed an issue in RTVI protocol that could cause a
bot-llm-stoppedorbot-tts-stoppedmessage to be sent before abot-llm-textorbot-tts-textmessage. -
Fixed
DeepgramSTTServiceconstructor settings not being merged with default ones. -
Fixed an issue in Daily transport that would cause tasks to be hanging if urgent transport messages were being sent from a transport event handler.
-
Fixed an issue in
BaseOutputTransportthat would causeEndFrameto be pushed downed too early and callFrameProcessor.cleanup()before letting the transport stop properly.
[0.0.43] - 2024-10-10
Added
-
Added a new util called
MarkdownTextFilterwhich is a subclass of a new base class calledBaseTextFilter. This is a configurable utility which is intended to filter text received by TTS services. -
Added new
RTVIUserLLMTextProcessor. This processor will send an RTVIuser-llm-textmessage with the user content's that was sent to the LLM.
Changed
-
TransportMessageFramedoesn't have anurgentfield anymore, instead there's now aTransportMessageUrgentFramewhich is aSystemFrameand therefore skip all internal queuing. -
For TTS services, convert inputted languages to match each service's language format
Fixed
- Fixed an issue where changing a language with the Deepgram STT service wouldn't apply the change. This was fixed by disconnecting and reconnecting when the language changes.
[0.0.42] - 2024-10-02
Added
-
SentryMetricshas been added to report frame processor metrics to Sentry. This is now possible becauseFrameProcessorMetricscan now be passed toFrameProcessor. -
Added Google TTS service and corresponding foundational example
07n-interruptible-google.py -
Added AWS Polly TTS support and
07m-interruptible-aws.pyas an example. -
Added InputParams to Azure TTS service.
-
Added
LivekitTransport(audio-only for now). -
RTVI 0.2.0 is now supported.
-
All
FrameProcessorscan now register event handlers.
tts = SomeTTSService(...)
@tts.event_handler("on_connected"):
async def on_connected(processor):
...
-
Added
AsyncGeneratorProcessor. This processor can be used together with aFrameSerializeras an async generator. It provides agenerator()function that returns anAsyncGeneratorand that yields serialized frames. -
Added
EndTaskFrameandCancelTaskFrame. These are new frames that are meant to be pushed upstream to tell the pipeline task to stop nicely or immediately respectively. -
Added configurable LLM parameters (e.g., temperature, top_p, max_tokens, seed) for OpenAI, Anthropic, and Together AI services along with corresponding setter functions.
-
Added
sample_rateas a constructor parameter for TTS services. -
Pipecat has a pipeline-based architecture. The pipeline consists of frame processors linked to each other. The elements traveling across the pipeline are called frames.
To have a deterministic behavior the frames traveling through the pipeline should always be ordered, except system frames which are out-of-band frames. To achieve that, each frame processor should only output frames from a single task.
In this version all the frame processors have their own task to push frames. That is, when
push_frame()is called the given frame will be put into an internal queue (with the exception of system frames) and a frame processor task will push it out. -
Added pipeline clocks. A pipeline clock is used by the output transport to know when a frame needs to be presented. For that, all frames now have an optional
ptsfield (prensentation timestamp). There's currently just one clock implementationSystemClockand theptsfield is currently only used forTextFrames (audio and image frames will be next). -
A clock can now be specified to
PipelineTask(defaults toSystemClock). This clock will be passed to each frame processor via theStartFrame. -
Added
CartesiaHttpTTSService. -
DailyTransportnow supports setting the audio bitrate to improve audio quality through theDailyParams.audio_out_bitrateparameter. The new default is 96kbps. -
DailyTransportnow uses the number of audio output channels (1 or 2) to set mono or stereo audio when needed. -
Interruptions support has been added to
TwilioFrameSerializerwhen usingFastAPIWebsocketTransport. -
Added new
LmntTTSServicetext-to-speech service. (see https://www.lmnt.com/) -
Added
TTSModelUpdateFrame,TTSLanguageUpdateFrame,STTModelUpdateFrame, andSTTLanguageUpdateFrameframes to allow you to switch models, language and voices in TTS and STT services. -
Added new
transcriptions.Languageenum.
Changed
-
Context frames are now pushed downstream from assistant context aggregators.
-
Removed Silero VAD torch dependency.
-
Updated individual update settings frame classes into a single
ServiceUpdateSettingsFrameclass. -
We now distinguish between input and output audio and image frames. We introduce
InputAudioRawFrame,OutputAudioRawFrame,InputImageRawFrameandOutputImageRawFrame(and other subclasses of those). The input frames usually come from an input transport and are meant to be processed inside the pipeline to generate new frames. However, the input frames will not be sent through an output transport. The output frames can also be processed by any frame processor in the pipeline and they are allowed to be sent by the output transport. -
ParallelTaskhas been renamed toSyncParallelPipeline. ASyncParallelPipelineis a frame processor that contains a list of different pipelines to be executed concurrently. The difference between aSyncParallelPipelineand aParallelPipelineis that, given an input frame, theSyncParallelPipelinewill wait for all the internal pipelines to complete. This is achieved by making sure the last processor in each of the pipelines is synchronous (e.g. an HTTP-based service that waits for the response). -
StartFrameis back a system frame to make sure it's processed immediately by all processors.EndFramestays a control frame since it needs to be ordered allowing the frames in the pipeline to be processed. -
Updated
MoondreamServicerevision to2024-08-26. -
CartesiaTTSServiceandElevenLabsTTSServicenow add presentation timestamps to their text output. This allows the output transport to push the text frames downstream at almost the same time the words are spoken. We say "almost" because currently the audio frames don't have presentation timestamp but they should be played at roughly the same time. -
DailyTransport.on_joinedevent now returns the full session data instead of just the participant. -
CartesiaTTSServiceis now a subclass ofTTSService. -
DeepgramSTTServiceis now a subclass ofSTTService. -
WhisperSTTServiceis now a subclass ofSegmentedSTTService. ASegmentedSTTServiceis aSTTServicewhere the provided audio is given in a big chunk (i.e. from when the user starts speaking until the user stops speaking) instead of a continous stream.
Fixed
-
Fixed OpenAI multiple function calls.
-
Fixed a Cartesia TTS issue that would cause audio to be truncated in some cases.
-
Fixed a
BaseOutputTransportissue that would stop audio and video rendering tasks (after receiving andEndFrame) before the internal queue was emptied, causing the pipeline to finish prematurely. -
StartFrameshould be the first frame every processor receives to avoid situations where things are not initialized (because initialization happens onStartFrame) and other frames come in resulting in undesired behavior.
Performance
obj_id()andobj_count()now useitertools.countavoiding the need ofthreading.Lock.
Other
- Pipecat now uses Ruff as its formatter (https://github.com/astral-sh/ruff).
[0.0.41] - 2024-08-22
Added
- Added
LivekitFrameSerializeraudio frame serializer.
Fixed
-
Fix
FastAPIWebsocketOutputTransportvariable name clash with subclass. -
Fix an
AnthropicLLMServiceissue with empty arguments in function calling.
Other
- Fixed
studypalexample errors.
[0.0.40] - 2024-08-20
Added
-
VAD parameters can now be dynamicallt updated using the
VADParamsUpdateFrame. -
ErrorFramehas now afatalfield to indicate the bot should exit if a fatal error is pushed upstream (false by default). A newFatalErrorFramethat sets this flag to true has been added. -
AnthropicLLMServicenow supports function calling and initial support for prompt caching. (see https://www.anthropic.com/news/prompt-caching) -
ElevenLabsTTSServicecan now specify ElevenLabs input parameters such asoutput_format. -
TwilioFrameSerializercan now specify Twilio's and Pipecat's desired sample rates to use. -
Added new
on_participant_updatedevent toDailyTransport. -
Added
DailyRESTHelper.delete_room_by_name()andDailyRESTHelper.delete_room_by_url(). -
Added LLM and TTS usage metrics. Those are enabled when
PipelineParams.enable_usage_metricsis True. -
AudioRawFrames are now pushed downstream from the base output transport. This allows capturing the exact words the bot says by adding an STT service at the end of the pipeline. -
Added new
GStreamerPipelineSource. This processor can generate image or audio frames from a GStreamer pipeline (e.g. reading an MP4 file, and RTP stream or anything supported by GStreamer). -
Added
TransportParams.audio_out_is_live. This flag is False by default and it is useful to indicate we should not synchronize audio with sporadic images. -
Added new
BotStartedSpeakingFrameandBotStoppedSpeakingFramecontrol frames. These frames are pushed upstream and they should wrapBotSpeakingFrame. -
Transports now allow you to register event handlers without decorators.
Changed
-
Support RTVI message protocol 0.1. This includes new messages, support for messages responses, support for actions, configuration, webhooks and a bunch of new cool stuff. (see https://docs.rtvi.ai/)
-
SileroVADdependency is now imported via pip'ssilero-vadpackage. -
ElevenLabsTTSServicenow useseleven_turbo_v2_5model by default. -
BotSpeakingFrameis now a control frame. -
StartFrameis now a control frame similar toEndFrame. -
DeepgramTTSServicenow is more customizable. You can adjust the encoding and sample rate.
Fixed
-
TTSStartFrameandTTSStopFrameare now sent when TTS really starts and stops. This allows for knowing when the bot starts and stops speaking even with asynchronous services (like Cartesia). -
Fixed
AzureSTTServicetranscription frame timestamps. -
Fixed an issue with
DailyRESTHelper.create_room()expirations which would cause this function to stop working after the initial expiration elapsed. -
Improved
EndFrameandCancelFramehandling.EndFrameshould end things gracefully while aCancelFrameshould cancel all running tasks as soon as possible. -
Fixed an issue in
AIServicethat would cause a yieldedNonevalue to be processed. -
RTVI's
bot-readymessage is now sent when the RTVI pipeline is ready and a first participant joins. -
Fixed a
BaseInputTransportissue that was causing incoming system frames to be queued instead of being pushed immediately. -
Fixed a
BaseInputTransportissue that was causing start/stop interruptions incoming frames to not cancel tasks and be processed properly.
Other
-
Added
studypalexample (from to the Cartesia folks!). -
Most examples now use Cartesia.
-
Added examples
foundational/19a-tools-anthropic.py,foundational/19b-tools-video-anthropic.pyandfoundational/19a-tools-togetherai.py. -
Added examples
foundational/18-gstreamer-filesrc.pyandfoundational/18a-gstreamer-videotestsrc.pythat show how to useGStreamerPipelineSource -
Remove
requestslibrary usage. -
Cleanup examples and use
DailyRESTHelper.
[0.0.39] - 2024-07-23
Fixed
- Fixed a regression introduced in 0.0.38 that would cause Daily transcription to stop the Pipeline.
[0.0.38] - 2024-07-23
Added
-
Added
force_reload,skip_validationandtrust_repotoSileroVADandSileroVADAnalyzer. This allows caching and various GitHub repo validations. -
Added
send_initial_empty_metricsflag toPipelineParamsto request for initial empty metrics (zero values). True by default.
Fixed
-
Fixed initial metrics format. It was using the wrong keys name/time instead of processor/value.
-
STT services should be using ISO 8601 time format for transcription frames.
-
Fixed an issue that would cause Daily transport to show a stop transcription error when actually none occurred.
[0.0.37] - 2024-07-22
Added
-
Added
RTVIProcessorwhich implements the RTVI-AI standard. See https://github.com/rtvi-ai -
Added
BotInterruptionFramewhich allows interrupting the bot while talking. -
Added
LLMMessagesAppendFramewhich allows appending messages to the current LLM context. -
Added
LLMMessagesUpdateFramewhich allows changing the LLM context for the one provided in this new frame. -
Added
LLMModelUpdateFramewhich allows updating the LLM model. -
Added
TTSSpeakFramewhich causes the bot say some text. This text will not be part of the LLM context. -
Added
TTSVoiceUpdateFramewhich allows updating the TTS voice.
Removed
- We remove the
LLMResponseStartFrameandLLMResponseEndFrameframes. These were added in the past to properly handle interruptions for theLLMAssistantContextAggregator. But theLLMContextAggregatoris now based onLLMResponseAggregatorwhich handles interruptions properly by just processing theStartInterruptionFrame, so there's no need for these extra frames any more.
Fixed
-
Fixed an issue with
StatelessTextTransformerwhere it was pushing a string instead of aTextFrame. -
TTSServiceend of sentence detection has been improved. It now works with acronyms, numbers, hours and others. -
Fixed an issue in
TTSServicethat would not properly flush the current aggregated sentence if anLLMFullResponseEndFramewas found.
Performance
CartesiaTTSServicenow uses websockets which improves speed. It also leverages the new Cartesia contexts which maintains generated audio prosody when multiple inputs are sent, therefore improving audio quality a lot.
[0.0.36] - 2024-07-02
Added
-
Added
GladiaSTTService. See https://docs.gladia.io/chapters/speech-to-text-api/pages/live-speech-recognition -
Added
XTTSService. This is a local Text-To-Speech service. See https://github.com/coqui-ai/TTS -
Added
UserIdleProcessor. This processor can be used to wait for any interaction with the user. If the user doesn't say anything within a given timeout a provided callback is called. -
Added
IdleFrameProcessor. This processor can be used to wait for frames within a given timeout. If no frame is received within the timeout a provided callback is called. -
Added new frame
BotSpeakingFrame. This frame will be continuously pushed upstream while the bot is talking. -
It is now possible to specify a Silero VAD version when using
SileroVADAnalyzerorSileroVAD. -
Added
AysncFrameProcessorandAsyncAIService. Some services likeDeepgramSTTServiceneed to process things asynchronously. For example, audio is sent to Deepgram but transcriptions are not returned immediately. In these cases we still require all frames (except system frames) to be pushed downstream from a single task. That's whatAsyncFrameProcessoris for. It creates a task and all frames should be pushed from that task. So, whenever a new Deepgram transcription is ready that transcription will also be pushed from this internal task. -
The
MetricsFramenow includes processing metrics if metrics are enabled. The processing metrics indicate the time a processor needs to generate all its output. Note that not all processors generate these kind of metrics.
Changed
-
WhisperSTTServicemodel can now also be a string. -
Added missing * keyword separators in services.
Fixed
-
WebsocketServerTransportdoesn't try to send frames anymore if serializers returnsNone. -
Fixed an issue where exceptions that occurred inside frame processors were being swallowed and not displayed.
-
Fixed an issue in
FastAPIWebsocketTransportwhere it would still try to send data to the websocket after being closed.
Other
-
Added Fly.io deployment example in
examples/deployment/flyio-example. -
Added new
17-detect-user-idle.pyexample that shows how to use the newUserIdleProcessor.
[0.0.35] - 2024-06-28
Changed
-
FastAPIWebsocketParamsnow require a serializer. -
TwilioFrameSerializernow requires astreamSid.
Fixed
- Silero VAD number of frames needs to be 512 for 16000 sample rate or 256 for 8000 sample rate.
[0.0.34] - 2024-06-25
Fixed
-
Fixed an issue with asynchronous STT services (Deepgram and Azure) that could interruptions to ignore transcriptions.
-
Fixed an issue introduced in 0.0.33 that would cause the LLM to generate shorter output.
[0.0.33] - 2024-06-25
Changed
- Upgraded to Cartesia's new Python library 1.0.0.
CartesiaTTSServicenow expects a voice ID instead of a voice name (you can get the voice ID from Cartesia's playground). You can also specify the audiosample_rateandencodinginstead of the previousoutput_format.
Fixed
-
Fixed an issue with asynchronous STT services (Deepgram and Azure) that could cause static audio issues and interruptions to not work properly when dealing with multiple LLMs sentences.
-
Fixed an issue that could mix new LLM responses with previous ones when handling interruptions.
-
Fixed a Daily transport blocking situation that occurred while reading audio frames after a participant left the room. Needs daily-python >= 0.10.1.
[0.0.32] - 2024-06-22
Added
-
Allow specifying a
DeepgramSTTServiceurl which allows using on-prem Deepgram. -
Added new
FastAPIWebsocketTransport. This is a new websocket transport that can be integrated with FastAPI websockets. -
Added new
TwilioFrameSerializer. This is a new serializer that knows how to serialize and deserialize audio frames from Twilio. -
Added Daily transport event:
on_dialout_answered. See https://reference-python.daily.co/api_reference.html#daily.EventHandler -
Added new
AzureSTTService. This allows you to use Azure Speech-To-Text.
Performance
- Convert
BaseOutputTransportandBaseOutputTransportto fully use asyncio and remove the use of threads.
Other
-
Added
twilio-chatbot. This is an example that shows how to integrate Twilio phone numbers with a Pipecat bot. -
Updated
07f-interruptible-azure.pyto useAzureLLMService,AzureSTTServiceandAzureTTSService.
[0.0.31] - 2024-06-13
Performance
- Break long audio frames into 20ms chunks instead of 10ms.
[0.0.30] - 2024-06-13
Added
-
Added
report_only_initial_ttfbtoPipelineParams. This will make it so only the initial TTFB metrics after the user stops talking are reported. -
Added
OpenPipeLLMService. This service will let you run OpenAI through OpenPipe's SDK. -
Allow specifying frame processors' name through a new
nameconstructor argument. -
Added
DeepgramSTTService. This service has an ongoing websocket connection. To handle this, it subclassesAIServiceinstead ofSTTService. The output of this service will be pushed from the same task, except system frames likeStartFrame,CancelFrameorStartInterruptionFrame.
Changed
-
FrameSerializer.deserialize()can now returnNonein case it is not possible to desearialize the given data. -
daily_rest.DailyRoomPropertiesnow allows extra unknown parameters.
Fixed
-
Fixed an issue where
DailyRoomProperties.expalways had the same old timestamp unless set by the user. -
Fixed a couple of issues with
WebsocketServerTransport. It needed to usepush_audio_frame()and also VAD was not working properly. -
Fixed an issue that would cause LLM aggregator to fail with small
VADParams.stop_secsvalues. -
Fixed an issue where
BaseOutputTransportwould send longer audio frames preventing interruptions.
Other
-
Added new
07h-interruptible-openpipe.pyexample. This example shows how to use OpenPipe to run OpenAI LLMs and get the logs stored in OpenPipe. -
Added new
dialin-chatbotexample. This examples shows how to call the bot using a phone number.
[0.0.29] - 2024-06-07
Added
-
Added a new
FunctionFilter. This filter will let you filter frames based on a given function, except system messages which should never be filtered. -
Added
FrameProcessor.can_generate_metrics()method to indicate if a processor can generate metrics. In the future this might get an extra argument to ask for a specific type of metric. -
Added
BasePipeline. All pipeline classes should be based on this class. All subclasses should implement aprocessors_with_metrics()method that returns a list of allFrameProcessors in the pipeline that can generate metrics. -
Added
enable_metricstoPipelineParams. -
Added
MetricsFrame. TheMetricsFramewill report different metrics in the system. Right now, it can report TTFB (Time To First Byte) values for different services, that is the time spent between the arrival of aFrameto the processor/service until the firstDataFrameis pushed downstream. If metrics are enabled an intialMetricsFramewith all the services in the pipeline will be sent. -
Added TTFB metrics and debug logging for TTS services.
Changed
- Moved
ParallelTasktopipecat.pipeline.parallel_task.
Fixed
- Fixed PlayHT TTS service to work properly async.
[0.0.28] - 2024-06-05
Fixed
- Fixed an issue with
SileroVADAnalyzerthat would cause memory to keep growing indefinitely.
[0.0.27] - 2024-06-05
Added
- Added
DailyTransport.participants()andDailyTransport.participant_counts().
[0.0.26] - 2024-06-05
Added
-
Added
OpenAITTSService. -
Allow passing
output_formatandmodel_idtoCartesiaTTSServiceto change audio sample format and the model to use. -
Added
DailyRESTHelperwhich helps you create Daily rooms and tokens in an easy way. -
PipelineTasknow has ahas_finished()method to indicate if the task has completed. If a task is never ranhas_finished()will return False. -
PipelineRunnernow supports SIGTERM. If received, the runner will be canceled.
Fixed
-
Fixed an issue where
BaseInputTransportandBaseOutputTransportwhere stopping push tasks before pushingEndFrameframes could cause the bots to get stuck. -
Fixed an error closing local audio transports.
-
Fixed an issue with Deepgram TTS that was introduced in the previous release.
-
Fixed
AnthropicLLMServiceinterruptions. If an interruption occurred, ausermessage could be appended after the previoususermessage. Anthropic does not allow that because it requires alternateuserandassistantmessages.
Performance
-
The
BaseInputTransportdoes not pull audio frames from sub-classes any more. Instead, sub-classes now push audio frames into a queue in the base class. Also,DailyInputTransportnow pushes audio frames every 20ms instead of 10ms. -
Remove redundant camera input thread from
DailyInputTransport. This should improve performance a little bit when processing participant videos. -
Load Cartesia voice on startup.
[0.0.25] - 2024-05-31
Added
-
Added WebsocketServerTransport. This will create a websocket server and will read messages coming from a client. The messages are serialized/deserialized with protobufs. See
examples/websocket-serverfor a detailed example. -
Added function calling (LLMService.register_function()). This will allow the LLM to call functions you have registered when needed. For example, if you register a function to get the weather in Los Angeles and ask the LLM about the weather in Los Angeles, the LLM will call your function. See https://platform.openai.com/docs/guides/function-calling
-
Added new
LangchainProcessor. -
Added Cartesia TTS support (https://cartesia.ai/)
Fixed
-
Fixed SileroVAD frame processor.
-
Fixed an issue where
camera_out_enabledwould cause the highg CPU usage if no image was provided.
Performance
- Removed unnecessary audio input tasks.
[0.0.24] - 2024-05-29
Added
-
Exposed
on_dialin_readyfor Daily transport SIP endpoint handling. This notifies when the Daily room SIP endpoints are ready. This allows integrating with third-party services like Twilio. -
Exposed Daily transport
on_app_messageevent. -
Added Daily transport
on_call_state_updatedevent. -
Added Daily transport
start_recording(),stop_recordingandstop_dialout.
Changed
-
Added
PipelineParams. This replaces theallow_interruptionsargument inPipelineTaskand will allow future parameters in the future. -
Fixed Deepgram Aura TTS base_url and added ErrorFrame reporting.
-
GoogleLLMService
api_keyargument is now mandatory.
Fixed
-
Daily tranport
dialin-readydoesn't not block anymore and it now handles timeouts. -
Fixed AzureLLMService.
[0.0.23] - 2024-05-23
Fixed
- Fixed an issue handling Daily transport
dialin-readyevent.
[0.0.22] - 2024-05-23
Added
-
Added Daily transport
start_dialout()to be able to make phone or SIP calls. See https://reference-python.daily.co/api_reference.html#daily.CallClient.start_dialout -
Added Daily transport support for dial-in use cases.
-
Added Daily transport events:
on_dialout_connected,on_dialout_stopped,on_dialout_errorandon_dialout_warning. See https://reference-python.daily.co/api_reference.html#daily.EventHandler
[0.0.21] - 2024-05-22
Added
-
Added vision support to Anthropic service.
-
Added
WakeCheckFilterwhich allows you to pass information downstream only if you say a certain phrase/word.
Changed
Filterhas been renamed toFrameFilterand it's now underprocessors/filters.
Fixed
-
Fixed Anthropic service to use new frame types.
-
Fixed an issue in
LLMUserResponseAggregatorandUserResponseAggregatorthat would cause frames after a brief pause to not be pushed to the LLM. -
Clear the audio output buffer if we are interrupted.
-
Re-add exponential smoothing after volume calculation. This makes sure the volume value being used doesn't fluctuate so much.
[0.0.20] - 2024-05-22
Added
- In order to improve interruptions we now compute a loudness level using pyloudnorm. The audio coming WebRTC transports (e.g. Daily) have an Automatic Gain Control (AGC) algorithm applied to the signal, however we don't do that on our local PyAudio signals. This means that currently incoming audio from PyAudio is kind of broken. We will fix it in future releases.
Fixed
-
Fixed an issue where
StartInterruptionFramewould causeLLMUserResponseAggregatorto push the accumulated text causing the LLM respond in the wrong task. TheStartInterruptionFrameshould not trigger any new LLM response because that would be spoken in a different task. -
Fixed an issue where tasks and threads could be paused because the executor didn't have more tasks available. This was causing issues when cancelling and recreating tasks during interruptions.
[0.0.19] - 2024-05-20
Changed
LLMUserResponseAggregatorandLLMAssistantResponseAggregatorinternal messages are now exposed through themessagesproperty.
Fixed
- Fixed an issue where
LLMAssistantResponseAggregatorwas not accumulating the full response but short sentences instead. If there's an interruption we only accumulate what the bot has spoken until now in a long response as well.
[0.0.18] - 2024-05-20
Fixed
- Fixed an issue in
DailyOuputTransportwhere transport messages were not being sent.
[0.0.17] - 2024-05-19
Added
-
Added
google.generativeaimodel support, including vision. This newgoogleservice defaults to usinggemini-1.5-flash-latest. Example inexamples/foundational/12a-describe-video-gemini-flash.py. -
Added vision support to
openaiservice. Example inexamples/foundational/12a-describe-video-gemini-flash.py. -
Added initial interruptions support. The assistant contexts (or aggregators) should now be placed after the output transport. This way, only the completed spoken context is added to the assistant context.
-
Added
VADParamsso you can control voice confidence level and others. -
VADAnalyzernow uses an exponential smoothed volume to improve speech detection. This is useful when voice confidence is high (because there's someone talking near you) but volume is low.
Fixed
-
Fixed an issue where TTSService was not pushing TextFrames downstream.
-
Fixed issues with Ctrl-C program termination.
-
Fixed an issue that was causing
StopTaskFrameto actually not exit thePipelineTask.
[0.0.16] - 2024-05-16
Fixed
-
DailyTransport: don't publish camera and audio tracks if not enabled. -
Fixed an issue in
BaseInputTransportthat was causing frames pushed downstream not pushed in the right order.
[0.0.15] - 2024-05-15
Fixed
- Quick hot fix for receiving
DailyTransportMessage.
[0.0.14] - 2024-05-15
Added
-
Added
DailyTransporteventon_participant_left. -
Added support for receiving
DailyTransportMessage.
Fixed
-
Images are now resized to the size of the output camera. This was causing images not being displayed.
-
Fixed an issue in
DailyTransportthat would not allow the input processor to shutdown if no participant ever joined the room. -
Fixed base transports start and stop. In some situation processors would halt or not shutdown properly.
[0.0.13] - 2024-05-14
Changed
-
MoondreamServiceargumentmodel_idis nowmodel. -
VADAnalyzerarguments have been renamed for more clarity.
Fixed
-
Fixed an issue with
DailyInputTransportandDailyOutputTransportthat could cause some threads to not start properly. -
Fixed
STTService. Addmax_silence_secsandmax_buffer_secsto handle better what's being passed to the STT service. Also add exponential smoothing to the RMS. -
Fixed
WhisperSTTService. Addno_speech_probto avoid garbage output text.
[0.0.12] - 2024-05-14
Added
- Added
DailyTranscriptionSettingsto be able to specify transcription settings much easier (e.g. language).
Other
-
Updated
simple-chatbotwith Spanish. -
Add missing dependencies in some of the examples.
[0.0.11] - 2024-05-13
Added
- Allow stopping pipeline tasks with new
StopTaskFrame.
Changed
- TTS, STT and image generation service now use
AsyncGenerator.
Fixed
DailyTransport: allow registering for participant transcriptions even if input transport is not initialized yet.
Other
- Updated
storytelling-chatbot.
[0.0.10] - 2024-05-13
Added
-
Added Intel GPU support to
MoondreamService. -
Added support for sending transport messages (e.g. to communicate with an app at the other end of the transport).
-
Added
FrameProcessor.push_error()to easily send anErrorFrameupstream.
Fixed
- Fixed Azure services (TTS and image generation).
Other
- Updated
simple-chatbot,moondream-chatbotandtranslation-chatbotexamples.
[0.0.9] - 2024-05-12
Changed
Many things have changed in this version. Many of the main ideas such as frames, processors, services and transports are still there but some things have changed a bit.
-
Frames describe the basic units for processing. For example, text, image or audio frames. Or control frames to indicate a user has started or stopped speaking. -
FrameProcessors process frames (e.g. they convert aTextFrameto anImageRawFrame) and push new frames downstream or upstream to their linked peers. -
FrameProcessors can be linked together. The easiest wait is to use thePipelinewhich is a container for processors. Linking processors allow frames to travel upstream or downstream easily. -
Transports are a way to send or receive frames. There can be local transports (e.g. local audio or native apps), network transports (e.g. websocket) or service transports (e.g. https://daily.co). -
Pipelines are just a processor container for other processors. -
A
PipelineTaskknow how to run a pipeline. -
A
PipelineRunnercan run one or more tasks and it is also used, for example, to capture Ctrl-C from the user.
[0.0.8] - 2024-04-11
Added
-
Added
FireworksLLMService. -
Added
InterimTranscriptionFrameand enable interim results inDailyTransporttranscriptions.
Changed
FalImageGenServicenow uses newfal_clientpackage.
Fixed
-
FalImageGenService: useasyncio.to_threadto not block main loop when generating images. -
Allow
TranscriptionFrameafter an end frame (transcriptions can be delayed and received afterUserStoppedSpeakingFrame).
[0.0.7] - 2024-04-10
Added
- Add
use_cpuargument toMoondreamService.
[0.0.6] - 2024-04-10
Added
-
Added
FalImageGenService.InputParams. -
Added
URLImageFrameandUserImageFrame. -
Added
UserImageRequestFrameand allow requesting an image from a participant. -
Added base
VisionServiceandMoondreamService
Changed
-
Don't pass
image_sizetoImageGenService, images should have their own size. -
ImageFramenow receives a tuple(width,height)to specify the size. -
on_first_other_participant_joinednow gets a participant argument.
Fixed
- Check if camera, speaker and microphone are enabled before writing to them.
Performance
DailyTransportonly subscribe to desired participant video track.
[0.0.5] - 2024-04-06
Changed
-
Use
camera_bitrateandcamera_framerate. -
Increase
camera_framerateto 30 by default.
Fixed
- Fixed
LocalTransport.read_audio_frames.
[0.0.4] - 2024-04-04
Added
- Added project optional dependencies
[silero,openai,...].
Changed
-
Moved thransports to its own directory.
-
Use
OPENAI_API_KEYinstead ofOPENAI_CHATGPT_API_KEY.
Fixed
- Don't write to microphone/speaker if not enabled.
Other
-
Added live translation example.
-
Fix foundational examples.
[0.0.3] - 2024-03-13
Other
- Added
storybotandchatbotexamples.
[0.0.2] - 2024-03-12
Initial public release.