user@rad-whisper:~$ ./describe.sh --project
user@rad-whisper:~$ cat features.txt
user@rad-whisper:~$ curl -s localhost:8000/api/routes | jq
GET /api/health - Check if the service is running
GET /api/status - Get API status and version information
GET /api/models - List available transcription models
POST /api/transcribe - Transcribe uploaded audio file
user@rad-whisper:~$ cat example-usage.sh
# Transcribe audio file using the API curl -X POST http://localhost:8000/api/transcribe \ -F "audio=@samples/sample.wav" \ -F "model=tiny.en"
user@rad-whisper:~$ echo "Interactive testing options:"
Experience RAD-Whisper's speech recognition capabilities with our interactive tools:
user@rad-whisper:~$ systemctl status rad-whisper
● rad-whisper.service - RAD Whisper Speech Recognition API
Active: active (running)
Status: "Ready to process audio transcription requests"
Server: Running on port 8000
user@rad-whisper:~$ exit