Spaces:
Sleeping
Sleeping
bhavyagiri
commited on
Commit
·
2dd6eeb
1
Parent(s):
8005b73
Update app.py
Browse files
app.py
CHANGED
@@ -59,11 +59,11 @@ with gr.Blocks() as demo:
|
|
59 |
transcribe_btn = gr.Button("Trascribe")
|
60 |
with gr.Column():
|
61 |
out_yt_html = gr.outputs.HTML()
|
62 |
-
out_yt_text = gr.Textbox()
|
63 |
with gr.Column():
|
64 |
in_query = gr.Textbox(lines=1, placeholder="What's your Question", label="Query")
|
65 |
ans_btn = gr.Button("Answer")
|
66 |
-
out_query = gr.outputs.Textbox(
|
67 |
|
68 |
|
69 |
transcribe_btn.click(fn=yt_transcribe, inputs=in_yt, outputs=[out_yt_html,out_yt_text])
|
|
|
59 |
transcribe_btn = gr.Button("Trascribe")
|
60 |
with gr.Column():
|
61 |
out_yt_html = gr.outputs.HTML()
|
62 |
+
out_yt_text = gr.Textbox(label="Transciption")
|
63 |
with gr.Column():
|
64 |
in_query = gr.Textbox(lines=1, placeholder="What's your Question", label="Query")
|
65 |
ans_btn = gr.Button("Answer")
|
66 |
+
out_query = gr.outputs.Textbox(label="Answer")
|
67 |
|
68 |
|
69 |
transcribe_btn.click(fn=yt_transcribe, inputs=in_yt, outputs=[out_yt_html,out_yt_text])
|