Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -240,20 +240,18 @@ with gr.Blocks(theme=theme, title="Enterprise SQL Assistant") as demo:
|
|
| 240 |
debug_test_status = gr.Textbox(label="Debug Test Status", interactive=False)
|
| 241 |
|
| 242 |
gr.Markdown("### 💡 Example Queries")
|
| 243 |
-
gr.
|
| 244 |
-
|
| 245 |
-
|
| 246 |
-
|
| 247 |
-
|
| 248 |
-
|
| 249 |
-
|
| 250 |
-
|
| 251 |
-
|
| 252 |
-
|
| 253 |
-
|
| 254 |
-
|
| 255 |
-
label=""
|
| 256 |
-
)
|
| 257 |
|
| 258 |
with gr.Column(scale=2):
|
| 259 |
gr.Markdown("### 📄 Results")
|
|
|
|
| 240 |
debug_test_status = gr.Textbox(label="Debug Test Status", interactive=False)
|
| 241 |
|
| 242 |
gr.Markdown("### 💡 Example Queries")
|
| 243 |
+
gr.Markdown("""
|
| 244 |
+
Try these example queries:
|
| 245 |
+
|
| 246 |
+
- How many members are there?
|
| 247 |
+
- What is the total transaction amount?
|
| 248 |
+
- Show members with their account balances
|
| 249 |
+
- Which member has the highest balance?
|
| 250 |
+
- Show transaction trends over time
|
| 251 |
+
- Count of members by status
|
| 252 |
+
- Show me the first 10 rows
|
| 253 |
+
- What is the average age of members?
|
| 254 |
+
""")
|
|
|
|
|
|
|
| 255 |
|
| 256 |
with gr.Column(scale=2):
|
| 257 |
gr.Markdown("### 📄 Results")
|