Spaces:
Runtime error
Runtime error
gradio interface *nudge*
Browse files
app.py
CHANGED
@@ -591,7 +591,8 @@ def clear():
|
|
591 |
return "English", None, None, "", None
|
592 |
|
593 |
def create_interface():
|
594 |
-
with gr.Blocks(theme='ParityError/Anime') as iface:
|
|
|
595 |
# Display the welcome message
|
596 |
gr.Markdown(welcome_message)
|
597 |
# Add a 'None' or similar option to represent no selection
|
@@ -600,12 +601,12 @@ def create_interface():
|
|
600 |
|
601 |
with gr.Accordion("Use Voice", open=False) as voice_accordion:
|
602 |
audio_input = gr.Audio(label="Speak")
|
603 |
-
|
604 |
gr.Examples([["audio1.wav"],["audio2.wav"],],inputs=[audio_input])
|
605 |
|
606 |
with gr.Accordion("Use a Picture", open=False) as picture_accordion:
|
607 |
image_input = gr.Image(label="Upload image")
|
608 |
-
|
609 |
gr.Examples([["image1.png"], ["image2.jpeg"], ["image3.jpeg"],],inputs=[image_input])
|
610 |
|
611 |
with gr.Accordion("MultiMed", open=False) as multimend_accordion:
|
@@ -613,7 +614,7 @@ def create_interface():
|
|
613 |
|
614 |
gr.Examples([
|
615 |
["What is the proper treatment for buccal herpes?"],
|
616 |
-
["I have had a sore throat and hoarse voice for
|
617 |
["How does cellular metabolism work TCA cycle"],
|
618 |
["What special care must be provided to children with chicken pox?"],
|
619 |
["When and how often should I wash my hands?"],
|
@@ -631,8 +632,8 @@ def create_interface():
|
|
631 |
clear_button = gr.Button("Clear")
|
632 |
clear_button.click(clear, inputs=[], outputs=[input_language, audio_input, image_input, text_output, audio_output])
|
633 |
|
634 |
-
return
|
635 |
|
636 |
|
637 |
-
|
638 |
-
|
|
|
591 |
return "English", None, None, "", None
|
592 |
|
593 |
def create_interface():
|
594 |
+
# with gr.Blocks(theme='ParityError/Anime') as iface:
|
595 |
+
with gr.Blocks() as interface:
|
596 |
# Display the welcome message
|
597 |
gr.Markdown(welcome_message)
|
598 |
# Add a 'None' or similar option to represent no selection
|
|
|
601 |
|
602 |
with gr.Accordion("Use Voice", open=False) as voice_accordion:
|
603 |
audio_input = gr.Audio(label="Speak")
|
604 |
+
audio_output = gr.Markdown(label="Output text") # Markdown component for audio
|
605 |
gr.Examples([["audio1.wav"],["audio2.wav"],],inputs=[audio_input])
|
606 |
|
607 |
with gr.Accordion("Use a Picture", open=False) as picture_accordion:
|
608 |
image_input = gr.Image(label="Upload image")
|
609 |
+
image_output = gr.Markdown(label="Output text") # Markdown component for image
|
610 |
gr.Examples([["image1.png"], ["image2.jpeg"], ["image3.jpeg"],],inputs=[image_input])
|
611 |
|
612 |
with gr.Accordion("MultiMed", open=False) as multimend_accordion:
|
|
|
614 |
|
615 |
gr.Examples([
|
616 |
["What is the proper treatment for buccal herpes?"],
|
617 |
+
["I have had a sore throat and hoarse voice for several days and now a strong cough recently "],
|
618 |
["How does cellular metabolism work TCA cycle"],
|
619 |
["What special care must be provided to children with chicken pox?"],
|
620 |
["When and how often should I wash my hands?"],
|
|
|
632 |
clear_button = gr.Button("Clear")
|
633 |
clear_button.click(clear, inputs=[], outputs=[input_language, audio_input, image_input, text_output, audio_output])
|
634 |
|
635 |
+
return interface
|
636 |
|
637 |
|
638 |
+
interface = create_interface()
|
639 |
+
interface.launch(show_error=True, debug=True)
|