parakeet-stt

Installation
SKILL.md

Parakeet STT (Speech-to-Text)

Transcribe audio files using the Parakeet STT service. The service is already running on the host — do NOT try to install, clone, or start it yourself.

How to Transcribe

Use curl to send audio files to the Parakeet API. Replace PARAKEET_URL below with the actual service URL (e.g. http://172.31.35.26:5092) before uploading this file to the sandbox.

IMPORTANT: Do NOT try to install Parakeet, clone repos, run Docker, or start uvicorn. The service is already running externally. Just use curl.

Transcribe to plain text

curl -s -X POST PARAKEET_URL/v1/audio/transcriptions \
  -F "file=@/path/to/audio.wav" \
  -F "response_format=text"

Transcribe with timestamps (JSON)

Installs
1
GitHub Stars
39
First Seen
Jul 22, 2026
parakeet-stt — brevdev/nemoclaw-demos