hamaadayubkhan commited on
Commit
82691e5
1 Parent(s): 9d41e26

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -90,10 +90,13 @@ def about_app():
90
  with gr.Blocks(css="style.css") as iface: # Include the CSS file here
91
  gr.Markdown("# Voicesy AI")
92
 
 
 
 
93
  # Tab for Voice to Voice
94
  with gr.Tab("Voice to Voice"):
95
  audio_input = gr.Audio(type="filepath", label="Input Audio (optional)") # Input from mic or file
96
- text_input = gr.Textbox(placeholder="Type your message here...", label="Input Text (optional)")
97
  voice_selection = gr.Dropdown(choices=["en", "en-uk", "en-au", "fr", "de", "es"], label="Select Voice", value="en") # Voice selection
98
 
99
  output_text = gr.Textbox(label="AI Response")
 
90
  with gr.Blocks(css="style.css") as iface: # Include the CSS file here
91
  gr.Markdown("# Voicesy AI")
92
 
93
+ # Add logo at the top
94
+ gr.Image("", label="Voicesy AI") # Update the path to your logo image
95
+
96
  # Tab for Voice to Voice
97
  with gr.Tab("Voice to Voice"):
98
  audio_input = gr.Audio(type="filepath", label="Input Audio (optional)") # Input from mic or file
99
+ text_input = gr.Textbox(placeholder="Type your message here...", label="Input your Text To Interact with LLM")
100
  voice_selection = gr.Dropdown(choices=["en", "en-uk", "en-au", "fr", "de", "es"], label="Select Voice", value="en") # Voice selection
101
 
102
  output_text = gr.Textbox(label="AI Response")