Skip to main content

Python interface to macOS AI capabilities

Project description

macbook-ai

PyPI Python License: MIT

Python interface to macOS AI capabilities — speech recognition, text-to-speech, and Apple Foundation Models.

All processing is on-device. No API keys, no network calls.

Requirements

  • macOS 10.15 or later
  • Python 3.10 or later

Installation

# speech-to-text only
pip install "macbook-ai[stt]"

# all extras
pip install "macbook-ai[all]"

With uv:

uv add "macbook-ai[stt]"

Speech-to-Text

Powered by the macOS SFSpeechRecognizer framework.

1. Grant permission

The first time you use recognition, macOS will prompt for access. You can trigger it explicitly:

from macbook_ai.stt import SpeechRecognizer

status = SpeechRecognizer.request_authorization()
# 'authorized' | 'denied' | 'restricted' | 'not_determined'

If running from Terminal, you may need to enable it manually: System Settings > Privacy & Security > Speech Recognition > Terminal

2. Transcribe a file

from macbook_ai.stt import SpeechRecognizer

recognizer = SpeechRecognizer()           # defaults to en-US
text = recognizer.recognize_file("recording.m4a")
print(text)

Async

import asyncio
from macbook_ai.stt import SpeechRecognizer

async def main():
    recognizer = SpeechRecognizer()
    text = await recognizer.recognize_file_async("recording.m4a")
    print(text)

asyncio.run(main())

Locales

recognizer = SpeechRecognizer(locale="fr-FR")
recognizer = SpeechRecognizer(locale="es-ES")
recognizer = SpeechRecognizer(locale="ja-JP")

Supported audio formats

Any format supported by AVFoundation: WAV, M4A, MP3, AIFF, CAF, FLAC, and more.

Error handling

from macbook_ai.stt import SpeechRecognizer
from macbook_ai._exceptions import AuthorizationError, RecognitionError

recognizer = SpeechRecognizer()

try:
    text = recognizer.recognize_file("recording.m4a")
except AuthorizationError:
    print("Grant Speech Recognition access in System Settings first.")
except RecognitionError as e:
    print(f"Recognition failed: {e}")
except TimeoutError:
    print("Recognition timed out — try a shorter clip or increase timeout.")

Roadmap

Module Capability Status
macbook-ai.stt Speech-to-text via SFSpeechRecognizer Available
macbook-ai.tts Text-to-speech via AVSpeechSynthesizer Coming soon
macbook-ai.foundation On-device LLM via Apple Foundation Models (macOS 26+) Coming soon

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

macbook_ai-0.1.3.tar.gz (4.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

macbook_ai-0.1.3-py3-none-any.whl (5.9 kB view details)

Uploaded Python 3

File details

Details for the file macbook_ai-0.1.3.tar.gz.

File metadata

  • Download URL: macbook_ai-0.1.3.tar.gz
  • Upload date:
  • Size: 4.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for macbook_ai-0.1.3.tar.gz
Algorithm Hash digest
SHA256 9c96919ce7ad4423f1e47b7af880f2aee9ebff935920202acb0eb6bb9ee37bb8
MD5 297f5fc8f0ef9354365bcf4e59b5a291
BLAKE2b-256 328bdae8b30572d4464165f7c16fc36f6810996d9aab04497290c1a72acbc778

See more details on using hashes here.

File details

Details for the file macbook_ai-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: macbook_ai-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 5.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for macbook_ai-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 ed8b7595e5929b8bcae5e29c668619264eda1475da7b76601f94110da4862f7d
MD5 922a04883868a8fd9d81f701ccbc6720
BLAKE2b-256 ce0bba9846d2dd4be63a11b00c524b1dba09ff97dc0d8f45ddbbf183c8b88288

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page