Open Medical Scribe v0.1.0
AI-powered medical documentation that runs fully local and fully private.
Features
- Real-time streaming transcription with Whisper ONNX (local, Swedish-optimized)
- Structured note generation (SOAP, H&P, Progress, DAP, Procedure, Swedish Journal)
- Pluggable providers: OpenAI, Anthropic, Gemini, Deepgram, Google Speech, Berget, Ollama
- Privacy-first: run entirely on your own hardware in local mode
- Web UI, Electron desktop app, and CLI tools
- Settings page for all providers and configuration
Downloads
Light Build (macOS arm64) — ~1 GB DMG
Clean install. The Whisper ONNX model downloads on first use (~1.1 GB). Requires external Ollama for note generation.
Building from Source
git clone https://github.com/BirgerMoell/open-medical-scribe
cd open-medical-scribe
npm install
npm start # web UI at http://localhost:8787Desktop App (Electron)
# Light build
npm run electron:build:light:mac
# Full offline build (downloads ~6 GB of models first)
npm run models:download:whisper
npm run models:download:llm
npm run electron:build:full:macCLI Tools
npm run build:cli
echo "Patient presents with headache" | dist/scribe-note --provider mockSee the documentation site for more details.