Skip to content

Commit

Permalink
fix doc
Browse files Browse the repository at this point in the history
  • Loading branch information
louis030195 committed Jan 10, 2025
1 parent ddb692c commit 56ffbfe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/docs/pages/docs/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ then stream the OCR data (requires `jq`):
</Tab>
<Tab>
```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
```
</Tab>
<Tab>
```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
```
</Tab>
</Tabs>
Expand Down

0 comments on commit 56ffbfe

Please sign in to comment.