slapula commited on
Commit
b4fbc3b
1 Parent(s): 64a2760

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -61,7 +61,7 @@ mic_transcribe = gr.Interface(
61
  ],
62
  outputs="text",
63
  layout="vertical",
64
- theme="huggingface",
65
  title="Whisper Demo: Transcribe Audio",
66
  description=(
67
  "Transcribe long-form microphone or audio inputs with the click of a button! Demo uses the"
@@ -80,7 +80,7 @@ file_transcribe = gr.Interface(
80
  ],
81
  outputs="text",
82
  layout="vertical",
83
- theme="huggingface",
84
  title="Whisper Demo: Transcribe Audio",
85
  description=(
86
  "Transcribe long-form microphone or audio inputs with the click of a button! Demo uses the"
@@ -96,7 +96,6 @@ file_transcribe = gr.Interface(
96
  )
97
 
98
  with demo:
99
- with gr.Column(scale=1, min_width=600):
100
- gr.TabbedInterface([mic_transcribe, file_transcribe], ["Transcribe Microphone", "Transcribe Audio File"])
101
 
102
  demo.launch(enable_queue=True)
 
61
  ],
62
  outputs="text",
63
  layout="vertical",
64
+ theme="monochrome",
65
  title="Whisper Demo: Transcribe Audio",
66
  description=(
67
  "Transcribe long-form microphone or audio inputs with the click of a button! Demo uses the"
 
80
  ],
81
  outputs="text",
82
  layout="vertical",
83
+ theme="monochrome",
84
  title="Whisper Demo: Transcribe Audio",
85
  description=(
86
  "Transcribe long-form microphone or audio inputs with the click of a button! Demo uses the"
 
96
  )
97
 
98
  with demo:
99
+ gr.TabbedInterface([mic_transcribe, file_transcribe], ["Transcribe Microphone", "Transcribe Audio File"])
 
100
 
101
  demo.launch(enable_queue=True)