rebrand: rename VoiceBox to TalkBox throughout codebase
CI / frontend-quality (push) Canceled after 0s

- All 'voicebox'/'Voicebox'/'VOICEBOX' strings replaced with 'talkbox'/'TalkBox'/'TALKBOX'
- Port changed from 17493 to 17494 (avoids conflict with upstream VoiceBox)
- MCP tool namespace: voicebox.* -> talkbox.*
- App bundle ID: sh.voicebox.app -> com.talkbox.app
- Binary names: voicebox-server -> talkbox-server, voicebox-mcp -> talkbox-mcp
- Docker user/group: voicebox -> talkbox
- Database: voicebox.db -> talkbox.db
- Env vars: VOICEBOX_* -> TALKBOX_*
- Asset files renamed: voicebox-logo.* -> talkbox-logo.*, etc.
- External binaries in tauri.conf.json updated to talkbox-server/talkbox-mcp
This commit is contained in:
2026-08-24 19:45:56 -07:00
parent eaef8dd838
commit b8815e94ea
205 changed files with 1593 additions and 1593 deletions
+9 -9
View File
@@ -139,7 +139,7 @@ def create_app() -> FastAPI:
mcp_app = mcp.http_app(path="/", transport="http")
@asynccontextmanager
async def voicebox_lifespan(app: FastAPI):
async def talkbox_lifespan(app: FastAPI):
await _run_startup(app)
try:
yield
@@ -149,16 +149,16 @@ def create_app() -> FastAPI:
# startup still unloads whatever models were loaded.
await _run_shutdown()
# compose_lifespan enters factories in order (voicebox startup →
# compose_lifespan enters factories in order (talkbox startup →
# MCP startup) and exits in LIFO (MCP teardown first → models
# unload last). That ordering matters on shutdown: FastMCP's
# __aexit__ cancels in-flight session tasks, and we want that to
# happen *before* _run_shutdown yanks the TTS / Whisper / LLM
# models out from under any MCP request that was still generating.
lifespan = compose_lifespan(voicebox_lifespan, mcp_app.router.lifespan_context)
lifespan = compose_lifespan(talkbox_lifespan, mcp_app.router.lifespan_context)
application = FastAPI(
title="voicebox API",
title="talkbox API",
description="Production-quality Qwen3-TTS voice cloning API",
version=__version__,
lifespan=lifespan,
@@ -179,13 +179,13 @@ def _configure_cors(application: FastAPI) -> None:
default_origins = [
"http://localhost:5173", # Vite dev server
"http://127.0.0.1:5173",
"http://localhost:17493",
"http://127.0.0.1:17493",
"http://localhost:17494",
"http://127.0.0.1:17494",
"tauri://localhost", # Tauri webview (macOS)
"https://tauri.localhost", # Tauri webview (Windows/Linux)
"http://tauri.localhost", # Tauri webview (Windows, some builds)
]
env_origins = os.environ.get("VOICEBOX_CORS_ORIGINS", "")
env_origins = os.environ.get("TALKBOX_CORS_ORIGINS", "")
all_origins = default_origins + [o.strip() for o in env_origins.split(",") if o.strip()]
application.add_middleware(
@@ -276,7 +276,7 @@ async def _run_startup(application: FastAPI) -> None:
import platform
import sys
logger.info("Voicebox v%s starting up", __version__)
logger.info("TalkBox v%s starting up", __version__)
logger.info(
"Python %s on %s %s (%s)",
sys.version.split()[0],
@@ -358,7 +358,7 @@ async def _run_startup(application: FastAPI) -> None:
async def _run_shutdown() -> None:
"""Unload models on lifespan exit."""
logger.info("Voicebox server shutting down...")
logger.info("TalkBox server shutting down...")
try:
tts.unload_tts_model()
except Exception: