# SPDX-License-Identifier: GPL-3.0-only """Pluggable AI providers for OpenScribe. Transcription and summarisation each target a provider chosen by config, so the owner can point OpenScribe at any open-standard endpoint (OpenAI-compatible, local faster-whisper, Ollama) or a commercial API (OpenAI, Anthropic, Gemini via its OpenAI-compatible endpoint), self-hosted or not, with no lock-in. See docs/ai-providers.md. """ from .factory import build_summariser, build_transcriber __all__ = ["build_summariser", "build_transcriber"]