textToSQL commited on
Commit
935f0c9
·
1 Parent(s): fd48156

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -97,6 +97,8 @@ with gr.Blocks() as demo:
97
 
98
  demo.launch()
99
 
 
 
100
  # In this example, the process_text function just converts the input text to uppercase, but you can replace it with your desired function. The Gradio Blocks interface will have two buttons: "Transcribe audio" and "Process text". The first button transcribes the audio and fills the first textbox, and the second button processes the text from the first textbox and fills the second textbox.
101
 
102
 
 
97
 
98
  demo.launch()
99
 
100
+ #demo.launch(share=True, auth=("username", "password"))
101
+
102
  # In this example, the process_text function just converts the input text to uppercase, but you can replace it with your desired function. The Gradio Blocks interface will have two buttons: "Transcribe audio" and "Process text". The first button transcribes the audio and fills the first textbox, and the second button processes the text from the first textbox and fills the second textbox.
103
 
104