feat(macos): add OpenAI Whisper tool

This commit is contained in:
Peter Steinberger
2025-12-14 01:56:18 +00:00
parent 694a10f604
commit e8018d8008
2 changed files with 8 additions and 0 deletions

View File

@@ -160,6 +160,13 @@ struct ToolsSettings: View {
description: "Control Philips Hue lights from scripts—scenes, dimming, and automations.", description: "Control Philips Hue lights from scripts—scenes, dimming, and automations.",
method: .brew(formula: "openhue/cli/openhue-cli", binary: "openhue"), method: .brew(formula: "openhue/cli/openhue-cli", binary: "openhue"),
kind: .tool), kind: .tool),
ToolEntry(
id: "openai-whisper",
name: "OpenAI Whisper",
url: URL(string: "https://github.com/openai/whisper")!,
description: "Local speech-to-text for quick dictation and voicemail transcripts.",
method: .brew(formula: "openai-whisper", binary: "whisper"),
kind: .tool),
ToolEntry( ToolEntry(
id: "gog", id: "gog",
name: "gog", name: "gog",

View File

@@ -25,6 +25,7 @@ read_when:
- **sag** — ElevenLabs speech with mac-style say UX; streams to speakers by default. - **sag** — ElevenLabs speech with mac-style say UX; streams to speakers by default.
- **Sonos CLI** — Control Sonos speakers (discover/status/playback/volume/grouping) from scripts. - **Sonos CLI** — Control Sonos speakers (discover/status/playback/volume/grouping) from scripts.
- **OpenHue CLI** — Philips Hue lighting control for scenes and automations. - **OpenHue CLI** — Philips Hue lighting control for scenes and automations.
- **OpenAI Whisper** — Local speech-to-text for quick dictation and voicemail transcripts.
- **Gemini CLI** — Google Gemini models from the terminal for fast Q&A. - **Gemini CLI** — Google Gemini models from the terminal for fast Q&A.
- **bird** — X/Twitter CLI to tweet, reply, read threads, and search without a browser. - **bird** — X/Twitter CLI to tweet, reply, read threads, and search without a browser.
- **agent-tools** — Utility toolkit for automations and MCP-friendly scripts. - **agent-tools** — Utility toolkit for automations and MCP-friendly scripts.