Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -107,11 +107,11 @@ if __name__ == "__main__":
|
|
107 |
with gr.Row():
|
108 |
gr.Markdown(value=description)
|
109 |
with gr.Row():
|
110 |
-
query = gr.Textbox(lines=5, placeholder="Type your query here...", label="Query", elem_id="q-input")
|
111 |
with gr.Row():
|
112 |
k = gr.Slider(1, 100, value=10, step=1, label="Max Results")
|
113 |
with gr.Row():
|
114 |
-
submit_btn = gr.Button("Submit")
|
115 |
with gr.Row():
|
116 |
results = gr.HTML(label="Results", value="")
|
117 |
|
|
|
107 |
with gr.Row():
|
108 |
gr.Markdown(value=description)
|
109 |
with gr.Row():
|
110 |
+
query = gr.Textbox(lines=5, placeholder="Type your query here...", label="Query", elem_id="q-input", interactive=False )
|
111 |
with gr.Row():
|
112 |
k = gr.Slider(1, 100, value=10, step=1, label="Max Results")
|
113 |
with gr.Row():
|
114 |
+
submit_btn = gr.Button("Submit", interactive=False)
|
115 |
with gr.Row():
|
116 |
results = gr.HTML(label="Results", value="")
|
117 |
|