Update app.py
Browse files
app.py
CHANGED
@@ -127,15 +127,15 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
127 |
with gr.Row():
|
128 |
user_input = gr.Textbox(label="Enter your Query", placeholder='Type_here...')
|
129 |
|
130 |
-
# Examples to help users with inputs
|
131 |
-
with gr.Row():
|
132 |
-
gr.Examples(examples=examples, inputs=user_input)
|
133 |
-
|
134 |
# Buttons for submitting and downloading
|
135 |
with gr.Row():
|
136 |
submit_button = gr.Button("Submit")
|
137 |
clear_btn = gr.ClearButton([user_input], value='Clear')
|
138 |
|
|
|
|
|
|
|
|
|
139 |
# File download buttons
|
140 |
with gr.Row():
|
141 |
# Create a downloadable markdown file
|
|
|
127 |
with gr.Row():
|
128 |
user_input = gr.Textbox(label="Enter your Query", placeholder='Type_here...')
|
129 |
|
|
|
|
|
|
|
|
|
130 |
# Buttons for submitting and downloading
|
131 |
with gr.Row():
|
132 |
submit_button = gr.Button("Submit")
|
133 |
clear_btn = gr.ClearButton([user_input], value='Clear')
|
134 |
|
135 |
+
# Examples to help users with inputs
|
136 |
+
with gr.Row():
|
137 |
+
gr.Examples(examples=examples, inputs=user_input)
|
138 |
+
|
139 |
# File download buttons
|
140 |
with gr.Row():
|
141 |
# Create a downloadable markdown file
|