ziyadsuper2017 commited on
Commit
4d21d63
·
1 Parent(s): b7ef9a4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 st.file_uploader import file_uploader # This imports the file_uploader module for uploading images
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