We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c85979 commit 14dcaa2Copy full SHA for 14dcaa2
examples/src/simulflow_examples/local_with_system_router.clj
@@ -196,5 +196,4 @@
196
;; Stop the conversation
197
(do
198
(flow/stop local-ai)
199
- (reset! flow-started? false)
200
- (vad/cleanup vad-analyser)))
+ (reset! flow-started? false)))
src/simulflow/processors/deepgram.clj
@@ -157,7 +157,6 @@ https://developers.deepgram.com/docs/understanding-end-of-speech-detection#using
157
(when @alive?
158
(when-let [msg (a/<!! ws-write-chan)]
159
(when (and (frame/audio-input-raw? msg) @alive?)
160
- (t/log! {:id :deepgram :level :debug :sample 0.01 :msg "Sending audio for transcription" :data (:frame/data msg)})
161
(ws/send! ws-conn (:frame/data msg))
162
(recur)))))
163
0 commit comments