Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update app.py
Browse files
app.py
CHANGED
@@ -91,7 +91,9 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
91 |
""")
|
92 |
|
93 |
with gr.Row():
|
94 |
-
|
|
|
|
|
95 |
with gr.Column():
|
96 |
example_queries = [
|
97 |
"Show the top 10 departments by total award amount.",
|
@@ -105,8 +107,6 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
105 |
for i, query in enumerate(example_queries):
|
106 |
btn = gr.Button(query, variant="link", size="sm", interactive=True)
|
107 |
example_buttons.append(btn)
|
108 |
-
|
109 |
-
with gr.Column(scale=1, min_width=350):
|
110 |
|
111 |
gr.Markdown("### π Enter Your Query")
|
112 |
query_input = gr.Textbox(
|
|
|
91 |
""")
|
92 |
|
93 |
with gr.Row():
|
94 |
+
|
95 |
+
with gr.Column(scale=1, min_width=350):
|
96 |
+
gr.Markdown("### π‘ Example Queries")
|
97 |
with gr.Column():
|
98 |
example_queries = [
|
99 |
"Show the top 10 departments by total award amount.",
|
|
|
107 |
for i, query in enumerate(example_queries):
|
108 |
btn = gr.Button(query, variant="link", size="sm", interactive=True)
|
109 |
example_buttons.append(btn)
|
|
|
|
|
110 |
|
111 |
gr.Markdown("### π Enter Your Query")
|
112 |
query_input = gr.Textbox(
|