From 56ffbfe37d71e4775b0ffaa8800669c2892be8a7 Mon Sep 17 00:00:00 2001 From: Louis Beaumont Date: Thu, 9 Jan 2025 17:31:56 -0800 Subject: [PATCH] fix doc --- content/docs/pages/docs/getting-started.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/docs/pages/docs/getting-started.mdx b/content/docs/pages/docs/getting-started.mdx index 1e158f7d0..4c3e660ad 100644 --- a/content/docs/pages/docs/getting-started.mdx +++ b/content/docs/pages/docs/getting-started.mdx @@ -39,12 +39,12 @@ then stream the OCR data (requires `jq`): ```bash copy - curl -N "http://localhost:3030/sse/audio" | while read -r line; do echo $line | sed 's/^data: //' | jq; done + curl -N "http://localhost:3030/sse/vision" | while read -r line; do echo $line | sed 's/^data: //' | jq; done ``` ```powershell copy - curl -N "http://localhost:3030/sse/audio" | while read -r line; do echo $line | sed 's/^data: //' | jq; done + curl -N "http://localhost:3030/sse/vision" | while read -r line; do echo $line | sed 's/^data: //' | jq; done ```