Isidorophp commited on
Commit
c1619cc
·
verified ·
1 Parent(s): 4003a4b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -8
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 = gr.Dropdown(choices=list(Female_language_dict.keys()), value="English (UK)-Maisie- (Female)" , label="Select Voice for Hermione")
110
- us_input = gr.Audio(label="Your Voice Chat", type="filepath", interactive=True, sources="microphone", scale=1, waveform_options=None)
111
- us_output = gr.Audio(label="Hermione's Response", type="filepath", interactive=False, autoplay=True, scale=1, elem_classes="audio")
 
 
 
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 = gr.Dropdown(choices=list(Female_language_dict.keys()), value="English (UK)-Maisie- (Female)" , label="Select Voice for Hermione")
117
- 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...?")
118
- output_audio = gr.Audio(label="Hermione's Response", type="filepath", interactive=False, autoplay=True, scale=2, elem_classes="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")