Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -5,19 +5,27 @@ import pandas as pd
|
|
5 |
import matplotlib.pyplot as plt
|
6 |
import seaborn as sns
|
7 |
|
8 |
-
# API URL (replace with your ngrok URL)
|
9 |
API_URL = "https://14d0-34-27-134-153.ngrok-free.app/query" # Replace with your ngrok public URL
|
10 |
|
|
|
|
|
|
|
|
|
|
|
11 |
|
12 |
-
|
|
|
|
|
|
|
|
|
13 |
st.title("SQL Agent with Streamlit")
|
|
|
14 |
|
15 |
# Input for the question
|
16 |
question = st.text_input("Enter your question:")
|
17 |
|
18 |
if st.button("Submit"):
|
19 |
if question:
|
20 |
-
# Call the API
|
21 |
response = requests.post(API_URL, json={"question": question})
|
22 |
|
23 |
if response.status_code == 200:
|
|
|
5 |
import matplotlib.pyplot as plt
|
6 |
import seaborn as sns
|
7 |
|
|
|
8 |
API_URL = "https://14d0-34-27-134-153.ngrok-free.app/query" # Replace with your ngrok public URL
|
9 |
|
10 |
+
st.set_page_config(
|
11 |
+
page_title="SQL Agent with Streamlit",
|
12 |
+
page_icon=":bar_chart:",
|
13 |
+
layout="wide"
|
14 |
+
)
|
15 |
|
16 |
+
with st.sidebar:
|
17 |
+
st.write("## About Me")
|
18 |
+
st.write("**Name:** Mahmoud Hassanen")
|
19 |
+
st.write("**LinkedIn:** [Your LinkedIn Profile](https://www.linkedin.com/in/mahmoudhassanen99//)")
|
20 |
+
|
21 |
st.title("SQL Agent with Streamlit")
|
22 |
+
st.header("Analyze Sales Data with Natural Language Queries")
|
23 |
|
24 |
# Input for the question
|
25 |
question = st.text_input("Enter your question:")
|
26 |
|
27 |
if st.button("Submit"):
|
28 |
if question:
|
|
|
29 |
response = requests.post(API_URL, json={"question": question})
|
30 |
|
31 |
if response.status_code == 200:
|