whisper-macos-cli 0.1.2

Transcribe audio files locally on Apple Silicon via whisper.cpp with Metal GPU acceleration, exposing a strict stdin/stdout JSON contract for AI agents and Unix pipelines.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/daniloaguiarbr/whisper-macos-cli/schemas/models-remove/v0.1.2.json",
  "title": "ModelsRemoveStatus",
  "type": "object",
  "required": ["schema_version", "correlation_id", "model", "action"],
  "properties": {
    "schema_version": {"type": "string"},
    "correlation_id": {"type": "string", "format": "uuid"},
    "model": {"type": "string"},
    "action": {
      "type": "string",
      "enum": ["would_remove", "removed"]
    },
    "path": {"type": ["string", "null"]},
    "size_bytes": {"type": ["integer", "null"]}
  }
}