fix
Browse files
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.
|
| 12 |
|
| 13 |
# A text input for users to provide the schema target.
|
| 14 |
-
target_input = gr.
|
| 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 |
|