Spaces:
Runtime error
Runtime error
Upload 5 files
Browse files- .env +1 -0
- few_shots.py +26 -0
- langchain_helper.py +63 -0
- main.py +13 -0
- requirements.txt +13 -0
.env
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
GOOGLE_API_KEY="AIzaSyCkVGjyMN5proxDduY09SSjEhoQkhBycBI"
|
few_shots.py
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
few_shots = [
|
2 |
+
{'Question' : "How many t-shirts do we have left for Nike in XS size and white color?",
|
3 |
+
'SQLQuery' : "SELECT sum(stock_quantity) FROM t_shirts WHERE brand = 'Nike' AND color = 'White' AND size = 'XS'",
|
4 |
+
'SQLResult': "Result of the SQL query",
|
5 |
+
'Answer' : '91'},
|
6 |
+
{'Question': "How much is the total price of the inventory for all S-size t-shirts?",
|
7 |
+
'SQLQuery':"SELECT SUM(price*stock_quantity) FROM t_shirts WHERE size = 'S'",
|
8 |
+
'SQLResult': "Result of the SQL query",
|
9 |
+
'Answer': '20055'},
|
10 |
+
{'Question': "If we have to sell all the Levi’s T-shirts today with discounts applied. How much revenue our store will generate (post discounts)?" ,
|
11 |
+
'SQLQuery' : """SELECT sum(a.total_amount * ((100-COALESCE(discounts.pct_discount,0))/100)) as total_revenue from
|
12 |
+
(select sum(price*stock_quantity) as total_amount, t_shirt_id from t_shirts where brand = 'Levi'
|
13 |
+
group by t_shirt_id) a left join discounts on a.t_shirt_id = discounts.t_shirt_id
|
14 |
+
""",
|
15 |
+
'SQLResult': "Result of the SQL query",
|
16 |
+
'Answer': '24089.2'} ,
|
17 |
+
{'Question' : "If we have to sell all the Levi’s T-shirts today. How much revenue our store will generate without discount?" ,
|
18 |
+
'SQLQuery': "SELECT SUM(price * stock_quantity) FROM t_shirts WHERE brand = 'Levi'",
|
19 |
+
'SQLResult': "Result of the SQL query",
|
20 |
+
'Answer' : '25136'},
|
21 |
+
{'Question': "How many white color Levi's shirt I have?",
|
22 |
+
'SQLQuery' : "SELECT sum(stock_quantity) FROM t_shirts WHERE brand = 'Levi' AND color = 'White'",
|
23 |
+
'SQLResult': "Result of the SQL query",
|
24 |
+
'Answer' : '221'
|
25 |
+
}
|
26 |
+
]
|
langchain_helper.py
ADDED
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from langchain.sql_database import SQLDatabase
|
2 |
+
from langchain_google_genai import GoogleGenerativeAI
|
3 |
+
from urllib.parse import quote_plus
|
4 |
+
from langchain_experimental.sql import SQLDatabaseChain
|
5 |
+
from langchain.prompts import SemanticSimilarityExampleSelector
|
6 |
+
from langchain_community.embeddings import HuggingFaceEmbeddings
|
7 |
+
from langchain_community.vectorstores import Chroma
|
8 |
+
from langchain.prompts import FewShotPromptTemplate
|
9 |
+
from langchain.chains.sql_database.prompt import PROMPT_SUFFIX,_mysql_prompt
|
10 |
+
from langchain.prompts.prompt import PromptTemplate
|
11 |
+
from dotenv import load_dotenv
|
12 |
+
import os
|
13 |
+
from few_shots import few_shots
|
14 |
+
|
15 |
+
load_dotenv()
|
16 |
+
def get_few_shot_db_chain():
|
17 |
+
db = SQLDatabase.from_uri(f"mysql+pymysql://root:{quote_plus('pankaj@3012')}@localhost:3306/atliq_tshirts",
|
18 |
+
sample_rows_in_table_info=3)
|
19 |
+
llm = GoogleGenerativeAI(model="models/text-bison-001", google_api_key=os.environ["GOOGLE_API_KEY"])
|
20 |
+
|
21 |
+
embeddings = HuggingFaceEmbeddings(model_name='sentence-transformers/all-MiniLM-L6-v2')
|
22 |
+
|
23 |
+
to_vectorize = [" ".join(example.values()) for example in few_shots]
|
24 |
+
vectorstore = Chroma.from_texts(to_vectorize, embeddings, metadatas=few_shots)
|
25 |
+
|
26 |
+
|
27 |
+
example_selector = SemanticSimilarityExampleSelector(
|
28 |
+
vectorstore=vectorstore,
|
29 |
+
k=2,
|
30 |
+
)
|
31 |
+
mysql_prompt = """You are a MySQL expert. Given an input question, first create a syntactically correct MySQL query to run, then look at the results of the query and return the answer to the input question.
|
32 |
+
Unless the user specifies in the question a specific number of examples to obtain, query for at most {top_k} results using the LIMIT clause as per MySQL. You can order the results to return the most informative data in the database.
|
33 |
+
Never query for all columns from a table. You must query only the columns that are needed to answer the question. Wrap each column name in backticks (`) to denote them as delimited identifiers.
|
34 |
+
Pay attention to use only the column names you can see in the tables below. Be careful to not query for columns that do not exist. Also, pay attention to which column is in which table.
|
35 |
+
Pay attention to use CURDATE() function to get the current date, if the question involves "today".
|
36 |
+
|
37 |
+
Use the following format:
|
38 |
+
|
39 |
+
Question: Question here
|
40 |
+
SQLQuery: Query to run with no pre-amble
|
41 |
+
SQLResult: Result of the SQLQuery
|
42 |
+
Answer: Final answer here
|
43 |
+
|
44 |
+
No pre-amble.
|
45 |
+
"""
|
46 |
+
|
47 |
+
|
48 |
+
example_prompt = PromptTemplate(
|
49 |
+
input_variables=["Question", "SQLQuery", "SQLResult","Answer",],
|
50 |
+
template="\nQuestion: {Question}\nSQLQuery: {SQLQuery}\nSQLResult: {SQLResult}\nAnswer: {Answer}",
|
51 |
+
)
|
52 |
+
|
53 |
+
few_shot_prompt = FewShotPromptTemplate(
|
54 |
+
example_selector=example_selector,
|
55 |
+
example_prompt=example_prompt,
|
56 |
+
prefix=mysql_prompt,
|
57 |
+
suffix=PROMPT_SUFFIX,
|
58 |
+
input_variables=["input", "table_info", "top_k"], #These variables are used in the prefix and suffix
|
59 |
+
)
|
60 |
+
|
61 |
+
chain = SQLDatabaseChain.from_llm(llm, db, verbose=True, prompt=few_shot_prompt)
|
62 |
+
|
63 |
+
return chain
|
main.py
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
from langchain_helper import get_few_shot_db_chain
|
3 |
+
|
4 |
+
st.title("AtliQ T Shirts: Database Q&A 👕")
|
5 |
+
|
6 |
+
question = st.text_input("Question: ")
|
7 |
+
|
8 |
+
if question:
|
9 |
+
chain = get_few_shot_db_chain()
|
10 |
+
response = chain.run(question)
|
11 |
+
|
12 |
+
st.header("Answer")
|
13 |
+
st.write(response)
|
requirements.txt
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
langchain==0.1.6
|
2 |
+
python-dotenv==1.0.0
|
3 |
+
streamlit==1.22.0
|
4 |
+
tiktoken==0.4.0
|
5 |
+
faiss-cpu==1.7.4
|
6 |
+
protobuf==4.21.6
|
7 |
+
langchain_experimental == 0.0.51
|
8 |
+
mysql-connector-python== 8.3.0
|
9 |
+
pymysql== 1.1.0
|
10 |
+
sentence-transformers== 2.3.1
|
11 |
+
chromadb == 0.4.22
|
12 |
+
google-generativea == 0.3.2
|
13 |
+
langchain-google-genai == 0.0.9
|