You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- nodes:
- - id: dora-microphone
- build: pip install -e ../../node-hub/dora-microphone
- path: dora-microphone
- inputs:
- tick: dora/timer/millis/2000
- outputs:
- - audio
-
- - id: dora-vad
- build: pip install -e ../../node-hub/dora-vad
- path: dora-vad
- inputs:
- audio: dora-microphone/audio
- outputs:
- - audio
- - timestamp_start
-
- - id: dora-distil-whisper
- build: pip install -e ../../node-hub/dora-distil-whisper
- path: dora-distil-whisper
- inputs:
- input: dora-vad/audio
- outputs:
- - text
- env:
- TARGET_LANGUAGE: english
-
- - id: dora-qwen
- build: pip install -e ../../node-hub/dora-qwen
- path: dora-qwen
- inputs:
- text: dora-distil-whisper/text
- outputs:
- - text
-
- - id: plot
- build: pip install -e ../../node-hub/dora-rerun
- path: dora-rerun
- inputs:
- text_qwen: dora-qwen/text
- text_whisper: dora-distil-whisper/text
-
- - id: dora-kokoro-tts
- build: pip install -e ../../node-hub/dora-kokoro-tts
- path: dora-kokoro-tts
- inputs:
- text: dora-qwen/text
- outputs:
- - audio
- env:
- ACTIVATION_WORDS: you
-
- - id: dora-pyaudio
- build: pip install -e ../../node-hub/dora-pyaudio
- path: dora-pyaudio
- inputs:
- audio: dora-kokoro-tts/audio
- timestamp_start: dora-vad/timestamp_start
|