Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -13,11 +13,7 @@ st.set_page_config(page_title="SQL Agent with Streamlit", page_icon=":bar_chart:
|
|
13 |
|
14 |
# Sidebar Information
|
15 |
with st.sidebar:
|
16 |
-
st.write("
|
17 |
-
This web app allows you to interact with your data warehouse (DWH) using natural language queries.
|
18 |
-
Simply enter a question, and the app will generate and execute the corresponding SQL query.
|
19 |
-
You can also modify the generated SQL before execution, making it easy to analyze your sales data and view visualizations.
|
20 |
-
Hosted using Streamlit and integrated with Azure SQL Database and OpenAI's GPT-3.5 model, this tool bridges the gap between data analysis and natural language understanding.""")
|
21 |
st.write("""This web app allows you to interact with your data warehouse (DWH) using natural language queries.
|
22 |
Simply enter a question, and the app will generate and execute the corresponding SQL query.
|
23 |
You can also modify the generated SQL before execution, making it easy to analyze your sales data and view visualizations.
|
|
|
13 |
|
14 |
# Sidebar Information
|
15 |
with st.sidebar:
|
16 |
+
st.write("# SQL Agent with Streamlit")
|
|
|
|
|
|
|
|
|
17 |
st.write("""This web app allows you to interact with your data warehouse (DWH) using natural language queries.
|
18 |
Simply enter a question, and the app will generate and execute the corresponding SQL query.
|
19 |
You can also modify the generated SQL before execution, making it easy to analyze your sales data and view visualizations.
|