riswanahamed commited on
Commit
1d04bef
·
verified ·
1 Parent(s): 5531de8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +95 -94
app.py CHANGED
@@ -1,95 +1,96 @@
1
- from dotenv import dotenv_values
2
-
3
- dotenv_values = dotenv_values('.env')
4
- GOOGLE_API_KEY = dotenv_values['GOOGLE_API_KEY']
5
-
6
- import streamlit as st
7
- import os ,sys
8
- import sqlite3
9
- import google.generativeai as gen
10
-
11
- gen.configure(api_key=str(GOOGLE_API_KEY))
12
-
13
- # Connect to SQLite database
14
-
15
- def get_gemini_response(question,prompt):
16
- model= gen.GenerativeModel("gemini-pro")
17
-
18
- response= model.generate_content([prompt[0],question])
19
- return response.text
20
-
21
-
22
- def execute_sql_query(sql, db_name):
23
- try:
24
- # Connect to the SQLite database
25
- connection = sqlite3.connect(db_name)
26
- cursor = connection.cursor()
27
-
28
- # Execute the SQL query
29
- cursor.execute(sql)
30
-
31
- # Fetch all rows from the query
32
- rows = cursor.fetchall()
33
- connection.commit()
34
- connection.close()
35
- # Print the rows
36
- for row in rows:
37
- print(row)
38
-
39
- # Return the rows
40
- return rows
41
-
42
- except sqlite3.Error as error:
43
- print("Error while executing SQL query:", error)
44
- return "Error: " + str(error)
45
-
46
- finally:
47
- # Close the connection to the database
48
- if connection:
49
- connection.commit()
50
- connection.close()
51
-
52
-
53
- prompt = [
54
- '''
55
- I am an SQL expert system. I can convert your English queries into SQL queries and execute them on the database.
56
- The database contains information about students with attributes: Name, Class, and Section.
57
-
58
- Please enter your English query. If the query is invalid, I will let you know.
59
-
60
- Examples:
61
- - English: How many students are in the database?
62
- SQL: SELECT COUNT(*) FROM student;
63
- - English: What are the names of students in Class AIDS?
64
- SQL: SELECT Name FROM student WHERE Class = 'AIDS';
65
- - English: What is the section of student named riswan?
66
- SQL: SELECT Section FROM student WHERE Name = 'riswan';
67
- - English: How many students are in Section A?
68
- SQL: SELECT COUNT(*) FROM student WHERE Section = 'A';
69
- - English: What are the classes of students named ajmal and rayan?
70
- SQL: SELECT Class FROM student WHERE Name IN ('ajmal', 'rayan');
71
-
72
- Enter your query:
73
- '''
74
- ]
75
-
76
- st.set_page_config(page_title ="Student DB")
77
- st.title("SQL Expert System")
78
- st.header("gemini to sql retriver")
79
- question = st.text_input("input -->>",key = "input")
80
-
81
- submit = st.button("Submit")
82
- if submit:
83
- response = get_gemini_response(question, prompt)
84
- print(response)
85
- result = execute_sql_query(response, 'student.db')
86
-
87
- if isinstance(result, str) and result.startswith("Error: "):
88
- st.error(result)
89
- elif result is not None:
90
- st.subheader("response")
91
- for row in result:
92
- st.write(row)
93
- st.write("\n")
94
- else:
 
95
  st.error("Unknown error occurred")
 
1
+ from dotenv import load_env
2
+ import os
3
+
4
+ load_env()
5
+ GOOGLE_API_KEY = os.getenv['GOOGLE_API_KEY']
6
+
7
+ import streamlit as st
8
+ import os ,sys
9
+ import sqlite3
10
+ import google.generativeai as gen
11
+
12
+ gen.configure(api_key=str(GOOGLE_API_KEY))
13
+
14
+ # Connect to SQLite database
15
+
16
+ def get_gemini_response(question,prompt):
17
+ model= gen.GenerativeModel("gemini-pro")
18
+
19
+ response= model.generate_content([prompt[0],question])
20
+ return response.text
21
+
22
+
23
+ def execute_sql_query(sql, db_name):
24
+ try:
25
+ # Connect to the SQLite database
26
+ connection = sqlite3.connect(db_name)
27
+ cursor = connection.cursor()
28
+
29
+ # Execute the SQL query
30
+ cursor.execute(sql)
31
+
32
+ # Fetch all rows from the query
33
+ rows = cursor.fetchall()
34
+ connection.commit()
35
+ connection.close()
36
+ # Print the rows
37
+ for row in rows:
38
+ print(row)
39
+
40
+ # Return the rows
41
+ return rows
42
+
43
+ except sqlite3.Error as error:
44
+ print("Error while executing SQL query:", error)
45
+ return "Error: " + str(error)
46
+
47
+ finally:
48
+ # Close the connection to the database
49
+ if connection:
50
+ connection.commit()
51
+ connection.close()
52
+
53
+
54
+ prompt = [
55
+ '''
56
+ I am an SQL expert system. I can convert your English queries into SQL queries and execute them on the database.
57
+ The database contains information about students with attributes: Name, Class, and Section.
58
+
59
+ Please enter your English query. If the query is invalid, I will let you know.
60
+
61
+ Examples:
62
+ - English: How many students are in the database?
63
+ SQL: SELECT COUNT(*) FROM student;
64
+ - English: What are the names of students in Class AIDS?
65
+ SQL: SELECT Name FROM student WHERE Class = 'AIDS';
66
+ - English: What is the section of student named riswan?
67
+ SQL: SELECT Section FROM student WHERE Name = 'riswan';
68
+ - English: How many students are in Section A?
69
+ SQL: SELECT COUNT(*) FROM student WHERE Section = 'A';
70
+ - English: What are the classes of students named ajmal and rayan?
71
+ SQL: SELECT Class FROM student WHERE Name IN ('ajmal', 'rayan');
72
+
73
+ Enter your query:
74
+ '''
75
+ ]
76
+
77
+ st.set_page_config(page_title ="Student DB")
78
+ st.title("SQL Expert System")
79
+ st.header("gemini to sql retriver")
80
+ question = st.text_input("input -->>",key = "input")
81
+
82
+ submit = st.button("Submit")
83
+ if submit:
84
+ response = get_gemini_response(question, prompt)
85
+ print(response)
86
+ result = execute_sql_query(response, 'student.db')
87
+
88
+ if isinstance(result, str) and result.startswith("Error: "):
89
+ st.error(result)
90
+ elif result is not None:
91
+ st.subheader("response")
92
+ for row in result:
93
+ st.write(row)
94
+ st.write("\n")
95
+ else:
96
  st.error("Unknown error occurred")