whisper webui notebook

This commit is contained in:
2025-11-28 12:26:17 +01:00
parent b9a8041853
commit 985328ce80

View File

@@ -0,0 +1,24 @@
import marimo
__generated_with = "0.18.0"
app = marimo.App(width="medium")
@app.cell
def _():
import marimo as mo
return (mo,)
@app.cell(hide_code=True)
def _(mo):
mo.md(r"""
# Interview Audio Transcription
Use Whisper-Webui: http://whisper-webui.tail44fa00.ts.net:7860
""")
return
if __name__ == "__main__":
app.run()