File size: 941 Bytes
034b730 fe79d42 034b730 fe79d42 034b730 810a70f 034b730 fe79d42 034b730 810a70f 034b730 810a70f fe79d42 810a70f fe79d42 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
nodes:
### Camera
- id: plot_bot
operator:
python: ../operators/plot.py
inputs:
image: webcam/image
user_message: whisper/text
assistant_message: vlm/assistant_message
bbox: object_detection/bbox
- id: vlm
operator:
python: ../operators/idefics2_op.py
inputs:
image:
source: webcam/image
queue_size: 1
instruction: whisper/text
outputs:
- assistant_message
- id: webcam
operator:
python: ../operators/webcam.py
inputs:
tick: dora/timer/millis/50
outputs:
- image
- id: whisper
operator:
python: ../operators/whisper_op.py
inputs:
audio: dora/timer/millis/1000
outputs:
- text
- id: object_detection
operator:
python: ../operators/object_detection.py
inputs:
image: webcam/image
outputs:
- bbox
|