Spaces:
Sleeping
Sleeping
Upload 3 files
Browse files- app.py +67 -0
- requirements.txt +3 -0
- student.db +0 -0
app.py
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from dotenv import load_dotenv
|
| 2 |
+
load_dotenv() ## load all environment variables
|
| 3 |
+
|
| 4 |
+
import streamlit as st
|
| 5 |
+
import os
|
| 6 |
+
import sqlite3
|
| 7 |
+
|
| 8 |
+
import google.generativeai as genai
|
| 9 |
+
## configue genai key
|
| 10 |
+
|
| 11 |
+
genai.configure(api_key=os.getenv("GOOGLE_API_KEY"))
|
| 12 |
+
|
| 13 |
+
## Funcation load Google Gemini Model and provide queries as response
|
| 14 |
+
|
| 15 |
+
def get_gemini_response(question,prompt):
|
| 16 |
+
model=genai.GenerativeModel('gemini-pro')
|
| 17 |
+
response=model.generate_content((prompt[0],question))
|
| 18 |
+
return response.text
|
| 19 |
+
|
| 20 |
+
## Function to retrive query from DB
|
| 21 |
+
|
| 22 |
+
def read_sql_query(sql,db):
|
| 23 |
+
conn=sqlite3.connect(db)
|
| 24 |
+
cur=conn.cursor()
|
| 25 |
+
cur.execute(sql)
|
| 26 |
+
rows=cur.fetchall()
|
| 27 |
+
conn.commit()
|
| 28 |
+
conn.close()
|
| 29 |
+
for row in rows:
|
| 30 |
+
print(row)
|
| 31 |
+
return rows
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
## Define Your Prompt
|
| 35 |
+
prompt=[
|
| 36 |
+
"""
|
| 37 |
+
You are an expert in converting English questions to SQL query!
|
| 38 |
+
The Sql database has the name STUDENT and has the following columns - NAME, CLASS,
|
| 39 |
+
SECTION \n\nFor example,\nExample 1 - How many entries of records are present?,
|
| 40 |
+
the SQL command will be something like this SELECT COUNT(*) FROM STUDENT ;
|
| 41 |
+
\nExample 2 - Tell me all the students studying in Data science class?,
|
| 42 |
+
the SQL command will be something like this SELECT * FROM STUDENT
|
| 43 |
+
where CLASS="Data Science";
|
| 44 |
+
also the sql code should not have ''' in beginning or end and sql word in output
|
| 45 |
+
"""
|
| 46 |
+
|
| 47 |
+
]
|
| 48 |
+
|
| 49 |
+
## Streamlit App
|
| 50 |
+
|
| 51 |
+
st.set_page_config(page_title="I can Retrieve Any SQL query")
|
| 52 |
+
st.header("Gemini App to retreive SQL Data")
|
| 53 |
+
|
| 54 |
+
question=st.text_input("Input: ",key="input" )
|
| 55 |
+
|
| 56 |
+
submit=st.button("Ask the question")
|
| 57 |
+
|
| 58 |
+
#if submit is clicked
|
| 59 |
+
|
| 60 |
+
if submit:
|
| 61 |
+
response=get_gemini_response(question,prompt)
|
| 62 |
+
print(response)
|
| 63 |
+
response=read_sql_query(response,"student.db")
|
| 64 |
+
st.subheader("The Response is")
|
| 65 |
+
for row in response:
|
| 66 |
+
print(row)
|
| 67 |
+
st.header(row)
|
requirements.txt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
streamlit
|
| 2 |
+
google-generativeai
|
| 3 |
+
python-dotenv
|
student.db
ADDED
|
Binary file (8.19 kB). View file
|
|
|