MHamdan commited on
Commit
edcb23f
·
verified ·
1 Parent(s): ea00e5d

app update

Browse files
Files changed (1) hide show
  1. app.py +9 -7
app.py CHANGED
@@ -122,9 +122,9 @@ def create_interface():
122
  with gr.Blocks(title="Text Analysis App") as interface:
123
  gr.Markdown("## Choose data format to analyze")
124
  input_type = gr.Dropdown(["Text", "URL", "File"], label="Input Type")
125
- text_input = gr.Textbox(visible=False, label="Text Input")
126
- url_input = gr.Textbox(visible=False, label="URL Input")
127
- file_input = gr.File(visible=False, label="File Upload")
128
 
129
  tasks_checkboxes = gr.CheckboxGroup(["Summarization", "Sentiment Analysis", "Topic Detection"], label="Analysis Tasks")
130
 
@@ -146,11 +146,13 @@ def create_interface():
146
  conversation_button = gr.Button("Send")
147
 
148
  def update_input_visibility(input_type):
149
- text_input.visible = input_type == "Text"
150
- url_input.visible = input_type == "URL"
151
- file_input.visible = input_type == "File"
 
 
152
 
153
- input_type.change(update_input_visibility, inputs=input_type)
154
 
155
  def process_input(input_type, text, url, file, tasks):
156
  if input_type == "Text":
 
122
  with gr.Blocks(title="Text Analysis App") as interface:
123
  gr.Markdown("## Choose data format to analyze")
124
  input_type = gr.Dropdown(["Text", "URL", "File"], label="Input Type")
125
+ text_input = gr.Textbox(label="Text Input", visible=False)
126
+ url_input = gr.Textbox(label="URL Input", visible=False)
127
+ file_input = gr.File(label="File Upload", visible=False)
128
 
129
  tasks_checkboxes = gr.CheckboxGroup(["Summarization", "Sentiment Analysis", "Topic Detection"], label="Analysis Tasks")
130
 
 
146
  conversation_button = gr.Button("Send")
147
 
148
  def update_input_visibility(input_type):
149
+ return {
150
+ text_input: gr.update(visible=input_type == "Text"),
151
+ url_input: gr.update(visible=input_type == "URL"),
152
+ file_input: gr.update(visible=input_type == "File")
153
+ }
154
 
155
+ input_type.change(update_input_visibility, inputs=[input_type], outputs=[text_input, url_input, file_input])
156
 
157
  def process_input(input_type, text, url, file, tasks):
158
  if input_type == "Text":