ASG Models commited on
Commit
ef68d30
·
verified ·
1 Parent(s): 28534de

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -6
app.py CHANGED
@@ -201,12 +201,11 @@ with gr.Blocks() as demo: # Use gr.Blocks to wrap the entire interface
201
  with gr.Row():
202
  btn = gr.Button("إرسال")
203
  btn_ai_only = gr.Button("توليد رد الذكاء الاصطناعي فقط")
204
-
205
- user_audio = gr.Audio(label="صوت المدخل")
206
-
207
- ai_audio = gr.Audio(label="رد الذكاء الاصطناعي الصوتي")
208
- ai_text = gr.Textbox(label="رد الذكاء الاصطناعي النصي")
209
- ai_audio2 = gr.Audio(label="2رد الذكاء الاصطناعي الصوتي",streaming=True)
210
 
211
 
212
 
 
201
  with gr.Row():
202
  btn = gr.Button("إرسال")
203
  btn_ai_only = gr.Button("توليد رد الذكاء الاصطناعي فقط")
204
+ with gr.Row():
205
+ user_audio = gr.Audio(label="صوت المدخل")
206
+ ai_audio = gr.Audio(label="رد AI الصوتي")
207
+ ai_text = gr.Textbox(label="رد AI النصي")
208
+ ai_audio2 = gr.Audio(label="2رد AI الصوتي",streaming=True)
 
209
 
210
 
211