# Send Parakeet Stt to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "parakeet-stt",
    "name": "Parakeet Stt",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/carlulsoe/parakeet-stt",
    "canonicalUrl": "https://clawhub.ai/carlulsoe/parakeet-stt",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/parakeet-stt",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=parakeet-stt",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "parakeet-stt",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T22:04:31.419Z",
      "expiresAt": "2026-05-13T22:04:31.419Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=parakeet-stt",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=parakeet-stt",
        "contentDisposition": "attachment; filename=\"parakeet-stt-1.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "parakeet-stt"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/parakeet-stt"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/parakeet-stt",
    "downloadUrl": "https://openagent3.xyz/downloads/parakeet-stt",
    "agentUrl": "https://openagent3.xyz/skills/parakeet-stt/agent",
    "manifestUrl": "https://openagent3.xyz/skills/parakeet-stt/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/parakeet-stt/agent.md"
  }
}
```
## Documentation

### Parakeet TDT (Speech-to-Text)

Local transcription using NVIDIA Parakeet TDT 0.6B v3 with ONNX Runtime.
Runs on CPU — no GPU required. ~30x faster than realtime.

### Installation

# Clone the repo
git clone https://github.com/groxaxo/parakeet-tdt-0.6b-v3-fastapi-openai.git
cd parakeet-tdt-0.6b-v3-fastapi-openai

# Run with Docker (recommended)
docker compose up -d parakeet-cpu

# Or run directly with Python
pip install -r requirements.txt
uvicorn app.main:app --host 0.0.0.0 --port 5000

Default port is 5000. Set PARAKEET_URL to override (e.g., http://localhost:5092).

### API Endpoint

OpenAI-compatible API at $PARAKEET_URL (default: http://localhost:5000).

### Quick Start

# Transcribe audio file (plain text)
curl -X POST $PARAKEET_URL/v1/audio/transcriptions \\
  -F "file=@/path/to/audio.mp3" \\
  -F "response_format=text"

# Get timestamps and segments
curl -X POST $PARAKEET_URL/v1/audio/transcriptions \\
  -F "file=@/path/to/audio.mp3" \\
  -F "response_format=verbose_json"

# Generate subtitles (SRT)
curl -X POST $PARAKEET_URL/v1/audio/transcriptions \\
  -F "file=@/path/to/audio.mp3" \\
  -F "response_format=srt"

### Python / OpenAI SDK

import os
from openai import OpenAI

client = OpenAI(
    base_url=os.getenv("PARAKEET_URL", "http://localhost:5000") + "/v1",
    api_key="not-needed"
)

with open("audio.mp3", "rb") as f:
    transcript = client.audio.transcriptions.create(
        model="parakeet-tdt-0.6b-v3",
        file=f,
        response_format="text"
    )
print(transcript)

### Response Formats

FormatOutputtextPlain textjson{"text": "..."}verbose_jsonSegments with timestamps and wordssrtSRT subtitlesvttWebVTT subtitles

### Supported Languages (25)

English, Spanish, French, German, Italian, Portuguese, Polish, Russian,
Ukrainian, Dutch, Swedish, Danish, Finnish, Norwegian, Greek, Czech,
Romanian, Hungarian, Bulgarian, Slovak, Croatian, Lithuanian, Latvian,
Estonian, Slovenian

Language is auto-detected — no configuration needed.

### Web Interface

Open $PARAKEET_URL in a browser for drag-and-drop transcription UI.

### Docker Management

# Check status
docker ps --filter "name=parakeet"

# View logs
docker logs -f <container-name>

# Restart
docker compose restart

# Stop
docker compose down

### Why Parakeet over Whisper?

Speed: ~30x faster than realtime on CPU
Accuracy: Comparable to Whisper large-v3
Privacy: Runs 100% locally, no cloud calls
Compatibility: Drop-in replacement for OpenAI's transcription API
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: carlulsoe
- Version: 1.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-06T22:04:31.419Z
- Expires at: 2026-05-13T22:04:31.419Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/parakeet-stt)
- [Send to Agent page](https://openagent3.xyz/skills/parakeet-stt/agent)
- [JSON manifest](https://openagent3.xyz/skills/parakeet-stt/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/parakeet-stt/agent.md)
- [Download page](https://openagent3.xyz/downloads/parakeet-stt)