Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -128,12 +128,20 @@ def response(user_query):
|
|
128 |
return output
|
129 |
|
130 |
desc="""
|
|
|
|
|
131 |
Student Table:
|
132 |
-
|
|
|
|
|
|
|
133 |
Employee Table:
|
134 |
-
|
|
|
|
|
|
|
135 |
Course Info Table:
|
136 |
-
|
137 |
"""
|
138 |
|
139 |
demo = gr.Interface(
|
|
|
128 |
return output
|
129 |
|
130 |
desc="""
|
131 |
+
|
132 |
+
|
133 |
Student Table:
|
134 |
+
student_id, first_name, last_name, date_of_birth, email, phone_number, major, year_of_enrollment.
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
Employee Table:
|
139 |
+
employee_id, first_name, last_name, email, department, position, salary, date_of_joining.
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
Course Info Table:
|
144 |
+
course_id, course_name, course_code, instructor_id, department, credits, semester.
|
145 |
"""
|
146 |
|
147 |
demo = gr.Interface(
|