PranayChamala commited on
Commit
2553720
·
1 Parent(s): 16eeab1

Made changes to database.py

Browse files
Files changed (1) hide show
  1. app/database.py +1 -1
app/database.py CHANGED
@@ -7,7 +7,7 @@ MONGO_URI = "mongodb+srv://pranaychamala:[email protected]
7
 
8
  # Connect to MongoDB
9
  client = MongoClient(MONGO_URI)
10
- db = client["uspark_db"] # Assuming the database name is still 'uspark_db'
11
 
12
  def save_chat_session(session_id: str, conversation_data: dict):
13
  """
 
7
 
8
  # Connect to MongoDB
9
  client = MongoClient(MONGO_URI)
10
+ db = client["Uspark"] # Assuming the database name is still 'uspark_db'
11
 
12
  def save_chat_session(session_id: str, conversation_data: dict):
13
  """