Spaces:
Runtime error
Runtime error
Commit
·
4d21d63
1
Parent(s):
b7ef9a4
Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
import streamlit as st # This imports the streamlit module for creating the UI
|
2 |
import google.generativeai as genai # This imports the google generative AI module for using the model
|
3 |
import sqlite3 # This imports the sqlite3 module for working with the database
|
4 |
-
from
|
5 |
|
6 |
# Database setup
|
7 |
conn = sqlite3.connect('chat_history.db') # This creates a connection to the chat_history.db file
|
|
|
1 |
import streamlit as st # This imports the streamlit module for creating the UI
|
2 |
import google.generativeai as genai # This imports the google generative AI module for using the model
|
3 |
import sqlite3 # This imports the sqlite3 module for working with the database
|
4 |
+
from streamlit import file_uploader
|
5 |
|
6 |
# Database setup
|
7 |
conn = sqlite3.connect('chat_history.db') # This creates a connection to the chat_history.db file
|