diff --git a/node-hub/dora-distil-whisper/README.md b/node-hub/dora-distil-whisper/README.md index 05560769..f1707fc9 100644 --- a/node-hub/dora-distil-whisper/README.md +++ b/node-hub/dora-distil-whisper/README.md @@ -1 +1,3 @@ -# Dora Node for transforming speech to text +# Dora Node for transforming speech to text (English only) + +Check example at [examples/speech-to-text](examples/speech-to-text) diff --git a/node-hub/dora-distil-whisper/graphs/dataflow.yml b/node-hub/dora-distil-whisper/graphs/dataflow.yml deleted file mode 100644 index 5c93226f..00000000 --- a/node-hub/dora-distil-whisper/graphs/dataflow.yml +++ /dev/null @@ -1,20 +0,0 @@ -nodes: - - id: dora-microphone - build: pip install -e ../../dora-microphone - path: dora-microphone - outputs: - - audio - - - id: dora-distil-whisper - build: pip install -e ../. - path: dora-distil-whisper - inputs: - audio: dora-microphone/audio - outputs: - - text - - - id: terminal-print - build: cargo build -p terminal-print - path: dynamic - inputs: - text: dora-distil-whisper/text diff --git a/node-hub/dora-echo/README.md b/node-hub/dora-echo/README.md index feeef1f8..7a46a8aa 100644 --- a/node-hub/dora-echo/README.md +++ b/node-hub/dora-echo/README.md @@ -1,3 +1,5 @@ # Dora echo node This node will just echo whatever it receives as is. + +Check example at [examples/echo](examples/echo) diff --git a/node-hub/dora-microphone/README.md b/node-hub/dora-microphone/README.md index 30ccd5ea..465a6243 100644 --- a/node-hub/dora-microphone/README.md +++ b/node-hub/dora-microphone/README.md @@ -1,3 +1,5 @@ # Dora Node for recording data from microphone This node will send data as soon as the microphone volume is higher than a threshold. + +Check example at [examples/speech-to-text](examples/speech-to-text) diff --git a/node-hub/opencv-plot/README.md b/node-hub/opencv-plot/README.md index 0eeb4fa3..41088acf 100644 --- a/node-hub/opencv-plot/README.md +++ b/node-hub/opencv-plot/README.md @@ -84,6 +84,10 @@ encoded_text = pa.array([text]) decoded_text = encoded_text[0].as_py() ``` +## Example + +Check example at [examples/python-dataflow](examples/python-dataflow) + ## License This project is licensed under Apache-2.0. Check out [NOTICE.md](../../NOTICE.md) for more information. diff --git a/node-hub/opencv-video-capture/README.md b/node-hub/opencv-video-capture/README.md index f7a6c230..56c5bb15 100644 --- a/node-hub/opencv-video-capture/README.md +++ b/node-hub/opencv-video-capture/README.md @@ -61,6 +61,10 @@ frame = ( ) ``` +## Examples + +Check example at [examples/python-dataflow](examples/python-dataflow) + ## License This project is licensed under Apache-2.0. Check out [NOTICE.md](../../NOTICE.md) for more information. diff --git a/node-hub/pyarrow-assert/README.md b/node-hub/pyarrow-assert/README.md index d03563de..b1f0172d 100644 --- a/node-hub/pyarrow-assert/README.md +++ b/node-hub/pyarrow-assert/README.md @@ -1,3 +1,5 @@ # Dora Node for asserting arrow data. This node assert that the DATA that is specified within the environment variable or from `--data` argument is the same as the data received. + +Check example at [examples/pyarrow-test](examples/pyarrow-test) diff --git a/node-hub/pyarrow-sender/README.md b/node-hub/pyarrow-sender/README.md index aa1557ae..49292e4d 100644 --- a/node-hub/pyarrow-sender/README.md +++ b/node-hub/pyarrow-sender/README.md @@ -1,3 +1,5 @@ # Dora Node for sending arrow data. This node send DATA that is specified within the environment variable or from `--data` argument. + +Check example at [examples/pyarrow-test](examples/pyarrow-test) diff --git a/node-hub/terminal-input/README.md b/node-hub/terminal-input/README.md index 3c88037e..1f510713 100644 --- a/node-hub/terminal-input/README.md +++ b/node-hub/terminal-input/README.md @@ -1,3 +1,5 @@ # Dora Node for sending terminal input data. This node send the data that is given to him within a terminal window. + +Check example at [examples/echo](examples/echo) diff --git a/node-hub/terminal-print/README.md b/node-hub/terminal-print/README.md new file mode 100644 index 00000000..9aa46d90 --- /dev/null +++ b/node-hub/terminal-print/README.md @@ -0,0 +1,3 @@ +# Print received inputs in the terminal + +Check example at [examples/speech-to-text](examples/speech-to-text) diff --git a/node-hub/ultralytics-yolo/README.md b/node-hub/ultralytics-yolo/README.md index 56703531..7991fd2b 100644 --- a/node-hub/ultralytics-yolo/README.md +++ b/node-hub/ultralytics-yolo/README.md @@ -76,6 +76,10 @@ decoded_bbox = { } ``` +## Example + +Check example at [examples/python-dataflow](examples/python-dataflow) + ## License This project is licensed under Apache-2.0. Check out [NOTICE.md](../../NOTICE.md) for more information.