model used being carried thru

This commit is contained in:
John Lancaster
2026-06-29 19:04:16 -05:00
parent 9ada09accf
commit 7df687d6f5
27 changed files with 1442 additions and 210 deletions
+14
View File
@@ -0,0 +1,14 @@
from nicegui import ui
from transcription.app import create_app
from transcription.config import configure_logging
configure_logging()
app = create_app()
ui.run_with(
app,
mount_path="/ui",
show_welcome_message=True,
)
ui.run(host="0.0.0.0", port=8085, reload=True)