You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,12 @@ All notable changes to this project will be documented in this file. This change
14
14
-**Elevenlabs TTS**: Added pipeline interruption support. The processor will drop partial generated audio and go into interrupted mode when a `::frame/control-inerrupt-start` is received. All new speak-frames received while in the interrupted state are dropped and the processor resumes on receiving a `::frame/control-interrupt-stop`
15
15
-**LLM Processors (Openai and Google)**: Added pipeline interruption support. The processor will cancel in-flight request for inference when receiving a `::frame/control-interrupt-start`.
16
16
-**Transport Out (both realtime and speakers out)**: Added pipeline interruption support. The process will drain the playback queue when a `::frame/control-interrupt-start` will start and go into interrupted state in which new `::frame/audio-out-raw` frames will be dropped until a `::frame/control-interrupt-stop` will be received
17
+
-**Transport In (twilio, async and microphone)**: Support for predefined vad processors. Currently the only supported one is `vad.analyser/silero` but hopefully more will come in the future.Example
:args {:vad/analyser:vad.analyser/silero}}} ;; the silero VAD instantiation and cleanup is handled by simulflow
21
+
```
22
+
-**Transport In (twilio, async and microphone**: Moved params parsing to use malli schemas, see the schemas defined [here](./src/simulflow/transport/in.clj).
17
23
18
24
### Changed
19
25
- Moved most of the llm logic from [openai processor](./src/simulflow/processors/openai.clj) to an utils folder to be used by multiple processors like [gemini](./src/simulflow/processors/google.clj)
0 commit comments