Kjgarza commited on
Commit
dbaf271
·
1 Parent(s): 229269d
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -8,10 +8,10 @@ def create_input_components():
8
  Creates and returns input components for Gradio interface.
9
  """
10
  # A text area for users to input or paste the schema file.
11
- schema_input = gr.Textbox(label="Schema File", placeholder="Paste your schema here...")
12
 
13
  # A text input for users to provide the schema target.
14
- target_input = gr.Input(label="Schema Target", placeholder="Enter your schema target...")
15
 
16
  return schema_input, target_input
17
 
 
8
  Creates and returns input components for Gradio interface.
9
  """
10
  # A text area for users to input or paste the schema file.
11
+ schema_input = gr.TextArea(label="Schema File", placeholder="Paste your schema here...")
12
 
13
  # A text input for users to provide the schema target.
14
+ target_input = gr.Textbox(label="Schema Target", placeholder="Enter your schema target...")
15
 
16
  return schema_input, target_input
17