-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.py
113 lines (90 loc) · 3.55 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
import streamlit as st
import streamlit.components.v1 as components
from ai.agents import RelationalDataSystem
import pandas as pd
import numpy as np
from PIL import Image
import os
# Set page title and layout
st.set_page_config(page_title="DataSage", layout="wide")
output_dir = "output_images"
os.makedirs(output_dir, exist_ok=True) # Ensure the directory exists
image_path = os.path.join(output_dir, "graph.png")
if "query_response" not in st.session_state:
st.session_state.query_response = ""
if "df_response" not in st.session_state:
st.session_state.df_response = None
if "df_visual" not in st.session_state:
st.session_state.df_visual = None
if "query" not in st.session_state:
st.session_state.query = ""
# Sidebar with logo and description
with st.sidebar:
st.image("images/logo.png", width=200) # Replace with your actual logo file
st.markdown("### DataSage")
st.write(
"DataSage uses Azure AI Foundry and LangGraph to answer questions "
"and generate output from Azure SQL DB."
)
st.markdown("---")
st.subheader("Sample Questions")
if st.button("Highest Value Orders by Customer"):
st.session_state.query="What are the top 5 largest orders by customer?"
if st.button("Best-Selling Products"):
st.session_state.query="What are the top 5 best selling products?"
if st.button("Best-Selling Product Categories"):
st.session_state.query="What are the best selling product categories?"
st.text("")
st.markdown("---")
st.markdown(
"""
<div style="font-size: 12px;">
<b>Disclaimer: Sample Application</b><br>
Please note that this sample application is provided for demonstration
purposes only and should not be used in production environments
without proper validation and testing.
</div>
""",
unsafe_allow_html=True
)
# Add a GitHub icon in the top-right corner
github_link = """
<div style="position: fixed; top: 10px; right: 10px;">
<a href="https://github.com/jonathanscholtes/DataSage-Azure-AI-QnA-LangGraph-SQLDB" target="_blank">
<img src="https://cdn-icons-png.flaticon.com/512/25/25231.png" width="30">
</a>
</div>
"""
components.html(github_link, height=50)
def update_text():
response_text = ""
graph = RelationalDataSystem().create_graph()
graph.get_graph().draw_mermaid_png(output_file_path=image_path)
for step in graph.stream(
{"question": query}, stream_mode="updates"
):
if 'generate_answer' in step:
response_text = step['generate_answer']['answer']
st.session_state.query_response = response_text
if 'generate_dataframe' in step:
st.session_state.df_response = step['generate_dataframe']['dataframe']
if 'suggest_visualization' in step:
st.session_state.df_visual = step['suggest_visualization']['visual']
print(step)
# Main section
st.subheader("Ask questions of your data:")
query = st.text_area("", height=80,key="query")
# Submit button
col1, col2 = st.columns([10, 1])
with col2:
st.button("Submit",on_click=update_text)
st.caption("Response:")
with st.container(height=200):
output_placeholder = st.markdown(st.session_state.query_response)
col1, col2 = st.columns([5, 5])
with col1:
if "df_response" in st.session_state and st.session_state.df_response is not None:
st.table(st.session_state.df_response)
with col2:
if "df_visual" in st.session_state and st.session_state.df_visual is not None:
exec(st.session_state.df_visual)