Mary / app.py
marries's picture
Update app.py
f73b1d5 verified
raw
history blame contribute delete
386 Bytes
import gradio as gr
def transcribe(audio):
return "Демо‑режим на CPU — звук не обрабатывается."
iface = gr.Interface(
fn=transcribe,
inputs=gr.Audio(sources=["microphone"], type="filepath"),
outputs=gr.Textbox(label="📄 Результат"),
title="SeamlessStreaming CPU Demo"
)
if __name__ == "__main__":
iface.launch()