Spaces:
Sleeping
Sleeping
move instructions
Browse files
app.py
CHANGED
@@ -7,18 +7,6 @@ import pandas as pd
|
|
7 |
from database import engine, receipts
|
8 |
import pandas as pd
|
9 |
|
10 |
-
gr.Markdown("""
|
11 |
-
## Plain Text Query Interface
|
12 |
-
|
13 |
-
This tool allows you to query a receipts database using natural language. Simply type your question into the input box, and the tool will generate and execute an SQL query to retrieve relevant data. The results will be displayed in the output box.
|
14 |
-
|
15 |
-
### How to Use:
|
16 |
-
1. Enter a question related to the receipts data in the text box.
|
17 |
-
2. The tool will convert your question into an SQL query and execute it.
|
18 |
-
3. The result will be displayed in the output box.
|
19 |
-
4. The current receipts table is also displayed for reference.
|
20 |
-
""")
|
21 |
-
|
22 |
def get_receipts_table():
|
23 |
"""
|
24 |
Fetches all data from the 'receipts' table and returns it as a Pandas DataFrame.
|
@@ -127,7 +115,17 @@ agent = CodeAgent(
|
|
127 |
)
|
128 |
|
129 |
with gr.Blocks() as demo:
|
130 |
-
gr.Markdown("
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
|
132 |
with gr.Row():
|
133 |
with gr.Column(scale=1):
|
|
|
7 |
from database import engine, receipts
|
8 |
import pandas as pd
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
def get_receipts_table():
|
11 |
"""
|
12 |
Fetches all data from the 'receipts' table and returns it as a Pandas DataFrame.
|
|
|
115 |
)
|
116 |
|
117 |
with gr.Blocks() as demo:
|
118 |
+
gr.Markdown("""
|
119 |
+
## Plain Text Query Interface
|
120 |
+
|
121 |
+
This tool allows you to query a receipts database using natural language. Simply type your question into the input box, and the tool will generate and execute an SQL query to retrieve relevant data. The results will be displayed in the output box.
|
122 |
+
|
123 |
+
### How to Use:
|
124 |
+
1. Enter a question related to the receipts data in the text box.
|
125 |
+
2. The tool will convert your question into an SQL query and execute it.
|
126 |
+
3. The result will be displayed in the output box.
|
127 |
+
4. The current receipts table is also displayed for reference.
|
128 |
+
""")
|
129 |
|
130 |
with gr.Row():
|
131 |
with gr.Column(scale=1):
|