Rhema

Introduction

Real-time AI Bible verse detection for live sermons and broadcasts — a Tauri v2 desktop app with a React frontend and Rust backend.

Rhema listens to a live sermon audio feed, transcribes speech in real time, detects Bible verse references — both explicit citations and quoted passages — and renders them as broadcast-ready overlays via NDI for live production.

Rhema desktop app — live transcript on the left, detections in the centre, queue and live preview on the right

The Rhema dashboard during a service: live transcript on the left, detected verses in the centre column, and the verse queue plus broadcast preview on the right. Click to expand.

What you can do with Rhema

Hear the sermon

Capture audio from any input device and transcribe it locally with Whisper or via Deepgram's streaming WebSocket API.

Find the verse

A multi-strategy detector combines Aho-Corasick reference parsing, Qwen3 ONNX semantic search, and quotation matching.

Render broadcast overlays

Send verse overlays to vMix, OBS, or any NDI consumer with the built-in theme designer for typography and backgrounds.

Switch translations on the fly

Say "read in NIV" mid-sermon and Rhema swaps the active translation without breaking the queue.

Get started in two commands

Prerequisites

You'll need Bun, the Rust toolchain, Python 3, and your platform's Tauri v2 prerequisites installed first. See Prerequisites for the full list.

git clone https://github.com/openbezal/rhema.git && cd rhema
bun install && bun run setup:all
bun run tauri dev

That's it. setup:all runs seven idempotent phases — Python venv, Bible downloads, SQLite build, ONNX export, embeddings — and tauri dev boots the desktop app. See the installation guide for a guided walkthrough.

How it's built

Rhema pipeline — audio capture flows through speech-to-text, the detection pipeline, the queue, and finally the NDI sender that downstream switchers consume

The five stages, in order: capture → transcribe → detect → curate → broadcast. The detection stage is the one that runs all four strategies in parallel and merges them. Click to expand.

Where to go next

On this page