File size: 203 Bytes
20a8e92
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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"]