Update app.py
Browse files
app.py
CHANGED
@@ -102,20 +102,31 @@ with gr.Blocks(gr.themes.Origin()) as demo:
|
|
102 |
gr.HTML(""" <img src='https://huggingface.co/spaces/Isidorophp/Magic-with-Hermione-Granger/resolve/main/logo.png' alt='RJP DEV STUDIO logo' style='height:60px;'> """
|
103 |
""" <center><h1> Hermione Granger 🧖♀️ ⚡🪄</h1></center> """
|
104 |
""" <center><h3> I suggest, you ask me for a Spell : </h3></center> """)
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
|
106 |
-
|
107 |
with gr.Tab("Talk to Hermione", scale=1):
|
108 |
-
with gr.Row(scale=2):
|
109 |
-
user_voice
|
110 |
-
us_input
|
111 |
-
us_output
|
|
|
|
|
|
|
112 |
gr.Interface(fn=respond, inputs=[user_voice, us_input], outputs=us_output, live=False)
|
113 |
|
114 |
with gr.Tab("Write to Hermione", scale=1):
|
115 |
with gr.Row(variant = "panel" , scale=2):
|
116 |
-
user_voice
|
117 |
-
user_input
|
118 |
-
output_audio
|
|
|
|
|
|
|
119 |
with gr.Row(scale=2):
|
120 |
clear_button = gr.ClearButton([user_input, output_audio], value="Clear")
|
121 |
translate_btn = gr.Button("Submit", variant="primary")
|
|
|
102 |
gr.HTML(""" <img src='https://huggingface.co/spaces/Isidorophp/Magic-with-Hermione-Granger/resolve/main/logo.png' alt='RJP DEV STUDIO logo' style='height:60px;'> """
|
103 |
""" <center><h1> Hermione Granger 🧖♀️ ⚡🪄</h1></center> """
|
104 |
""" <center><h3> I suggest, you ask me for a Spell : </h3></center> """)
|
105 |
+
user_voice = gr.Dropdown(choices=list(Female_language_dict.keys()), value="English (UK)-Maisie- (Female)" , label="Select Voice for Hermione")
|
106 |
+
us_input = gr.Audio(label="Your Voice Chat", type="filepath", interactive=True, sources="microphone", scale=1, waveform_options=None)
|
107 |
+
us_output = gr.Audio(label="Hermione's Response", type="filepath", interactive=False, autoplay=True, scale=1, elem_classes="audio")
|
108 |
+
user_voice = gr.Dropdown(choices=list(Female_language_dict.keys()), value="English (UK)-Maisie- (Female)" , label="Select Voice for Hermione")
|
109 |
+
user_input = gr.TextArea(label="Your Question", scale=1, value="If there is any spell to encapsulate you as a piece of the cog, where Hermione is to everyone's favorite magical trio, it has to be...?")
|
110 |
+
output_audio = gr.Audio(label="Hermione's Response", type="filepath", interactive=False, autoplay=True, scale=2, elem_classes="audio")
|
111 |
|
|
|
112 |
with gr.Tab("Talk to Hermione", scale=1):
|
113 |
+
with gr.Row(variant = "panel", scale=2):
|
114 |
+
user_voice
|
115 |
+
us_input
|
116 |
+
us_output
|
117 |
+
# user_voice = gr.Dropdown(choices=list(Female_language_dict.keys()), value="English (UK)-Maisie- (Female)" , label="Select Voice for Hermione")
|
118 |
+
# us_input = gr.Audio(label="Your Voice Chat", type="filepath", interactive=True, sources="microphone", scale=1, waveform_options=None)
|
119 |
+
# us_output = gr.Audio(label="Hermione's Response", type="filepath", interactive=False, autoplay=True, scale=1, elem_classes="audio")
|
120 |
gr.Interface(fn=respond, inputs=[user_voice, us_input], outputs=us_output, live=False)
|
121 |
|
122 |
with gr.Tab("Write to Hermione", scale=1):
|
123 |
with gr.Row(variant = "panel" , scale=2):
|
124 |
+
user_voice
|
125 |
+
user_input
|
126 |
+
output_audio
|
127 |
+
# user_voice = gr.Dropdown(choices=list(Female_language_dict.keys()), value="English (UK)-Maisie- (Female)" , label="Select Voice for Hermione")
|
128 |
+
# user_input = gr.TextArea(label="Your Question", scale=1, value="If there is any spell to encapsulate you as a piece of the cog, where Hermione is to everyone's favorite magical trio, it has to be...?")
|
129 |
+
# output_audio = gr.Audio(label="Hermione's Response", type="filepath", interactive=False, autoplay=True, scale=2, elem_classes="audio")
|
130 |
with gr.Row(scale=2):
|
131 |
clear_button = gr.ClearButton([user_input, output_audio], value="Clear")
|
132 |
translate_btn = gr.Button("Submit", variant="primary")
|