marries commited on
Commit
7235309
·
verified ·
1 Parent(s): a68b94a

Update run.py

Browse files
Files changed (1) hide show
  1. run.py +2 -2
run.py CHANGED
@@ -1,14 +1,14 @@
1
  import gradio as gr
2
 
3
  def transcribe(audio):
4
- return "Просто демо‑режим на CPU — звук не обрабатывается."
5
 
6
  iface = gr.Interface(
7
  fn=transcribe,
8
  inputs=gr.Audio(sources=["microphone"], type="filepath"),
9
  outputs=gr.Textbox(label="📄 Результат"),
10
  title="SeamlessStreaming CPU Demo",
11
- description="Демо‑приложение на CPU — проверено, что работает."
12
  )
13
 
14
  if __name__ == "__main__":
 
1
  import gradio as gr
2
 
3
  def transcribe(audio):
4
+ return "Демо‑режим на CPU — звук не обрабатывается."
5
 
6
  iface = gr.Interface(
7
  fn=transcribe,
8
  inputs=gr.Audio(sources=["microphone"], type="filepath"),
9
  outputs=gr.Textbox(label="📄 Результат"),
10
  title="SeamlessStreaming CPU Demo",
11
+ description="Простое демо на CPU"
12
  )
13
 
14
  if __name__ == "__main__":