mirror of
https://github.com/jamiepine/voicebox.git
synced 2026-09-18 14:20:42 -07:00
Ships the Capture release end to end. Global-hotkey dictation with synthetic paste into the focused app on macOS and Windows, an on-screen pill across recording / transcribing / refining, customizable push-to- talk and toggle chords, and an accessibility-permission prompt scoped to Settings → Captures with inline re-check feedback. Voice profiles gain optional personalities that power compose / rewrite / respond actions via a local Qwen3 LLM — shared with refinement, so there is one local LLM in the app, not two. Refinement hardened with deterministic Whisper-loop collapse before the LLM sees the transcript, per-capture flag snapshots for re-runs, and a ten-transcript evaluation harness across every bundled refinement size. Version bump 0.4.5 → 0.5.0. Co-Authored-By: Claude Opus 4.7 (1M context) <[email protected]>
39 lines
1.5 KiB
Python
39 lines
1.5 KiB
Python
"""Route registration for the voicebox API."""
|
|
|
|
from fastapi import FastAPI
|
|
|
|
|
|
def register_routers(app: FastAPI) -> None:
|
|
"""Include all domain routers on the application."""
|
|
from .health import router as health_router
|
|
from .profiles import router as profiles_router
|
|
from .channels import router as channels_router
|
|
from .generations import router as generations_router
|
|
from .history import router as history_router
|
|
from .transcription import router as transcription_router
|
|
from .llm import router as llm_router
|
|
from .captures import router as captures_router
|
|
from .stories import router as stories_router
|
|
from .effects import router as effects_router
|
|
from .audio import router as audio_router
|
|
from .models import router as models_router
|
|
from .settings import router as settings_router
|
|
from .tasks import router as tasks_router
|
|
from .cuda import router as cuda_router
|
|
|
|
app.include_router(health_router)
|
|
app.include_router(profiles_router)
|
|
app.include_router(channels_router)
|
|
app.include_router(generations_router)
|
|
app.include_router(history_router)
|
|
app.include_router(transcription_router)
|
|
app.include_router(llm_router)
|
|
app.include_router(captures_router)
|
|
app.include_router(stories_router)
|
|
app.include_router(effects_router)
|
|
app.include_router(audio_router)
|
|
app.include_router(models_router)
|
|
app.include_router(settings_router)
|
|
app.include_router(tasks_router)
|
|
app.include_router(cuda_router)
|