-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
92 lines (71 loc) · 3.07 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
import streamlit as st
from pathlib import Path
from langchain.agents import create_sql_agent
from langchain.sql_database import SQLDatabase
from langchain.agents.agent_types import AgentType
from langchain.callbacks import StreamlitCallbackHandler
from langchain.agents.agent_toolkits import SQLDatabaseToolkit
from sqlalchemy import create_engine
import sqlite3
from langchain_groq import ChatGroq
import os
from dotenv import load_dotenv
load_dotenv()
## load the GROQ
os.environ['GROQ_API_KEY']=st.secrets["GROQ_API_KEY"]
st.set_page_config(page_title="Chat with SQL DB", page_icon="🦜")
st.title("Chat with SQL DB")
LOCALDB="USE_LOCALDB"
MYSQL="USE_MYSQL"
radio_opt = ["Use SQLLite 3 Database-Student.db", "Connect to you MySQL Database"]
selected_opt = st.sidebar.radio(label="Choose the DB which you want to chat",options=radio_opt)
if radio_opt.index(selected_opt)==1:
db_uri=MYSQL
mysql_host=st.sidebar.text_input("Provide MySQL Host")
mysql_user=st.sidebar.text_input("MYSQL User")
mysql_password=st.sidebar.text_input("MYSQL password",type="password")
mysql_db=st.sidebar.text_input("MySQL database")
else:
db_uri=LOCALDB
if not db_uri:
st.info("Please enter the database information and uri")
## LLM model
llm=ChatGroq(model_name="Llama3-8b-8192",streaming=True)
@st.cache_resource(ttl="2h")
def configure_db(db_uri,mysql_host=None,mysql_user=None,mysql_password=None,mysql_db=None):
if db_uri==LOCALDB:
dbfilepath=(Path(__file__).parent/"student.db").absolute()
print(dbfilepath)
creator = lambda: sqlite3.connect(f"file:{dbfilepath}?mode=ro", uri=True)
return SQLDatabase(create_engine("sqlite:///", creator=creator))
elif db_uri==MYSQL:
if not (mysql_host and mysql_user and mysql_password and mysql_db):
st.error("Please provide all MySQL connection details.")
st.stop()
return SQLDatabase(create_engine(f"mysql+mysqlconnector://{mysql_user}:{mysql_password}@{mysql_host}/{mysql_db}"))
if db_uri==MYSQL:
db=configure_db(db_uri,mysql_host,mysql_user,mysql_password,mysql_db)
else:
db=configure_db(db_uri)
## toolkit
toolkit=SQLDatabaseToolkit(db=db,llm=llm)
agent=create_sql_agent(
llm=llm,
toolkit=toolkit,
verbose=True,
agent_type=AgentType.ZERO_SHOT_REACT_DESCRIPTION,
handling_parsing_errors=True
)
if "messages" not in st.session_state or st.sidebar.button("Clear message history"):
st.session_state["messages"] = [{"role": "assistant", "content": "How can I help you?"}]
for msg in st.session_state.messages:
st.chat_message(msg["role"]).write(msg["content"])
user_query=st.chat_input(placeholder="Ask anything from the database")
if user_query:
st.session_state.messages.append({"role": "user", "content": user_query})
st.chat_message("user").write(user_query)
with st.chat_message("assistant"):
streamlit_callback=StreamlitCallbackHandler(st.container())
response=agent.run(user_query,callbacks=[streamlit_callback])
st.session_state.messages.append({"role":"assistant","content":response})
st.write(response)