pluto90's picture
Upload 5 files
20a8e92 verified
raw
history blame contribute delete
203 Bytes
from pymongo import MongoClient
import os
MONGO_URI = os.getenv("MONGO_URI")
DB_NAME = "pdf_chat_db"
client = MongoClient(MONGO_URI)
db = client[DB_NAME]
conversations = db["conversations"]